Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
SNIFV2
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 2000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; import "./SNIF.sol"; /// @title SNIF /// @author @KfishNFT /// @notice Sneaky's Internet Friends Collection /** @dev Any function which updates state will require a signature from an address with the correct role This is an upgradeable contract using UUPSUpgradeable (IERC1822Proxiable / ERC1967Proxy) from OpenZeppelin */ contract SNIFV2 is SNIF { IOperatorDenylistRegistry public operatorDenylistRegistry; function setOperatorDenylistRegistry(address operatorDenylistRegistry_) external onlyRole(DEFAULT_ADMIN_ROLE) { operatorDenylistRegistry = IOperatorDenylistRegistry(operatorDenylistRegistry_); } function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual override { require(!operatorDenylistRegistry.isOperatorDenied(msg.sender), "Operator Denied"); super._beforeTokenTransfers(from, to, startTokenId, quantity); } } interface IOperatorDenylistRegistry { function isOperatorDenied(address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.12; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import "erc721a/contracts/ERC721AUUPSUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol"; /** ERROR CODES E01 - MINT TO AT LEAST ONE ADDRESS E02 - MINT WOULD EXCEED SUPPLY LIMIT E03 - WITHDRAW FAILED E04 - UNAUTHORIZED */ /// @title SNIF /// @author @KfishNFT /// @notice Sneaky's Internet Friends Collection /** @dev Any function which updates state will require a signature from an address with the correct role This is an upgradeable contract using UUPSUpgradeable (IERC1822Proxiable / ERC1967Proxy) from OpenZeppelin */ contract SNIF is Initializable, AccessControlUpgradeable, ERC721AUUPSUpgradeable { using StringsUpgradeable for uint256; /// @notice Role assigned to an address that can perform upgrades to the contract /// @dev role can be granted by the DEFAULT_ADMIN_ROLE bytes32 public constant UPGRADER_ROLE = keccak256("UPGRADER_ROLE"); /// @notice Role assigned to addresses that can perform managemenet actions /// @dev role can be granted by the DEFAULT_ADMIN_ROLE bytes32 public constant MANAGER_ROLE = keccak256("MANAGER_ROLE"); /// @notice Role assigned to addresses that can mint /// @dev role can be granted by the DEFAULT_ADMIN_ROLE bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); /// @notice base URI used to retrieve metadata /// @dev tokenURI will use .json at the end for each token starting from 1 and ending at 2000 string public baseURI; /// @notice unrevealed URIs where element 0 is blue and element 1 is red string[] public unrevealedURIs; /// @notice setting an owner in order to comply with ownable interfaces /// @dev this variable was only added for compatibility with contracts that request an owner address public owner; /// @notice Initializer function which replaces constructor for upgradeable contracts /// @dev This should be called at deploy time /// @param unrevealedURIs_ unrevealed URIs where element 0 is blue and element 1 is red function initialize(string[] memory unrevealedURIs_) public initializer { __ERC721A_init("SNIF", "SNIF"); __AccessControl_init(); _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); unrevealedURIs = unrevealedURIs_; owner = msg.sender; } /* Functions that require authorized roles */ /// @notice Batch mint function to be called by an address with Minter Role /// @param addresses_ array of addresses to mint to function mint(address[] calldata addresses_) external onlyRole(MINTER_ROLE) { require(addresses_.length > 0, "E01"); require((_totalMinted() + (addresses_.length * 2)) <= 2000, "E02"); for (uint256 i = 0; i < addresses_.length; i++) { _safeMint(addresses_[i], 2); } } /// @notice Mint function to be called by an address with Minter Role /// @param to_ receiving address function mintAllowList(address to_) external onlyRole(MINTER_ROLE) { require((_totalMinted() + 2) <= 2000, "E02"); _safeMint(to_, 2); } /// @notice Used to set the baseURI for metadata /// @dev the baseURI should end in '/' /// @param baseURI_ the base URI function setBaseURI(string memory baseURI_) external managed { baseURI = baseURI_; } /// @notice Used to set the unrevealed URI for even tokens /// @param unrevealedURIs_ array where element 0 corresponds to blue URI and 1 to red URI function setUnrevealedURIs(string[] memory unrevealedURIs_) external managed { unrevealedURIs = unrevealedURIs_; } /// @notice Used to set a new owner value /// @dev This is not the same as Ownable and was only added for compatibility /// @param newOwner_ the new owner function transferOwnership(address newOwner_) external onlyRole(DEFAULT_ADMIN_ROLE) { owner = newOwner_; } /// @notice Withdraw function in case anyone sends ETH to contract by mistake function withdraw() external payable onlyRole(DEFAULT_ADMIN_ROLE) { // solhint-disable-next-line avoid-low-level-calls (bool success, ) = payable(msg.sender).call{value: address(this).balance}(""); require(success, "E03"); } /* ERC721A Overrides */ /// @notice Override of ERC721A start token ID /// @return the initial tokenId function _startTokenId() internal view virtual override returns (uint256) { return 1; } /// @notice Override of ERC721A tokenURI(uint256) /// @dev returns baseURI + tokenId.json if baseURI is present, if not, return blue or red unrevealed URI /// @param tokenId the tokenId without offsets /// @return the tokenURI with metadata function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); if (bytes(baseURI).length > 0) { return string(abi.encodePacked(abi.encodePacked(baseURI, tokenId.toString()), ".json")); } else { if (tokenId % 2 == 0) { return bytes(unrevealedURIs[0]).length != 0 ? unrevealedURIs[0] : ""; } else { return bytes(unrevealedURIs[1]).length != 0 ? unrevealedURIs[1] : ""; } } } /// @notice Override of ERC721A and AccessControlUpgradeable supportsInterface function /// @param interfaceId the interfaceId /// @return bool if interfaceId is supported or not function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlUpgradeable, ERC721AUUPSUpgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || interfaceId == type(AccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /// @notice UUPS Upgradeable authorization function /// @dev only the UPGRADER_ROLE can upgrade the contract /// @param newImplementation the address of the new implementation // solhint-disable-next-line no-empty-blocks function _authorizeUpgrade(address newImplementation) internal override onlyRole(UPGRADER_ROLE) {} /* Modifiers */ /// @notice Modifier that ensures the function is being called by an address that is either a manager or a default admin modifier managed() { require(hasRole(MANAGER_ROLE, msg.sender) || hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "E04"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControlUpgradeable.sol"; import "../utils/ContextUpgradeable.sol"; import "../utils/StringsUpgradeable.sol"; import "../utils/introspection/ERC165Upgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable { function __AccessControl_init() internal onlyInitializing { } function __AccessControl_init_unchained() internal onlyInitializing { } struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", StringsUpgradeable.toHexString(uint160(account), 20), " is missing role ", StringsUpgradeable.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol'; import '@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol'; import '@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol'; import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ abstract contract ERC721AUUPSUpgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable, UUPSUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function __ERC721A_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721A_init_unchained(name_, symbol_); __Context_init_unchained(); __ERC165_init_unchained(); } function __ERC721A_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721AUUPSUpgradeable.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { _transfer(from, to, tokenId, true); } /** * @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, bool approvalCheck ) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if(approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); } _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) internal { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable(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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControlUpgradeable { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.0; import "../../interfaces/draft-IERC1822Upgradeable.sol"; import "../ERC1967/ERC1967UpgradeUpgradeable.sol"; import "./Initializable.sol"; /** * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. * * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing * `UUPSUpgradeable` with a custom implementation of upgrades. * * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism. * * _Available since v4.1._ */ abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable { function __UUPSUpgradeable_init() internal onlyInitializing { } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment address private immutable __self = address(this); /** * @dev Check that the execution is being performed through a delegatecall call and that the execution context is * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to * fail. */ modifier onlyProxy() { require(address(this) != __self, "Function must be called through delegatecall"); require(_getImplementation() == __self, "Function must be called through active proxy"); _; } /** * @dev Check that the execution is not being performed through a delegate call. This allows a function to be * callable on the implementing contract but not through proxies. */ modifier notDelegated() { require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall"); _; } /** * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the * implementation. It is used to validate that the this implementation remains valid after an upgrade. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier. */ function proxiableUUID() external view virtual override notDelegated returns (bytes32) { return _IMPLEMENTATION_SLOT; } /** * @dev Upgrade the implementation of the proxy to `newImplementation`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. */ function upgradeTo(address newImplementation) external virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, new bytes(0), false); } /** * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call * encoded in `data`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. */ function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, data, true); } /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeTo} and {upgradeToAndCall}. * * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}. * * ```solidity * function _authorizeUpgrade(address) internal override onlyOwner {} * ``` */ function _authorizeUpgrade(address newImplementation) internal virtual; /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol) pragma solidity ^0.8.0; /** * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822ProxiableUpgradeable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol) pragma solidity ^0.8.2; import "../beacon/IBeaconUpgradeable.sol"; import "../../interfaces/draft-IERC1822Upgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/StorageSlotUpgradeable.sol"; import "../utils/Initializable.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. * * _Available since v4.1._ * * @custom:oz-upgrades-unsafe-allow delegatecall */ abstract contract ERC1967UpgradeUpgradeable is Initializable { function __ERC1967Upgrade_init() internal onlyInitializing { } function __ERC1967Upgrade_init_unchained() internal onlyInitializing { } // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1 bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143; /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Perform implementation upgrade * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Perform implementation upgrade with additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCall( address newImplementation, bytes memory data, bool forceCall ) internal { _upgradeTo(newImplementation); if (data.length > 0 || forceCall) { _functionDelegateCall(newImplementation, data); } } /** * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCallUUPS( address newImplementation, bytes memory data, bool forceCall ) internal { // Upgrades from old implementations will perform a rollback test. This test requires the new // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing // this special case will break upgrade paths from old UUPS implementation to new ones. if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) { _setImplementation(newImplementation); } else { try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) { require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID"); } catch { revert("ERC1967Upgrade: new implementation is not UUPS"); } _upgradeToAndCall(newImplementation, data, forceCall); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _changeAdmin(address newAdmin) internal { emit AdminChanged(_getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract"); require( AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall( address newBeacon, bytes memory data, bool forceCall ) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { _functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data); } } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function _functionDelegateCall(address target, bytes memory data) private returns (bytes memory) { require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed"); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.0; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeaconUpgradeable { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/StorageSlot.sol) pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlotUpgradeable { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly { r.slot := slot } } }
{ "optimizer": { "enabled": true, "runs": 2000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"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":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UPGRADER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"unrevealedURIs_","type":"string[]"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to_","type":"address"}],"name":"mintAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorDenylistRegistry","outputs":[{"internalType":"contract IOperatorDenylistRegistry","name":"","type":"address"}],"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":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operatorDenylistRegistry_","type":"address"}],"name":"setOperatorDenylistRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"unrevealedURIs_","type":"string[]"}],"name":"setUnrevealedURIs","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"unrevealedURIs","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a06040523060805234801561001457600080fd5b506080516137ca61004c60003960008181610ba501528181610c3b01528181610e0201528181610e980152610f8f01526137ca6000f3fe6080604052600436106102855760003560e01c806370a0823111610153578063bd075b84116100cb578063e985e9c51161007f578063f2fde38b11610064578063f2fde38b1461075b578063f72c0d8b1461077b578063ff4312a0146107af57600080fd5b8063e985e9c5146106dd578063ec87621c1461072757600080fd5b8063d5391393116100b0578063d539139314610669578063d547741f1461069d578063e2b4684d146106bd57600080fd5b8063bd075b8414610629578063c87b56dd1461064957600080fd5b806395d89b4111610122578063a22cb46511610107578063a22cb465146105c9578063a9a35935146105e9578063b88d4fde1461060957600080fd5b806395d89b411461059f578063a217fddf146105b457600080fd5b806370a08231146104f8578063893c3b4c146105185780638da5cb5b1461053857806391d148541461055957600080fd5b806336568abe1161020157806352d1902d116101b557806357079ceb1161019a57806357079ceb146104a25780636352211e146104c35780636c0360eb146104e357600080fd5b806352d1902d1461046d57806355f804b31461048257600080fd5b80633ccfd60b116101e65780633ccfd60b1461043257806342842e0e1461043a5780634f1ef2861461045a57600080fd5b806336568abe146103f25780633659cfe61461041257600080fd5b8063095ea7b31161025857806323b872dd1161023d57806323b872dd14610382578063248a9ca3146103a25780632f2ff15d146103d257600080fd5b8063095ea7b31461033957806318160ddd1461035b57600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e157806308bb2bbb14610319575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612f73565b6107cf565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d461087b565b6040516102b69190612fe8565b3480156102ed57600080fd5b506103016102fc366004612ffb565b61090d565b6040516001600160a01b0390911681526020016102b6565b34801561032557600080fd5b506102d4610334366004612ffb565b61096b565b34801561034557600080fd5b5061035961035436600461302b565b610a18565b005b34801561036757600080fd5b5060fc5460fb5403600019015b6040519081526020016102b6565b34801561038e57600080fd5b5061035961039d366004613055565b610ad8565b3480156103ae57600080fd5b506103746103bd366004612ffb565b60009081526065602052604090206001015490565b3480156103de57600080fd5b506103596103ed366004613091565b610ae3565b3480156103fe57600080fd5b5061035961040d366004613091565b610b09565b34801561041e57600080fd5b5061035961042d3660046130bd565b610b9a565b610359610d38565b34801561044657600080fd5b50610359610455366004613055565b610ddc565b61035961046836600461318f565b610df7565b34801561047957600080fd5b50610374610f82565b34801561048e57600080fd5b5061035961049d3660046131dd565b611047565b3480156104ae57600080fd5b5061010654610301906001600160a01b031681565b3480156104cf57600080fd5b506103016104de366004612ffb565b611112565b3480156104ef57600080fd5b506102d4611124565b34801561050457600080fd5b506103746105133660046130bd565b611132565b34801561052457600080fd5b50610359610533366004613212565b61119b565b34801561054457600080fd5b5061010554610301906001600160a01b031681565b34801561056557600080fd5b506102aa610574366004613091565b60009182526065602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3480156105ab57600080fd5b506102d4611359565b3480156105c057600080fd5b50610374600081565b3480156105d557600080fd5b506103596105e43660046132e3565b611368565b3480156105f557600080fd5b506103596106043660046130bd565b611418565b34801561061557600080fd5b5061035961062436600461331a565b611455565b34801561063557600080fd5b50610359610644366004613382565b6114a6565b34801561065557600080fd5b506102d4610664366004612ffb565b6115d9565b34801561067557600080fd5b506103747f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b3480156106a957600080fd5b506103596106b8366004613091565b6117e7565b3480156106c957600080fd5b506103596106d8366004613212565b61180d565b3480156106e957600080fd5b506102aa6106f83660046133f7565b6001600160a01b0391821660009081526101026020908152604080832093909416825291909152205460ff1690565b34801561073357600080fd5b506103747f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0881565b34801561076757600080fd5b506103596107763660046130bd565b6118d8565b34801561078757600080fd5b506103747f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e381565b3480156107bb57600080fd5b506103596107ca3660046130bd565b611915565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061083257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061086657506001600160e01b031982167fda8def7300000000000000000000000000000000000000000000000000000000145b806108755750610875826119b4565b92915050565b606060fd805461088a90613421565b80601f01602080910402602001604051908101604052809291908181526020018280546108b690613421565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b600061091882611a26565b61094e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600090815261010160205260409020546001600160a01b031690565b610104818154811061097c57600080fd5b90600052602060002001600091509050805461099790613421565b80601f01602080910402602001604051908101604052809291908181526020018280546109c390613421565b8015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b505050505081565b6000610a2382611112565b9050806001600160a01b0316836001600160a01b03161415610a71576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610a915750610a8f81336106f8565b155b15610ac8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad3838383611a60565b505050565b610ad3838383611aca565b600082815260656020526040902060010154610aff8133611ad7565b610ad38383611b57565b6001600160a01b0381163314610b8c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b610b968282611bf9565b5050565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415610c395760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610b83565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610c947f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614610d105760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610b83565b610d1981611c7c565b60408051600080825260208201909252610d3591839190611ca7565b50565b6000610d448133611ad7565b604051600090339047908381818185875af1925050503d8060008114610d86576040519150601f19603f3d011682016040523d82523d6000602084013e610d8b565b606091505b5050905080610b965760405162461bcd60e51b815260206004820152600360248201527f45303300000000000000000000000000000000000000000000000000000000006044820152606401610b83565b610ad383838360405180602001604052806000815250611455565b306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161415610e965760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610b83565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316610ef17f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614610f6d5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610b83565b610f7682611c7c565b610b9682826001611ca7565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146110225760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610b83565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b3360009081527fcee91eb23e767f0f440dd9fce5554f355614443931e9ac5ce78c67b9e06e6f70602052604090205460ff16806110b257503360009081527fffdfc1249c027f9191656349feb0761381bb32c9f557e01f419fd08754bf5a1b602052604090205460ff165b6110fe5760405162461bcd60e51b815260206004820152600360248201527f45303400000000000000000000000000000000000000000000000000000000006044820152606401610b83565b8051610b9690610103906020840190612e14565b600061111d82611e47565b5192915050565b610103805461099790613421565b60006001600160a01b038216611174576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b03166000908152610100602052604090205467ffffffffffffffff1690565b600054610100900460ff166111b65760005460ff16156111ba565b303b155b61122c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610b83565b600054610100900460ff1615801561126b57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b6112df6040518060400160405280600481526020017f534e4946000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f534e494600000000000000000000000000000000000000000000000000000000815250611f8a565b6112e761201d565b6112f2600033611b57565b815161130690610104906020850190612e98565b50610105805473ffffffffffffffffffffffffffffffffffffffff1916331790558015610b9657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b606060fe805461088a90613421565b6001600160a01b0382163314156113ab576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152610102602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006114248133611ad7565b50610106805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b611460848484611aca565b6001600160a01b0383163b1515801561148257506114808484848461209c565b155b156114a0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66114d18133611ad7565b8161151e5760405162461bcd60e51b815260206004820152600360248201527f45303100000000000000000000000000000000000000000000000000000000006044820152606401610b83565b6107d061152c836002613472565b60fb546000190161153d9190613491565b111561158b5760405162461bcd60e51b815260206004820152600360248201527f45303200000000000000000000000000000000000000000000000000000000006044820152606401610b83565b60005b828110156114a0576115c78484838181106115ab576115ab6134a9565b90506020020160208101906115c091906130bd565b60026121b7565b806115d1816134bf565b91505061158e565b60606115e482611a26565b61161a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610103805461162a90613421565b905011156116825761010361163e836121d1565b60405160200161164f9291906134f6565b60408051601f198184030181529082905261166c91602001613594565b6040516020818303038152906040529050919050565b61168d6002836135eb565b611786576101046000815481106116a6576116a66134a9565b9060005260206000200180546116bb90613421565b151590506116d85760405180602001604052806000815250610875565b6101046000815481106116ed576116ed6134a9565b90600052602060002001805461170290613421565b80601f016020809104026020016040519081016040528092919081815260200182805461172e90613421565b801561177b5780601f106117505761010080835404028352916020019161177b565b820191906000526020600020905b81548152906001019060200180831161175e57829003601f168201915b505050505092915050565b61010460018154811061179b5761179b6134a9565b9060005260206000200180546117b090613421565b151590506117cd5760405180602001604052806000815250610875565b6101046001815481106116ed576116ed6134a9565b919050565b6000828152606560205260409020600101546118038133611ad7565b610ad38383611bf9565b3360009081527fcee91eb23e767f0f440dd9fce5554f355614443931e9ac5ce78c67b9e06e6f70602052604090205460ff168061187857503360009081527fffdfc1249c027f9191656349feb0761381bb32c9f557e01f419fd08754bf5a1b602052604090205460ff165b6118c45760405162461bcd60e51b815260206004820152600360248201527f45303400000000000000000000000000000000000000000000000000000000006044820152606401610b83565b8051610b9690610104906020840190612e98565b60006118e48133611ad7565b50610105805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66119408133611ad7565b6107d061195060fb546000190190565b61195b906002613491565b11156119a95760405162461bcd60e51b815260206004820152600360248201527f45303200000000000000000000000000000000000000000000000000000000006044820152606401610b83565b610b968260026121b7565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611a1757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610875575061087582612303565b600081600111158015611a3a575060fb5482105b8015610875575050600090815260ff6020819052604090912054600160e01b9004161590565b60008281526101016020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610ad3838383600161236a565b60008281526065602090815260408083206001600160a01b038516845290915290205460ff16610b9657611b15816001600160a01b031660146125bc565b611b208360206125bc565b604051602001611b319291906135ff565b60408051601f198184030181529082905262461bcd60e51b8252610b8391600401612fe8565b60008281526065602090815260408083206001600160a01b038516845290915290205460ff16610b965760008281526065602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611bb53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526065602090815260408083206001600160a01b038516845290915290205460ff1615610b965760008281526065602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e3610b968133611ad7565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615611cda57610ad3836127ec565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611d34575060408051601f3d908101601f19168201909252611d3191810190613680565b60015b611da65760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610b83565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8114611e3b5760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152608401610b83565b50610ad38383836128b7565b60408051606081018252600080825260208201819052918101919091528180600111158015611e77575060fb5481105b15611f5857600081815260ff6020818152604092839020835160608101855290546001600160a01b038116825267ffffffffffffffff600160a01b82041692820192909252600160e01b909104909116151591810182905290611f565780516001600160a01b031615611eeb579392505050565b5060001901600081815260ff6020818152604092839020835160608101855290546001600160a01b03811680835267ffffffffffffffff600160a01b83041693830193909352600160e01b90049092161515928201929092529015611f51579392505050565b611eeb565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600054610100900460ff166120075760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b83565b61201182826128dc565b61201961201d565b610b965b600054610100900460ff1661209a5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b83565b565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a02906120ea903390899088908890600401613699565b6020604051808303816000875af1925050508015612125575060408051601f3d908101601f19168201909252612122918101906136d5565b60015b612180573d808015612153576040519150601f19603f3d011682016040523d82523d6000602084013e612158565b606091505b508051612178576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b0319167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b610b9682826040518060200160405280600081525061298a565b60608161221157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561223b5780612225816134bf565b91506122349050600a836136f2565b9150612215565b60008167ffffffffffffffff811115612256576122566130d8565b6040519080825280601f01601f191660200182016040528015612280576020820181803683370190505b5090505b84156121af57612295600183613706565b91506122a2600a866135eb565b6122ad906030613491565b60f81b8183815181106122c2576122c26134a9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506122fc600a866136f2565b9450612284565b60006001600160e01b031982167f7965db0b00000000000000000000000000000000000000000000000000000000148061087557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610875565b600061237583611e47565b9050846001600160a01b031681600001516001600160a01b0316146123c6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8115612480576000336001600160a01b03871614806123ea57506123ea86336106f8565b806124055750336123fa8561090d565b6001600160a01b0316145b90508061243e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03851661247e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61248d8585856001612997565b61249960008487611a60565b6001600160a01b03858116600090815261010060209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff9283166000190183161790925589861680865283862080549384169383166001908101841694909417905589865260ff90945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166125705760fb548214612570578054602085015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b606060006125cb836002613472565b6125d6906002613491565b67ffffffffffffffff8111156125ee576125ee6130d8565b6040519080825280601f01601f191660200182016040528015612618576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061264f5761264f6134a9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106126b2576126b26134a9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006126ee846002613472565b6126f9906001613491565b90505b6001811115612796577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061273a5761273a6134a9565b1a60f81b828281518110612750576127506134a9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c9361278f8161371d565b90506126fc565b5083156127e55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610b83565b9392505050565b6001600160a01b0381163b6128695760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610b83565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6128c083612a6f565b6000825111806128cd5750805b15610ad3576114a08383612aaf565b600054610100900460ff166129595760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b83565b815161296c9060fd906020850190612e14565b5080516129809060fe906020840190612e14565b50600160fb555050565b610ad38383836001612bba565b610106546040517fce2e71b70000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b039091169063ce2e71b790602401602060405180830381865afa1580156129f9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a1d9190613734565b15612a6a5760405162461bcd60e51b815260206004820152600f60248201527f4f70657261746f722044656e69656400000000000000000000000000000000006044820152606401610b83565b6114a0565b612a78816127ec565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b612b2e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610b83565b600080846001600160a01b031684604051612b499190613751565b600060405180830381855af49150503d8060008114612b84576040519150601f19603f3d011682016040523d82523d6000602084013e612b89565b606091505b5091509150612bb1828260405180606001604052806027815260200161376e60279139612ddb565b95945050505050565b60fb546001600160a01b038516612bfd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83612c34576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c416000868387612997565b6001600160a01b03851660008181526101006020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c0181169092021790915585845260ff90925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612d0357506001600160a01b0387163b15155b15612d8c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d54600088848060010195508861209c565b612d71576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612d09578260fb5414612d8757600080fd5b612dd2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612d8d575b5060fb556125b5565b60608315612dea5750816127e5565b825115612dfa5782518084602001fd5b8160405162461bcd60e51b8152600401610b839190612fe8565b828054612e2090613421565b90600052602060002090601f016020900481019282612e425760008555612e88565b82601f10612e5b57805160ff1916838001178555612e88565b82800160010185558215612e88579182015b82811115612e88578251825591602001919060010190612e6d565b50612e94929150612ef1565b5090565b828054828255906000526020600020908101928215612ee5579160200282015b82811115612ee55782518051612ed5918491602090910190612e14565b5091602001919060010190612eb8565b50612e94929150612f06565b5b80821115612e945760008155600101612ef2565b80821115612e94576000612f1a8282612f23565b50600101612f06565b508054612f2f90613421565b6000825580601f10612f3f575050565b601f016020900490600052602060002090810190610d359190612ef1565b6001600160e01b031981168114610d3557600080fd5b600060208284031215612f8557600080fd5b81356127e581612f5d565b60005b83811015612fab578181015183820152602001612f93565b838111156114a05750506000910152565b60008151808452612fd4816020860160208601612f90565b601f01601f19169290920160200192915050565b6020815260006127e56020830184612fbc565b60006020828403121561300d57600080fd5b5035919050565b80356001600160a01b03811681146117e257600080fd5b6000806040838503121561303e57600080fd5b61304783613014565b946020939093013593505050565b60008060006060848603121561306a57600080fd5b61307384613014565b925061308160208501613014565b9150604084013590509250925092565b600080604083850312156130a457600080fd5b823591506130b460208401613014565b90509250929050565b6000602082840312156130cf57600080fd5b6127e582613014565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613117576131176130d8565b604052919050565b600082601f83011261313057600080fd5b813567ffffffffffffffff81111561314a5761314a6130d8565b61315d6020601f19601f840116016130ee565b81815284602083860101111561317257600080fd5b816020850160208301376000918101602001919091529392505050565b600080604083850312156131a257600080fd5b6131ab83613014565b9150602083013567ffffffffffffffff8111156131c757600080fd5b6131d38582860161311f565b9150509250929050565b6000602082840312156131ef57600080fd5b813567ffffffffffffffff81111561320657600080fd5b6121af8482850161311f565b6000602080838503121561322557600080fd5b823567ffffffffffffffff8082111561323d57600080fd5b818501915085601f83011261325157600080fd5b813581811115613263576132636130d8565b8060051b6132728582016130ee565b918252838101850191858101908984111561328c57600080fd5b86860192505b838310156132c8578235858111156132aa5760008081fd5b6132b88b89838a010161311f565b8352509186019190860190613292565b9998505050505050505050565b8015158114610d3557600080fd5b600080604083850312156132f657600080fd5b6132ff83613014565b9150602083013561330f816132d5565b809150509250929050565b6000806000806080858703121561333057600080fd5b61333985613014565b935061334760208601613014565b925060408501359150606085013567ffffffffffffffff81111561336a57600080fd5b6133768782880161311f565b91505092959194509250565b6000806020838503121561339557600080fd5b823567ffffffffffffffff808211156133ad57600080fd5b818501915085601f8301126133c157600080fd5b8135818111156133d057600080fd5b8660208260051b85010111156133e557600080fd5b60209290920196919550909350505050565b6000806040838503121561340a57600080fd5b61341383613014565b91506130b460208401613014565b600181811c9082168061343557607f821691505b6020821081141561345657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561348c5761348c61345c565b500290565b600082198211156134a4576134a461345c565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156134d3576134d361345c565b5060010190565b600081516134ec818560208601612f90565b9290920192915050565b600080845481600182811c91508083168061351257607f831692505b602080841082141561353257634e487b7160e01b86526022600452602486fd5b818015613546576001811461355757613584565b60ff19861689528489019650613584565b60008b81526020902060005b8681101561357c5781548b820152908501908301613563565b505084890196505b505050505050612bb181856134da565b600082516135a6818460208701612f90565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000920191825250600501919050565b634e487b7160e01b600052601260045260246000fd5b6000826135fa576135fa6135d5565b500690565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613637816017850160208801612f90565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351613674816028840160208801612f90565b01602801949350505050565b60006020828403121561369257600080fd5b5051919050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526136cb6080830184612fbc565b9695505050505050565b6000602082840312156136e757600080fd5b81516127e581612f5d565b600082613701576137016135d5565b500490565b6000828210156137185761371861345c565b500390565b60008161372c5761372c61345c565b506000190190565b60006020828403121561374657600080fd5b81516127e5816132d5565b60008251613763818460208701612f90565b919091019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220fbcb902ead73badbaf77ea368eae8868b6f28060368904d9fea4e6d99c6eebc764736f6c634300080c0033
Deployed Bytecode
0x6080604052600436106102855760003560e01c806370a0823111610153578063bd075b84116100cb578063e985e9c51161007f578063f2fde38b11610064578063f2fde38b1461075b578063f72c0d8b1461077b578063ff4312a0146107af57600080fd5b8063e985e9c5146106dd578063ec87621c1461072757600080fd5b8063d5391393116100b0578063d539139314610669578063d547741f1461069d578063e2b4684d146106bd57600080fd5b8063bd075b8414610629578063c87b56dd1461064957600080fd5b806395d89b4111610122578063a22cb46511610107578063a22cb465146105c9578063a9a35935146105e9578063b88d4fde1461060957600080fd5b806395d89b411461059f578063a217fddf146105b457600080fd5b806370a08231146104f8578063893c3b4c146105185780638da5cb5b1461053857806391d148541461055957600080fd5b806336568abe1161020157806352d1902d116101b557806357079ceb1161019a57806357079ceb146104a25780636352211e146104c35780636c0360eb146104e357600080fd5b806352d1902d1461046d57806355f804b31461048257600080fd5b80633ccfd60b116101e65780633ccfd60b1461043257806342842e0e1461043a5780634f1ef2861461045a57600080fd5b806336568abe146103f25780633659cfe61461041257600080fd5b8063095ea7b31161025857806323b872dd1161023d57806323b872dd14610382578063248a9ca3146103a25780632f2ff15d146103d257600080fd5b8063095ea7b31461033957806318160ddd1461035b57600080fd5b806301ffc9a71461028a57806306fdde03146102bf578063081812fc146102e157806308bb2bbb14610319575b600080fd5b34801561029657600080fd5b506102aa6102a5366004612f73565b6107cf565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102d461087b565b6040516102b69190612fe8565b3480156102ed57600080fd5b506103016102fc366004612ffb565b61090d565b6040516001600160a01b0390911681526020016102b6565b34801561032557600080fd5b506102d4610334366004612ffb565b61096b565b34801561034557600080fd5b5061035961035436600461302b565b610a18565b005b34801561036757600080fd5b5060fc5460fb5403600019015b6040519081526020016102b6565b34801561038e57600080fd5b5061035961039d366004613055565b610ad8565b3480156103ae57600080fd5b506103746103bd366004612ffb565b60009081526065602052604090206001015490565b3480156103de57600080fd5b506103596103ed366004613091565b610ae3565b3480156103fe57600080fd5b5061035961040d366004613091565b610b09565b34801561041e57600080fd5b5061035961042d3660046130bd565b610b9a565b610359610d38565b34801561044657600080fd5b50610359610455366004613055565b610ddc565b61035961046836600461318f565b610df7565b34801561047957600080fd5b50610374610f82565b34801561048e57600080fd5b5061035961049d3660046131dd565b611047565b3480156104ae57600080fd5b5061010654610301906001600160a01b031681565b3480156104cf57600080fd5b506103016104de366004612ffb565b611112565b3480156104ef57600080fd5b506102d4611124565b34801561050457600080fd5b506103746105133660046130bd565b611132565b34801561052457600080fd5b50610359610533366004613212565b61119b565b34801561054457600080fd5b5061010554610301906001600160a01b031681565b34801561056557600080fd5b506102aa610574366004613091565b60009182526065602090815260408084206001600160a01b0393909316845291905290205460ff1690565b3480156105ab57600080fd5b506102d4611359565b3480156105c057600080fd5b50610374600081565b3480156105d557600080fd5b506103596105e43660046132e3565b611368565b3480156105f557600080fd5b506103596106043660046130bd565b611418565b34801561061557600080fd5b5061035961062436600461331a565b611455565b34801561063557600080fd5b50610359610644366004613382565b6114a6565b34801561065557600080fd5b506102d4610664366004612ffb565b6115d9565b34801561067557600080fd5b506103747f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b3480156106a957600080fd5b506103596106b8366004613091565b6117e7565b3480156106c957600080fd5b506103596106d8366004613212565b61180d565b3480156106e957600080fd5b506102aa6106f83660046133f7565b6001600160a01b0391821660009081526101026020908152604080832093909416825291909152205460ff1690565b34801561073357600080fd5b506103747f241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0881565b34801561076757600080fd5b506103596107763660046130bd565b6118d8565b34801561078757600080fd5b506103747f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e381565b3480156107bb57600080fd5b506103596107ca3660046130bd565b611915565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061083257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061086657506001600160e01b031982167fda8def7300000000000000000000000000000000000000000000000000000000145b806108755750610875826119b4565b92915050565b606060fd805461088a90613421565b80601f01602080910402602001604051908101604052809291908181526020018280546108b690613421565b80156109035780601f106108d857610100808354040283529160200191610903565b820191906000526020600020905b8154815290600101906020018083116108e657829003601f168201915b5050505050905090565b600061091882611a26565b61094e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50600090815261010160205260409020546001600160a01b031690565b610104818154811061097c57600080fd5b90600052602060002001600091509050805461099790613421565b80601f01602080910402602001604051908101604052809291908181526020018280546109c390613421565b8015610a105780601f106109e557610100808354040283529160200191610a10565b820191906000526020600020905b8154815290600101906020018083116109f357829003601f168201915b505050505081565b6000610a2382611112565b9050806001600160a01b0316836001600160a01b03161415610a71576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b03821614801590610a915750610a8f81336106f8565b155b15610ac8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ad3838383611a60565b505050565b610ad3838383611aca565b600082815260656020526040902060010154610aff8133611ad7565b610ad38383611b57565b6001600160a01b0381163314610b8c5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084015b60405180910390fd5b610b968282611bf9565b5050565b306001600160a01b037f0000000000000000000000008f115dc3ef4fdfb21ecc3c637649b5bc4508f89e161415610c395760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610b83565b7f0000000000000000000000008f115dc3ef4fdfb21ecc3c637649b5bc4508f89e6001600160a01b0316610c947f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614610d105760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610b83565b610d1981611c7c565b60408051600080825260208201909252610d3591839190611ca7565b50565b6000610d448133611ad7565b604051600090339047908381818185875af1925050503d8060008114610d86576040519150601f19603f3d011682016040523d82523d6000602084013e610d8b565b606091505b5050905080610b965760405162461bcd60e51b815260206004820152600360248201527f45303300000000000000000000000000000000000000000000000000000000006044820152606401610b83565b610ad383838360405180602001604052806000815250611455565b306001600160a01b037f0000000000000000000000008f115dc3ef4fdfb21ecc3c637649b5bc4508f89e161415610e965760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610b83565b7f0000000000000000000000008f115dc3ef4fdfb21ecc3c637649b5bc4508f89e6001600160a01b0316610ef17f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b031614610f6d5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610b83565b610f7682611c7c565b610b9682826001611ca7565b6000306001600160a01b037f0000000000000000000000008f115dc3ef4fdfb21ecc3c637649b5bc4508f89e16146110225760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610b83565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b3360009081527fcee91eb23e767f0f440dd9fce5554f355614443931e9ac5ce78c67b9e06e6f70602052604090205460ff16806110b257503360009081527fffdfc1249c027f9191656349feb0761381bb32c9f557e01f419fd08754bf5a1b602052604090205460ff165b6110fe5760405162461bcd60e51b815260206004820152600360248201527f45303400000000000000000000000000000000000000000000000000000000006044820152606401610b83565b8051610b9690610103906020840190612e14565b600061111d82611e47565b5192915050565b610103805461099790613421565b60006001600160a01b038216611174576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b03166000908152610100602052604090205467ffffffffffffffff1690565b600054610100900460ff166111b65760005460ff16156111ba565b303b155b61122c5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610b83565b600054610100900460ff1615801561126b57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b6112df6040518060400160405280600481526020017f534e4946000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f534e494600000000000000000000000000000000000000000000000000000000815250611f8a565b6112e761201d565b6112f2600033611b57565b815161130690610104906020850190612e98565b50610105805473ffffffffffffffffffffffffffffffffffffffff1916331790558015610b9657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b606060fe805461088a90613421565b6001600160a01b0382163314156113ab576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152610102602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60006114248133611ad7565b50610106805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b611460848484611aca565b6001600160a01b0383163b1515801561148257506114808484848461209c565b155b156114a0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66114d18133611ad7565b8161151e5760405162461bcd60e51b815260206004820152600360248201527f45303100000000000000000000000000000000000000000000000000000000006044820152606401610b83565b6107d061152c836002613472565b60fb546000190161153d9190613491565b111561158b5760405162461bcd60e51b815260206004820152600360248201527f45303200000000000000000000000000000000000000000000000000000000006044820152606401610b83565b60005b828110156114a0576115c78484838181106115ab576115ab6134a9565b90506020020160208101906115c091906130bd565b60026121b7565b806115d1816134bf565b91505061158e565b60606115e482611a26565b61161a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610103805461162a90613421565b905011156116825761010361163e836121d1565b60405160200161164f9291906134f6565b60408051601f198184030181529082905261166c91602001613594565b6040516020818303038152906040529050919050565b61168d6002836135eb565b611786576101046000815481106116a6576116a66134a9565b9060005260206000200180546116bb90613421565b151590506116d85760405180602001604052806000815250610875565b6101046000815481106116ed576116ed6134a9565b90600052602060002001805461170290613421565b80601f016020809104026020016040519081016040528092919081815260200182805461172e90613421565b801561177b5780601f106117505761010080835404028352916020019161177b565b820191906000526020600020905b81548152906001019060200180831161175e57829003601f168201915b505050505092915050565b61010460018154811061179b5761179b6134a9565b9060005260206000200180546117b090613421565b151590506117cd5760405180602001604052806000815250610875565b6101046001815481106116ed576116ed6134a9565b919050565b6000828152606560205260409020600101546118038133611ad7565b610ad38383611bf9565b3360009081527fcee91eb23e767f0f440dd9fce5554f355614443931e9ac5ce78c67b9e06e6f70602052604090205460ff168061187857503360009081527fffdfc1249c027f9191656349feb0761381bb32c9f557e01f419fd08754bf5a1b602052604090205460ff165b6118c45760405162461bcd60e51b815260206004820152600360248201527f45303400000000000000000000000000000000000000000000000000000000006044820152606401610b83565b8051610b9690610104906020840190612e98565b60006118e48133611ad7565b50610105805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66119408133611ad7565b6107d061195060fb546000190190565b61195b906002613491565b11156119a95760405162461bcd60e51b815260206004820152600360248201527f45303200000000000000000000000000000000000000000000000000000000006044820152606401610b83565b610b968260026121b7565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611a1757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610875575061087582612303565b600081600111158015611a3a575060fb5482105b8015610875575050600090815260ff6020819052604090912054600160e01b9004161590565b60008281526101016020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610ad3838383600161236a565b60008281526065602090815260408083206001600160a01b038516845290915290205460ff16610b9657611b15816001600160a01b031660146125bc565b611b208360206125bc565b604051602001611b319291906135ff565b60408051601f198184030181529082905262461bcd60e51b8252610b8391600401612fe8565b60008281526065602090815260408083206001600160a01b038516845290915290205460ff16610b965760008281526065602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611bb53390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526065602090815260408083206001600160a01b038516845290915290205460ff1615610b965760008281526065602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b7f189ab7a9244df0848122154315af71fe140f3db0fe014031783b0946b8c9d2e3610b968133611ad7565b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff1615611cda57610ad3836127ec565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa925050508015611d34575060408051601f3d908101601f19168201909252611d3191810190613680565b60015b611da65760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610b83565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc8114611e3b5760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152608401610b83565b50610ad38383836128b7565b60408051606081018252600080825260208201819052918101919091528180600111158015611e77575060fb5481105b15611f5857600081815260ff6020818152604092839020835160608101855290546001600160a01b038116825267ffffffffffffffff600160a01b82041692820192909252600160e01b909104909116151591810182905290611f565780516001600160a01b031615611eeb579392505050565b5060001901600081815260ff6020818152604092839020835160608101855290546001600160a01b03811680835267ffffffffffffffff600160a01b83041693830193909352600160e01b90049092161515928201929092529015611f51579392505050565b611eeb565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600054610100900460ff166120075760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b83565b61201182826128dc565b61201961201d565b610b965b600054610100900460ff1661209a5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b83565b565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a02906120ea903390899088908890600401613699565b6020604051808303816000875af1925050508015612125575060408051601f3d908101601f19168201909252612122918101906136d5565b60015b612180573d808015612153576040519150601f19603f3d011682016040523d82523d6000602084013e612158565b606091505b508051612178576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b0319167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b610b9682826040518060200160405280600081525061298a565b60608161221157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561223b5780612225816134bf565b91506122349050600a836136f2565b9150612215565b60008167ffffffffffffffff811115612256576122566130d8565b6040519080825280601f01601f191660200182016040528015612280576020820181803683370190505b5090505b84156121af57612295600183613706565b91506122a2600a866135eb565b6122ad906030613491565b60f81b8183815181106122c2576122c26134a9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506122fc600a866136f2565b9450612284565b60006001600160e01b031982167f7965db0b00000000000000000000000000000000000000000000000000000000148061087557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610875565b600061237583611e47565b9050846001600160a01b031681600001516001600160a01b0316146123c6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8115612480576000336001600160a01b03871614806123ea57506123ea86336106f8565b806124055750336123fa8561090d565b6001600160a01b0316145b90508061243e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03851661247e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61248d8585856001612997565b61249960008487611a60565b6001600160a01b03858116600090815261010060209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff9283166000190183161790925589861680865283862080549384169383166001908101841694909417905589865260ff90945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166125705760fb548214612570578054602085015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b606060006125cb836002613472565b6125d6906002613491565b67ffffffffffffffff8111156125ee576125ee6130d8565b6040519080825280601f01601f191660200182016040528015612618576020820181803683370190505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061264f5761264f6134a9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106126b2576126b26134a9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006126ee846002613472565b6126f9906001613491565b90505b6001811115612796577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061273a5761273a6134a9565b1a60f81b828281518110612750576127506134a9565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c9361278f8161371d565b90506126fc565b5083156127e55760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610b83565b9392505050565b6001600160a01b0381163b6128695760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610b83565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6128c083612a6f565b6000825111806128cd5750805b15610ad3576114a08383612aaf565b600054610100900460ff166129595760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610b83565b815161296c9060fd906020850190612e14565b5080516129809060fe906020840190612e14565b50600160fb555050565b610ad38383836001612bba565b610106546040517fce2e71b70000000000000000000000000000000000000000000000000000000081523360048201526001600160a01b039091169063ce2e71b790602401602060405180830381865afa1580156129f9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a1d9190613734565b15612a6a5760405162461bcd60e51b815260206004820152600f60248201527f4f70657261746f722044656e69656400000000000000000000000000000000006044820152606401610b83565b6114a0565b612a78816127ec565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b612b2e5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610b83565b600080846001600160a01b031684604051612b499190613751565b600060405180830381855af49150503d8060008114612b84576040519150601f19603f3d011682016040523d82523d6000602084013e612b89565b606091505b5091509150612bb1828260405180606001604052806027815260200161376e60279139612ddb565b95945050505050565b60fb546001600160a01b038516612bfd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83612c34576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c416000868387612997565b6001600160a01b03851660008181526101006020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c0181169092021790915585845260ff90925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015612d0357506001600160a01b0387163b15155b15612d8c575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612d54600088848060010195508861209c565b612d71576040516368d2bf6b60e11b815260040160405180910390fd5b80821415612d09578260fb5414612d8757600080fd5b612dd2565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415612d8d575b5060fb556125b5565b60608315612dea5750816127e5565b825115612dfa5782518084602001fd5b8160405162461bcd60e51b8152600401610b839190612fe8565b828054612e2090613421565b90600052602060002090601f016020900481019282612e425760008555612e88565b82601f10612e5b57805160ff1916838001178555612e88565b82800160010185558215612e88579182015b82811115612e88578251825591602001919060010190612e6d565b50612e94929150612ef1565b5090565b828054828255906000526020600020908101928215612ee5579160200282015b82811115612ee55782518051612ed5918491602090910190612e14565b5091602001919060010190612eb8565b50612e94929150612f06565b5b80821115612e945760008155600101612ef2565b80821115612e94576000612f1a8282612f23565b50600101612f06565b508054612f2f90613421565b6000825580601f10612f3f575050565b601f016020900490600052602060002090810190610d359190612ef1565b6001600160e01b031981168114610d3557600080fd5b600060208284031215612f8557600080fd5b81356127e581612f5d565b60005b83811015612fab578181015183820152602001612f93565b838111156114a05750506000910152565b60008151808452612fd4816020860160208601612f90565b601f01601f19169290920160200192915050565b6020815260006127e56020830184612fbc565b60006020828403121561300d57600080fd5b5035919050565b80356001600160a01b03811681146117e257600080fd5b6000806040838503121561303e57600080fd5b61304783613014565b946020939093013593505050565b60008060006060848603121561306a57600080fd5b61307384613014565b925061308160208501613014565b9150604084013590509250925092565b600080604083850312156130a457600080fd5b823591506130b460208401613014565b90509250929050565b6000602082840312156130cf57600080fd5b6127e582613014565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613117576131176130d8565b604052919050565b600082601f83011261313057600080fd5b813567ffffffffffffffff81111561314a5761314a6130d8565b61315d6020601f19601f840116016130ee565b81815284602083860101111561317257600080fd5b816020850160208301376000918101602001919091529392505050565b600080604083850312156131a257600080fd5b6131ab83613014565b9150602083013567ffffffffffffffff8111156131c757600080fd5b6131d38582860161311f565b9150509250929050565b6000602082840312156131ef57600080fd5b813567ffffffffffffffff81111561320657600080fd5b6121af8482850161311f565b6000602080838503121561322557600080fd5b823567ffffffffffffffff8082111561323d57600080fd5b818501915085601f83011261325157600080fd5b813581811115613263576132636130d8565b8060051b6132728582016130ee565b918252838101850191858101908984111561328c57600080fd5b86860192505b838310156132c8578235858111156132aa5760008081fd5b6132b88b89838a010161311f565b8352509186019190860190613292565b9998505050505050505050565b8015158114610d3557600080fd5b600080604083850312156132f657600080fd5b6132ff83613014565b9150602083013561330f816132d5565b809150509250929050565b6000806000806080858703121561333057600080fd5b61333985613014565b935061334760208601613014565b925060408501359150606085013567ffffffffffffffff81111561336a57600080fd5b6133768782880161311f565b91505092959194509250565b6000806020838503121561339557600080fd5b823567ffffffffffffffff808211156133ad57600080fd5b818501915085601f8301126133c157600080fd5b8135818111156133d057600080fd5b8660208260051b85010111156133e557600080fd5b60209290920196919550909350505050565b6000806040838503121561340a57600080fd5b61341383613014565b91506130b460208401613014565b600181811c9082168061343557607f821691505b6020821081141561345657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561348c5761348c61345c565b500290565b600082198211156134a4576134a461345c565b500190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156134d3576134d361345c565b5060010190565b600081516134ec818560208601612f90565b9290920192915050565b600080845481600182811c91508083168061351257607f831692505b602080841082141561353257634e487b7160e01b86526022600452602486fd5b818015613546576001811461355757613584565b60ff19861689528489019650613584565b60008b81526020902060005b8681101561357c5781548b820152908501908301613563565b505084890196505b505050505050612bb181856134da565b600082516135a6818460208701612f90565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000920191825250600501919050565b634e487b7160e01b600052601260045260246000fd5b6000826135fa576135fa6135d5565b500690565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613637816017850160208801612f90565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351613674816028840160208801612f90565b01602801949350505050565b60006020828403121561369257600080fd5b5051919050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526136cb6080830184612fbc565b9695505050505050565b6000602082840312156136e757600080fd5b81516127e581612f5d565b600082613701576137016135d5565b500490565b6000828210156137185761371861345c565b500390565b60008161372c5761372c61345c565b506000190190565b60006020828403121561374657600080fd5b81516127e5816132d5565b60008251613763818460208701612f90565b919091019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220fbcb902ead73badbaf77ea368eae8868b6f28060368904d9fea4e6d99c6eebc764736f6c634300080c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.