ERC-721
NFT
Overview
Max Total Supply
1,398 RKP
Holders
498
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RKPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RektPunk
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 500 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol'; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; contract RektPunk is ERC721Enumerable, Ownable, ReentrancyGuard { using Strings for uint256; string public _baseTokenURI; uint256 private _maxMint = 20; uint256 private _price = 0.04 ether; uint256 public constant MAX_ENTRIES = 10000; bool private _saleOpen = false; constructor(string memory baseURI) ERC721("Rekt Punk", "RKP") { setBaseURI(baseURI); } function mint(uint256 num) public nonReentrant payable { uint256 supply = totalSupply(); require( _saleOpen, "REKT PUNK : It's not sales time." ); require( msg.value >= _price * num, "REKT PUNK : Insufficient Value"); require( supply + num < MAX_ENTRIES, "REKT PUNK : Exceeds maximum supply" ); require( num < (_maxMint+1), "REKT PUNK : Up to 20 can be adopted." ); for(uint256 i; i < num; i++){ _safeMint(msg.sender, supply + i ); } withdrawAll(); } function tokensOfOwner(address owner) public view returns(uint256[] memory) { uint256 tokenCount = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(owner, i); } return tokenIds; } function price() public view returns (uint256){ return _price; } function setPrice(uint256 newPrice) public onlyOwner() { _price = newPrice; } function maxMint() public view returns (uint256){ return _maxMint; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function startSale() public onlyOwner { require( !_saleOpen, "REKT PUNK : Already Opened" ); _saleOpen = true; } function endSale() public onlyOwner { require( _saleOpen, "REKT PUNK : Not Opened" ); _saleOpen = false; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function withdrawAll() public payable { require(payable(owner()).send(address(this).balance)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "./extensions/IERC721Enumerable.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. 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 virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.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 ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 500 }, "evmVersion": "byzantium", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_ENTRIES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526014600d55668e1bc9bf040000600e55600f805460ff191690553480156200002b57600080fd5b5060405162002d0838038062002d088339810160408190526200004e91620002e0565b604080518082018252600981527f52656b742050756e6b000000000000000000000000000000000000000000000060208083019182528351808501909452600384527f524b500000000000000000000000000000000000000000000000000000000000908401528151919291620000c8916000916200023a565b508051620000de9060019060208401906200023a565b5050506000620000fc6200016a640100000000026401000000009004565b600a8054600160a060020a031916600160a060020a038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600b5562000163816401000000006200016e810204565b5062000442565b3390565b620001816401000000006200016a810204565b600160a060020a03166200019d6401000000006200022b810204565b600160a060020a03161462000212576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200022790600c9060208401906200023a565b5050565b600a54600160a060020a031690565b8280546200024890620003bd565b90600052602060002090601f0160209004810192826200026c5760008555620002b7565b82601f106200028757805160ff1916838001178555620002b7565b82800160010185558215620002b7579182015b82811115620002b75782518255916020019190600101906200029a565b50620002c5929150620002c9565b5090565b5b80821115620002c55760008155600101620002ca565b60006020808385031215620002f457600080fd5b825167ffffffffffffffff808211156200030d57600080fd5b818501915085601f8301126200032257600080fd5b81518181111562000337576200033762000413565b604051601f8201601f19908116603f0116810190838211818310171562000362576200036262000413565b8160405282815288868487010111156200037b57600080fd5b600093505b828410156200039f578484018601518185018701529285019262000380565b82841115620003b15760008684830101525b98975050505050505050565b600281046001821680620003d257607f821691505b602082108114156200040d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6128b680620004526000396000f3fe6080604052600436106101ea576000357c0100000000000000000000000000000000000000000000000000000000900480637d4cb96411610114578063a0712d68116100b2578063c87b56dd11610081578063c87b56dd146104f9578063cfc86f7b14610519578063e985e9c51461052e578063f2fde38b1461057757600080fd5b8063a0712d6814610491578063a22cb465146104a4578063b66a0e5d146104c4578063b88d4fde146104d957600080fd5b80638da5cb5b116100ee5780638da5cb5b1461042957806391b7f5ed1461044757806395d89b4114610467578063a035b1fe1461047c57600080fd5b80637d4cb964146103de5780638462151c146103f4578063853828b61461042157600080fd5b8063380d831b1161018c5780636352211e1161015b5780636352211e1461037457806370a0823114610394578063715018a6146103b45780637501f741146103c957600080fd5b8063380d831b146102ff57806342842e0e146103145780634f6ccce71461033457806355f804b31461035457600080fd5b8063095ea7b3116101c8578063095ea7b31461027e57806318160ddd146102a057806323b872dd146102bf5780632f745c59146102df57600080fd5b806301ffc9a7146101ef57806306fdde0314610224578063081812fc14610246575b600080fd5b3480156101fb57600080fd5b5061020f61020a3660046124cc565b610597565b60405190151581526020015b60405180910390f35b34801561023057600080fd5b506102396105f0565b60405161021b9190612643565b34801561025257600080fd5b5061026661026136600461254f565b610682565b604051600160a060020a03909116815260200161021b565b34801561028a57600080fd5b5061029e6102993660046124a2565b610730565b005b3480156102ac57600080fd5b506008545b60405190815260200161021b565b3480156102cb57600080fd5b5061029e6102da3660046123ae565b610868565b3480156102eb57600080fd5b506102b16102fa3660046124a2565b6108f2565b34801561030b57600080fd5b5061029e61099d565b34801561032057600080fd5b5061029e61032f3660046123ae565b610a5b565b34801561034057600080fd5b506102b161034f36600461254f565b610a76565b34801561036057600080fd5b5061029e61036f366004612506565b610b1d565b34801561038057600080fd5b5061026661038f36600461254f565b610b91565b3480156103a057600080fd5b506102b16103af366004612360565b610c1f565b3480156103c057600080fd5b5061029e610cbc565b3480156103d557600080fd5b50600d546102b1565b3480156103ea57600080fd5b506102b161271081565b34801561040057600080fd5b5061041461040f366004612360565b610d70565b60405161021b91906125ff565b61029e610e12565b34801561043557600080fd5b50600a54600160a060020a0316610266565b34801561045357600080fd5b5061029e61046236600461254f565b610e50565b34801561047357600080fd5b50610239610eb2565b34801561048857600080fd5b50600e546102b1565b61029e61049f36600461254f565b610ec1565b3480156104b057600080fd5b5061029e6104bf366004612466565b611128565b3480156104d057600080fd5b5061029e6111f0565b3480156104e557600080fd5b5061029e6104f43660046123ea565b6112b2565b34801561050557600080fd5b5061023961051436600461254f565b611343565b34801561052557600080fd5b5061023961142f565b34801561053a57600080fd5b5061020f61054936600461237b565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561058357600080fd5b5061029e610592366004612360565b6114bd565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1982167f780e9d630000000000000000000000000000000000000000000000000000000014806105ea57506105ea82611602565b92915050565b6060600080546105ff906126e4565b80601f016020809104026020016040519081016040528092919081815260200182805461062b906126e4565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166107145760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b600061073b82610b91565b905080600160a060020a031683600160a060020a031614156107c85760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161070b565b33600160a060020a03821614806107e457506107e48133610549565b6108595760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070b565b61086383836116dc565b505050565b6108723382611757565b6108e75760405160e560020a62461bcd02815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070b565b610863838383611862565b60006108fd83610c1f565b82106109745760405160e560020a62461bcd02815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161070b565b50600160a060020a03919091166000908152600660209081526040808320938352929052205490565b600a54600160a060020a031633146109fa5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b600f5460ff16610a4f5760405160e560020a62461bcd02815260206004820152601660248201527f52454b542050554e4b203a204e6f74204f70656e656400000000000000000000604482015260640161070b565b600f805460ff19169055565b610863838383604051806020016040528060008152506112b2565b6000610a8160085490565b8210610af85760405160e560020a62461bcd02815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161070b565b60088281548110610b0b57610b0b6127f4565b90600052602060002001549050919050565b600a54600160a060020a03163314610b7a5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b8051610b8d90600c906020840190612235565b5050565b600081815260026020526040812054600160a060020a0316806105ea5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161070b565b6000600160a060020a038216610ca05760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161070b565b50600160a060020a031660009081526003602052604090205490565b600a54600160a060020a03163314610d195760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b600a54604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b60606000610d7d83610c1f565b905060008167ffffffffffffffff811115610d9a57610d9a612823565b604051908082528060200260200182016040528015610dc3578160200160208202803683370190505b50905060005b82811015610e0a57610ddb85826108f2565b828281518110610ded57610ded6127f4565b602090810291909101015280610e0281612738565b915050610dc9565b509392505050565b600a54600160a060020a0316604051600160a060020a039190911690303180156108fc02916000818181858888f19350505050610e4e57600080fd5b565b600a54600160a060020a03163314610ead5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b600e55565b6060600180546105ff906126e4565b6002600b541415610f175760405160e560020a62461bcd02815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161070b565b6002600b556000610f2760085490565b600f5490915060ff16610f7f5760405160e560020a62461bcd02815260206004820181905260248201527f52454b542050554e4b203a2049742773206e6f742073616c65732074696d652e604482015260640161070b565b81600e54610f8d9190612682565b341015610fdf5760405160e560020a62461bcd02815260206004820152601e60248201527f52454b542050554e4b203a20496e73756666696369656e742056616c75650000604482015260640161070b565b612710610fec8383612656565b106110625760405160e560020a62461bcd02815260206004820152602260248201527f52454b542050554e4b203a2045786365656473206d6178696d756d207375707060448201527f6c79000000000000000000000000000000000000000000000000000000000000606482015260840161070b565b600d54611070906001612656565b82106110e65760405160e560020a62461bcd028152602060048201526024808201527f52454b542050554e4b203a20557020746f2032302063616e2062652061646f7060448201527f7465642e00000000000000000000000000000000000000000000000000000000606482015260840161070b565b60005b8281101561111657611104336110ff8385612656565b611a4d565b8061110e81612738565b9150506110e9565b5061111f610e12565b50506001600b55565b600160a060020a0382163314156111845760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070b565b336000818152600560209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a54600160a060020a0316331461124d5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b600f5460ff16156112a35760405160e560020a62461bcd02815260206004820152601a60248201527f52454b542050554e4b203a20416c7265616479204f70656e6564000000000000604482015260640161070b565b600f805460ff19166001179055565b6112bc3383611757565b6113315760405160e560020a62461bcd02815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070b565b61133d84848484611a67565b50505050565b600081815260026020526040902054606090600160a060020a03166113d35760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161070b565b60006113dd611af3565b905060008151116113fd5760405180602001604052806000815250611428565b8061140784611b02565b604051602001611418929190612594565b6040516020818303038152906040525b9392505050565b600c805461143c906126e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611468906126e4565b80156114b55780601f1061148a576101008083540402835291602001916114b5565b820191906000526020600020905b81548152906001019060200180831161149857829003601f168201915b505050505081565b600a54600160a060020a0316331461151a5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b600160a060020a0381166115995760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161070b565b600a54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061168f57507bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105ea57507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff198316146105ea565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416908117909155819061171e82610b91565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a03166117e45760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161070b565b60006117ef83610b91565b905080600160a060020a031684600160a060020a0316148061182a575083600160a060020a031661181f84610682565b600160a060020a0316145b8061185a5750600160a060020a0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b82600160a060020a031661187582610b91565b600160a060020a0316146118f45760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161070b565b600160a060020a0382166119725760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161070b565b61197d838383611c53565b6119886000826116dc565b600160a060020a03831660009081526003602052604081208054600192906119b19084906126a1565b9091555050600160a060020a03821660009081526003602052604081208054600192906119df908490612656565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b8d828260405180602001604052806000815250611d0b565b611a72848484611862565b611a7e84848484611d97565b61133d5760405160e560020a62461bcd02815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070b565b6060600c80546105ff906126e4565b606081611b4257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b6c5780611b5681612738565b9150611b659050600a8361266e565b9150611b46565b60008167ffffffffffffffff811115611b8757611b87612823565b6040519080825280601f01601f191660200182016040528015611bb1576020820181803683370190505b5090505b841561185a57611bc66001836126a1565b9150611bd3600a86612753565b611bde906030612656565b7f010000000000000000000000000000000000000000000000000000000000000002818381518110611c1257611c126127f4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c4c600a8661266e565b9450611bb5565b600160a060020a038316611cae57611ca981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cd1565b81600160a060020a031683600160a060020a031614611cd157611cd18382611f44565b600160a060020a038216611ce85761086381611fe1565b82600160a060020a031682600160a060020a031614610863576108638282612090565b611d1583836120d4565b611d226000848484611d97565b6108635760405160e560020a62461bcd02815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070b565b6000600160a060020a0384163b15611f39576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a0290611df49033908990889088906004016125c3565b602060405180830381600087803b158015611e0e57600080fd5b505af1925050508015611e3e575060408051601f3d908101601f19168201909252611e3b918101906124e9565b60015b611ef1573d808015611e6c576040519150601f19603f3d011682016040523d82523d6000602084013e611e71565b606091505b508051611ee95760405160e560020a62461bcd02815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070b565b805181602001fd5b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167f150b7a020000000000000000000000000000000000000000000000000000000014905061185a565b506001949350505050565b60006001611f5184610c1f565b611f5b91906126a1565b600083815260076020526040902054909150808214611fae57600160a060020a03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b506000918252600760209081526040808420849055600160a060020a039094168352600681528383209183525290812055565b600854600090611ff3906001906126a1565b6000838152600960205260408120546008805493945090928490811061201b5761201b6127f4565b90600052602060002001549050806008838154811061203c5761203c6127f4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612074576120746127c5565b6001900381819060005260206000200160009055905550505050565b600061209b83610c1f565b600160a060020a039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600160a060020a03821661212d5760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070b565b600081815260026020526040902054600160a060020a0316156121955760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070b565b6121a160008383611c53565b600160a060020a03821660009081526003602052604081208054600192906121ca908490612656565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612241906126e4565b90600052602060002090601f01602090048101928261226357600085556122a9565b82601f1061227c57805160ff19168380011785556122a9565b828001600101855582156122a9579182015b828111156122a957825182559160200191906001019061228e565b506122b59291506122b9565b5090565b5b808211156122b557600081556001016122ba565b600067ffffffffffffffff808411156122e9576122e9612823565b604051601f8501601f19908116603f0116810190828211818310171561231157612311612823565b8160405280935085815286868601111561232a57600080fd5b858560208301376000602087830101525050509392505050565b8035600160a060020a038116811461235b57600080fd5b919050565b60006020828403121561237257600080fd5b61142882612344565b6000806040838503121561238e57600080fd5b61239783612344565b91506123a560208401612344565b90509250929050565b6000806000606084860312156123c357600080fd5b6123cc84612344565b92506123da60208501612344565b9150604084013590509250925092565b6000806000806080858703121561240057600080fd5b61240985612344565b935061241760208601612344565b925060408501359150606085013567ffffffffffffffff81111561243a57600080fd5b8501601f8101871361244b57600080fd5b61245a878235602084016122ce565b91505092959194509250565b6000806040838503121561247957600080fd5b61248283612344565b91506020830135801515811461249757600080fd5b809150509250929050565b600080604083850312156124b557600080fd5b6124be83612344565b946020939093013593505050565b6000602082840312156124de57600080fd5b813561142881612852565b6000602082840312156124fb57600080fd5b815161142881612852565b60006020828403121561251857600080fd5b813567ffffffffffffffff81111561252f57600080fd5b8201601f8101841361254057600080fd5b61185a848235602084016122ce565b60006020828403121561256157600080fd5b5035919050565b600081518084526125808160208601602086016126b8565b601f01601f19169290920160200192915050565b600083516125a68184602088016126b8565b8351908301906125ba8183602088016126b8565b01949350505050565b6000600160a060020a038087168352808616602084015250836040830152608060608301526125f56080830184612568565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126375783518352928401929184019160010161261b565b50909695505050505050565b6020815260006114286020830184612568565b6000821982111561266957612669612767565b500190565b60008261267d5761267d612796565b500490565b600081600019048311821515161561269c5761269c612767565b500290565b6000828210156126b3576126b3612767565b500390565b60005b838110156126d35781810151838201526020016126bb565b8381111561133d5750506000910152565b6002810460018216806126f857607f821691505b60208210811415612732577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060001982141561274c5761274c612767565b5060010190565b60008261276257612762612796565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff198116811461287d57600080fd5b5056fea2646970667358221220020d3abf4d0a429848d06bdc43fb55553196d580b36a4ad9f5368d3dca7e4a2864736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5966374c466461547a4842416b4d7762744c6f6b7244436e3568396e716e744d7841594b5478514d7a6758362f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101ea576000357c0100000000000000000000000000000000000000000000000000000000900480637d4cb96411610114578063a0712d68116100b2578063c87b56dd11610081578063c87b56dd146104f9578063cfc86f7b14610519578063e985e9c51461052e578063f2fde38b1461057757600080fd5b8063a0712d6814610491578063a22cb465146104a4578063b66a0e5d146104c4578063b88d4fde146104d957600080fd5b80638da5cb5b116100ee5780638da5cb5b1461042957806391b7f5ed1461044757806395d89b4114610467578063a035b1fe1461047c57600080fd5b80637d4cb964146103de5780638462151c146103f4578063853828b61461042157600080fd5b8063380d831b1161018c5780636352211e1161015b5780636352211e1461037457806370a0823114610394578063715018a6146103b45780637501f741146103c957600080fd5b8063380d831b146102ff57806342842e0e146103145780634f6ccce71461033457806355f804b31461035457600080fd5b8063095ea7b3116101c8578063095ea7b31461027e57806318160ddd146102a057806323b872dd146102bf5780632f745c59146102df57600080fd5b806301ffc9a7146101ef57806306fdde0314610224578063081812fc14610246575b600080fd5b3480156101fb57600080fd5b5061020f61020a3660046124cc565b610597565b60405190151581526020015b60405180910390f35b34801561023057600080fd5b506102396105f0565b60405161021b9190612643565b34801561025257600080fd5b5061026661026136600461254f565b610682565b604051600160a060020a03909116815260200161021b565b34801561028a57600080fd5b5061029e6102993660046124a2565b610730565b005b3480156102ac57600080fd5b506008545b60405190815260200161021b565b3480156102cb57600080fd5b5061029e6102da3660046123ae565b610868565b3480156102eb57600080fd5b506102b16102fa3660046124a2565b6108f2565b34801561030b57600080fd5b5061029e61099d565b34801561032057600080fd5b5061029e61032f3660046123ae565b610a5b565b34801561034057600080fd5b506102b161034f36600461254f565b610a76565b34801561036057600080fd5b5061029e61036f366004612506565b610b1d565b34801561038057600080fd5b5061026661038f36600461254f565b610b91565b3480156103a057600080fd5b506102b16103af366004612360565b610c1f565b3480156103c057600080fd5b5061029e610cbc565b3480156103d557600080fd5b50600d546102b1565b3480156103ea57600080fd5b506102b161271081565b34801561040057600080fd5b5061041461040f366004612360565b610d70565b60405161021b91906125ff565b61029e610e12565b34801561043557600080fd5b50600a54600160a060020a0316610266565b34801561045357600080fd5b5061029e61046236600461254f565b610e50565b34801561047357600080fd5b50610239610eb2565b34801561048857600080fd5b50600e546102b1565b61029e61049f36600461254f565b610ec1565b3480156104b057600080fd5b5061029e6104bf366004612466565b611128565b3480156104d057600080fd5b5061029e6111f0565b3480156104e557600080fd5b5061029e6104f43660046123ea565b6112b2565b34801561050557600080fd5b5061023961051436600461254f565b611343565b34801561052557600080fd5b5061023961142f565b34801561053a57600080fd5b5061020f61054936600461237b565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561058357600080fd5b5061029e610592366004612360565b6114bd565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1982167f780e9d630000000000000000000000000000000000000000000000000000000014806105ea57506105ea82611602565b92915050565b6060600080546105ff906126e4565b80601f016020809104026020016040519081016040528092919081815260200182805461062b906126e4565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b600081815260026020526040812054600160a060020a03166107145760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b50600090815260046020526040902054600160a060020a031690565b600061073b82610b91565b905080600160a060020a031683600160a060020a031614156107c85760405160e560020a62461bcd02815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161070b565b33600160a060020a03821614806107e457506107e48133610549565b6108595760405160e560020a62461bcd02815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161070b565b61086383836116dc565b505050565b6108723382611757565b6108e75760405160e560020a62461bcd02815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070b565b610863838383611862565b60006108fd83610c1f565b82106109745760405160e560020a62461bcd02815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161070b565b50600160a060020a03919091166000908152600660209081526040808320938352929052205490565b600a54600160a060020a031633146109fa5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b600f5460ff16610a4f5760405160e560020a62461bcd02815260206004820152601660248201527f52454b542050554e4b203a204e6f74204f70656e656400000000000000000000604482015260640161070b565b600f805460ff19169055565b610863838383604051806020016040528060008152506112b2565b6000610a8160085490565b8210610af85760405160e560020a62461bcd02815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161070b565b60088281548110610b0b57610b0b6127f4565b90600052602060002001549050919050565b600a54600160a060020a03163314610b7a5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b8051610b8d90600c906020840190612235565b5050565b600081815260026020526040812054600160a060020a0316806105ea5760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161070b565b6000600160a060020a038216610ca05760405160e560020a62461bcd02815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161070b565b50600160a060020a031660009081526003602052604090205490565b600a54600160a060020a03163314610d195760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b600a54604051600091600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a805473ffffffffffffffffffffffffffffffffffffffff19169055565b60606000610d7d83610c1f565b905060008167ffffffffffffffff811115610d9a57610d9a612823565b604051908082528060200260200182016040528015610dc3578160200160208202803683370190505b50905060005b82811015610e0a57610ddb85826108f2565b828281518110610ded57610ded6127f4565b602090810291909101015280610e0281612738565b915050610dc9565b509392505050565b600a54600160a060020a0316604051600160a060020a039190911690303180156108fc02916000818181858888f19350505050610e4e57600080fd5b565b600a54600160a060020a03163314610ead5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b600e55565b6060600180546105ff906126e4565b6002600b541415610f175760405160e560020a62461bcd02815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161070b565b6002600b556000610f2760085490565b600f5490915060ff16610f7f5760405160e560020a62461bcd02815260206004820181905260248201527f52454b542050554e4b203a2049742773206e6f742073616c65732074696d652e604482015260640161070b565b81600e54610f8d9190612682565b341015610fdf5760405160e560020a62461bcd02815260206004820152601e60248201527f52454b542050554e4b203a20496e73756666696369656e742056616c75650000604482015260640161070b565b612710610fec8383612656565b106110625760405160e560020a62461bcd02815260206004820152602260248201527f52454b542050554e4b203a2045786365656473206d6178696d756d207375707060448201527f6c79000000000000000000000000000000000000000000000000000000000000606482015260840161070b565b600d54611070906001612656565b82106110e65760405160e560020a62461bcd028152602060048201526024808201527f52454b542050554e4b203a20557020746f2032302063616e2062652061646f7060448201527f7465642e00000000000000000000000000000000000000000000000000000000606482015260840161070b565b60005b8281101561111657611104336110ff8385612656565b611a4d565b8061110e81612738565b9150506110e9565b5061111f610e12565b50506001600b55565b600160a060020a0382163314156111845760405160e560020a62461bcd02815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161070b565b336000818152600560209081526040808320600160a060020a03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a54600160a060020a0316331461124d5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b600f5460ff16156112a35760405160e560020a62461bcd02815260206004820152601a60248201527f52454b542050554e4b203a20416c7265616479204f70656e6564000000000000604482015260640161070b565b600f805460ff19166001179055565b6112bc3383611757565b6113315760405160e560020a62461bcd02815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161070b565b61133d84848484611a67565b50505050565b600081815260026020526040902054606090600160a060020a03166113d35760405160e560020a62461bcd02815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161070b565b60006113dd611af3565b905060008151116113fd5760405180602001604052806000815250611428565b8061140784611b02565b604051602001611418929190612594565b6040516020818303038152906040525b9392505050565b600c805461143c906126e4565b80601f0160208091040260200160405190810160405280929190818152602001828054611468906126e4565b80156114b55780601f1061148a576101008083540402835291602001916114b5565b820191906000526020600020905b81548152906001019060200180831161149857829003601f168201915b505050505081565b600a54600160a060020a0316331461151a5760405160e560020a62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161070b565b600160a060020a0381166115995760405160e560020a62461bcd02815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161070b565b600a54604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061168f57507bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806105ea57507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff198316146105ea565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416908117909155819061171e82610b91565b600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081815260026020526040812054600160a060020a03166117e45760405160e560020a62461bcd02815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161070b565b60006117ef83610b91565b905080600160a060020a031684600160a060020a0316148061182a575083600160a060020a031661181f84610682565b600160a060020a0316145b8061185a5750600160a060020a0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b82600160a060020a031661187582610b91565b600160a060020a0316146118f45760405160e560020a62461bcd02815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161070b565b600160a060020a0382166119725760405160e560020a62461bcd028152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161070b565b61197d838383611c53565b6119886000826116dc565b600160a060020a03831660009081526003602052604081208054600192906119b19084906126a1565b9091555050600160a060020a03821660009081526003602052604081208054600192906119df908490612656565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b8d828260405180602001604052806000815250611d0b565b611a72848484611862565b611a7e84848484611d97565b61133d5760405160e560020a62461bcd02815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070b565b6060600c80546105ff906126e4565b606081611b4257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611b6c5780611b5681612738565b9150611b659050600a8361266e565b9150611b46565b60008167ffffffffffffffff811115611b8757611b87612823565b6040519080825280601f01601f191660200182016040528015611bb1576020820181803683370190505b5090505b841561185a57611bc66001836126a1565b9150611bd3600a86612753565b611bde906030612656565b7f010000000000000000000000000000000000000000000000000000000000000002818381518110611c1257611c126127f4565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611c4c600a8661266e565b9450611bb5565b600160a060020a038316611cae57611ca981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cd1565b81600160a060020a031683600160a060020a031614611cd157611cd18382611f44565b600160a060020a038216611ce85761086381611fe1565b82600160a060020a031682600160a060020a031614610863576108638282612090565b611d1583836120d4565b611d226000848484611d97565b6108635760405160e560020a62461bcd02815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070b565b6000600160a060020a0384163b15611f39576040517f150b7a02000000000000000000000000000000000000000000000000000000008152600160a060020a0385169063150b7a0290611df49033908990889088906004016125c3565b602060405180830381600087803b158015611e0e57600080fd5b505af1925050508015611e3e575060408051601f3d908101601f19168201909252611e3b918101906124e9565b60015b611ef1573d808015611e6c576040519150601f19603f3d011682016040523d82523d6000602084013e611e71565b606091505b508051611ee95760405160e560020a62461bcd02815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161070b565b805181602001fd5b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167f150b7a020000000000000000000000000000000000000000000000000000000014905061185a565b506001949350505050565b60006001611f5184610c1f565b611f5b91906126a1565b600083815260076020526040902054909150808214611fae57600160a060020a03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b506000918252600760209081526040808420849055600160a060020a039094168352600681528383209183525290812055565b600854600090611ff3906001906126a1565b6000838152600960205260408120546008805493945090928490811061201b5761201b6127f4565b90600052602060002001549050806008838154811061203c5761203c6127f4565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612074576120746127c5565b6001900381819060005260206000200160009055905550505050565b600061209b83610c1f565b600160a060020a039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600160a060020a03821661212d5760405160e560020a62461bcd02815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161070b565b600081815260026020526040902054600160a060020a0316156121955760405160e560020a62461bcd02815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161070b565b6121a160008383611c53565b600160a060020a03821660009081526003602052604081208054600192906121ca908490612656565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612241906126e4565b90600052602060002090601f01602090048101928261226357600085556122a9565b82601f1061227c57805160ff19168380011785556122a9565b828001600101855582156122a9579182015b828111156122a957825182559160200191906001019061228e565b506122b59291506122b9565b5090565b5b808211156122b557600081556001016122ba565b600067ffffffffffffffff808411156122e9576122e9612823565b604051601f8501601f19908116603f0116810190828211818310171561231157612311612823565b8160405280935085815286868601111561232a57600080fd5b858560208301376000602087830101525050509392505050565b8035600160a060020a038116811461235b57600080fd5b919050565b60006020828403121561237257600080fd5b61142882612344565b6000806040838503121561238e57600080fd5b61239783612344565b91506123a560208401612344565b90509250929050565b6000806000606084860312156123c357600080fd5b6123cc84612344565b92506123da60208501612344565b9150604084013590509250925092565b6000806000806080858703121561240057600080fd5b61240985612344565b935061241760208601612344565b925060408501359150606085013567ffffffffffffffff81111561243a57600080fd5b8501601f8101871361244b57600080fd5b61245a878235602084016122ce565b91505092959194509250565b6000806040838503121561247957600080fd5b61248283612344565b91506020830135801515811461249757600080fd5b809150509250929050565b600080604083850312156124b557600080fd5b6124be83612344565b946020939093013593505050565b6000602082840312156124de57600080fd5b813561142881612852565b6000602082840312156124fb57600080fd5b815161142881612852565b60006020828403121561251857600080fd5b813567ffffffffffffffff81111561252f57600080fd5b8201601f8101841361254057600080fd5b61185a848235602084016122ce565b60006020828403121561256157600080fd5b5035919050565b600081518084526125808160208601602086016126b8565b601f01601f19169290920160200192915050565b600083516125a68184602088016126b8565b8351908301906125ba8183602088016126b8565b01949350505050565b6000600160a060020a038087168352808616602084015250836040830152608060608301526125f56080830184612568565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126375783518352928401929184019160010161261b565b50909695505050505050565b6020815260006114286020830184612568565b6000821982111561266957612669612767565b500190565b60008261267d5761267d612796565b500490565b600081600019048311821515161561269c5761269c612767565b500290565b6000828210156126b3576126b3612767565b500390565b60005b838110156126d35781810151838201526020016126bb565b8381111561133d5750506000910152565b6002810460018216806126f857607f821691505b60208210811415612732577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060001982141561274c5761274c612767565b5060010190565b60008261276257612762612796565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff198116811461287d57600080fd5b5056fea2646970667358221220020d3abf4d0a429848d06bdc43fb55553196d580b36a4ad9f5368d3dca7e4a2864736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5966374c466461547a4842416b4d7762744c6f6b7244436e3568396e716e744d7841594b5478514d7a6758362f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmYf7LFdaTzHBAkMwbtLokrDCn5h9nqntMxAYKTxQMzgX6/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d5966374c466461547a4842416b4d7762744c6f6b7244436e3568396e
Arg [4] : 716e744d7841594b5478514d7a6758362f000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.