Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
263 RPT
Holders
95
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 RPTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RussyPussy
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * This Helper is used to return a dynamic value in the overridden _startTokenId() function. * Extending this Helper before the ERC721A contract give us access to the herein set `startTokenId` * to be returned by the overridden `_startTokenId()` function of ERC721A in the ERC721AStartTokenId mocks. */ contract StartTokenIdHelper { uint256 public startTokenId; constructor(uint256 startTokenId_) { startTokenId = startTokenId_; } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * 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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/Sasha1.sol pragma solidity ^0.8.4; contract RussyPussy is StartTokenIdHelper, ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public constant Max_Supply = 1000; uint256 price1 = 0.009 ether; uint256 price2 = 0.008 ether; uint256 price3 = 0.007 ether; string contractmeta = "ipfs://QmRUmuvBfPHSLNe5c3zBRYbC79QsaUKRnJJUF5FQqH9oGz"; string private _baseTokenURI = "ipfs://QmXSfjXu8GCXrSuT4XFQLaJWPaPChYxoJxC8qa1TD74heq/"; bool public isActive = true; constructor ( ) StartTokenIdHelper(1) ERC721A("RussyPussy2.0", "RPT") {} event Minted( address minter, uint256 quantity ); function _startTokenId() internal view override returns (uint256) { return startTokenId; } function contractURI() public view returns (string memory) { return contractmeta; } function setContractMeta(string memory _md) public onlyOwner { contractmeta = _md; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string memory _URI) external onlyOwner { _baseTokenURI = _URI; } function setPriceStep(uint256 _price1, uint256 _price2, uint256 _price3) external onlyOwner { price1 = _price1; price2 = _price2; price3 = _price3; } function setActive(bool _state) external onlyOwner { isActive = _state; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory){ require( _exists(_tokenId),"no token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ""; } function findprice (uint256 _quantity) public view returns (uint256 value) { if (_quantity >= 1 && _quantity <= 2){ value = _quantity * price1; } if (_quantity >= 3 && _quantity <= 5){ value = _quantity * price2; } if (_quantity >= 6 && _quantity <= 10){ value = _quantity * price3; } return value; } function mint(uint256 _quantity) external payable nonReentrant { require(isActive, "Not active"); require(_quantity > 0 && _quantity <= 10, "Quantity > 0 < 10"); require((totalSupply() + _quantity) <= Max_Supply, "Max supply"); require(msg.value >= findprice(_quantity), "Wrong Value"); _safeMint(msg.sender, _quantity); emit Minted ( msg.sender, _quantity ); } function adminMint(address _recp, uint256 _quantity) external nonReentrant onlyOwner{ require((totalSupply() + _quantity) <= Max_Supply, "Max supply"); _safeMint(_recp, _quantity); emit Minted ( _recp, _quantity ); } function withdraw(address _address, uint256 amount) public onlyOwner nonReentrant { (bool os, ) = payable(_address).call{value: amount}(""); require(os); //--- } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Minted","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_Supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recp","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"findprice","outputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"bool","name":"_state","type":"bool"}],"name":"setActive","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":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_md","type":"string"}],"name":"setContractMeta","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price1","type":"uint256"},{"internalType":"uint256","name":"_price2","type":"uint256"},{"internalType":"uint256","name":"_price3","type":"uint256"}],"name":"setPriceStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052661ff973cafa8000600b55661c6bf526340000600c556618de76816d8000600d55604051806060016040528060358152602001620037e860359139600e90805190602001906200005692919062000277565b506040518060600160405280603681526020016200381d60369139600f90805190602001906200008892919062000277565b506001601060006101000a81548160ff021916908315150217905550348015620000b157600080fd5b506040518060400160405280600d81526020017f52757373795075737379322e30000000000000000000000000000000000000008152506040518060400160405280600381526020017f52505400000000000000000000000000000000000000000000000000000000008152506001806000819055505081600390805190602001906200014092919062000277565b5080600490805190602001906200015992919062000277565b506200016a620001a060201b60201c565b60018190555050506200019262000186620001a960201b60201c565b620001b160201b60201c565b6001600a819055506200038c565b60008054905090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002859062000356565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200036f57607f821691505b6020821081141562000386576200038562000327565b5b50919050565b61344c806200039c6000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063c87b56dd11610095578063e8a3d48511610064578063e8a3d4851461062f578063e985e9c51461065a578063f2fde38b14610697578063f3fef3a3146106c0576101c2565b8063c87b56dd14610575578063d567f3b8146105b2578063e58306f9146105db578063e6798baa14610604576101c2565b8063a22cb465116100d1578063a22cb465146104bd578063acec338a146104e6578063b88a42431461050f578063b88d4fde1461054c576101c2565b80638da5cb5b1461044b57806395d89b4114610476578063a0712d68146104a1576101c2565b806342842e0e116101645780636737c9c11161013e5780636737c9c1146103a357806370a08231146103ce578063715018a61461040b57806387b65fb214610422576101c2565b806342842e0e1461031457806355f804b31461033d5780636352211e14610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806322f3e2d4146102c057806323b872dd146102eb576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612549565b6106e9565b6040516101fb9190612591565b60405180910390f35b34801561021057600080fd5b5061021961077b565b6040516102269190612645565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061269d565b61080d565b604051610263919061270b565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612752565b61088c565b005b3480156102a157600080fd5b506102aa6109d0565b6040516102b791906127a1565b60405180910390f35b3480156102cc57600080fd5b506102d56109e7565b6040516102e29190612591565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d91906127bc565b6109fa565b005b34801561032057600080fd5b5061033b600480360381019061033691906127bc565b610d1f565b005b34801561034957600080fd5b50610364600480360381019061035f9190612944565b610d3f565b005b34801561037257600080fd5b5061038d6004803603810190610388919061269d565b610dd5565b60405161039a919061270b565b60405180910390f35b3480156103af57600080fd5b506103b8610de7565b6040516103c591906127a1565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f0919061298d565b610ded565b60405161040291906127a1565b60405180910390f35b34801561041757600080fd5b50610420610ea6565b005b34801561042e57600080fd5b5061044960048036038101906104449190612944565b610f2e565b005b34801561045757600080fd5b50610460610fc4565b60405161046d919061270b565b60405180910390f35b34801561048257600080fd5b5061048b610fee565b6040516104989190612645565b60405180910390f35b6104bb60048036038101906104b6919061269d565b611080565b005b3480156104c957600080fd5b506104e460048036038101906104df91906129e6565b61125d565b005b3480156104f257600080fd5b5061050d60048036038101906105089190612a26565b6113d5565b005b34801561051b57600080fd5b506105366004803603810190610531919061269d565b61146e565b60405161054391906127a1565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612af4565b6114ed565b005b34801561058157600080fd5b5061059c6004803603810190610597919061269d565b611560565b6040516105a99190612645565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612b77565b611607565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190612752565b61169d565b005b34801561061057600080fd5b5061061961180d565b60405161062691906127a1565b60405180910390f35b34801561063b57600080fd5b50610644611813565b6040516106519190612645565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612bca565b6118a5565b60405161068e9190612591565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b9919061298d565b611939565b005b3480156106cc57600080fd5b506106e760048036038101906106e29190612752565b611a31565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461078a90612c39565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690612c39565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b600061081882611b7e565b61084e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089782610dd5565b90508073ffffffffffffffffffffffffffffffffffffffff166108b8611bdd565b73ffffffffffffffffffffffffffffffffffffffff161461091b576108e4816108df611bdd565b6118a5565b61091a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109da611be5565b6002546001540303905090565b601060009054906101000a900460ff1681565b6000610a0582611bee565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a7884611cbc565b91509150610a8e8187610a89611bdd565b611ce3565b610ada57610aa386610a9e611bdd565b6118a5565b610ad9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4e8686866001611d27565b8015610b5957600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2785610c03888887611d2d565b7c020000000000000000000000000000000000000000000000000000000017611d55565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610caf576000600185019050600060056000838152602001908152602001600020541415610cad576001548114610cac578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d178686866001611d80565b505050505050565b610d3a838383604051806020016040528060008152506114ed565b505050565b610d47611d86565b73ffffffffffffffffffffffffffffffffffffffff16610d65610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290612cb7565b60405180910390fd5b80600f9080519060200190610dd192919061243a565b5050565b6000610de082611bee565b9050919050565b6103e881565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e55576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eae611d86565b73ffffffffffffffffffffffffffffffffffffffff16610ecc610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990612cb7565b60405180910390fd5b610f2c6000611d8e565b565b610f36611d86565b73ffffffffffffffffffffffffffffffffffffffff16610f54610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190612cb7565b60405180910390fd5b80600e9080519060200190610fc092919061243a565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ffd90612c39565b80601f016020809104026020016040519081016040528092919081815260200182805461102990612c39565b80156110765780601f1061104b57610100808354040283529160200191611076565b820191906000526020600020905b81548152906001019060200180831161105957829003601f168201915b5050505050905090565b6002600a5414156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612d23565b60405180910390fd5b6002600a81905550601060009054906101000a900460ff1661111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490612d8f565b60405180910390fd5b60008111801561112e5750600a8111155b61116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490612dfb565b60405180910390fd5b6103e8816111796109d0565b6111839190612e4a565b11156111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90612eec565b60405180910390fd5b6111cd8161146e565b34101561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690612f58565b60405180910390fd5b6112193382611e54565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe338260405161124a929190612f78565b60405180910390a16001600a8190555050565b611265611bdd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006112d7611bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611384611bdd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113c99190612591565b60405180910390a35050565b6113dd611d86565b73ffffffffffffffffffffffffffffffffffffffff166113fb610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890612cb7565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b600060018210158015611482575060028211155b1561149857600b54826114959190612fa1565b90505b600382101580156114aa575060058211155b156114c057600c54826114bd9190612fa1565b90505b600682101580156114d25750600a8211155b156114e857600d54826114e59190612fa1565b90505b919050565b6114f88484846109fa565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461155a5761152384848484611e72565b611559576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061156b82611b7e565b6115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190613047565b60405180910390fd5b60006115b4611fd2565b905060008151116115d457604051806020016040528060008152506115ff565b806115de84612064565b6040516020016115ef9291906130ef565b6040516020818303038152906040525b915050919050565b61160f611d86565b73ffffffffffffffffffffffffffffffffffffffff1661162d610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a90612cb7565b60405180910390fd5b82600b8190555081600c8190555080600d81905550505050565b6002600a5414156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90612d23565b60405180910390fd5b6002600a819055506116f3611d86565b73ffffffffffffffffffffffffffffffffffffffff16611711610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90612cb7565b60405180910390fd5b6103e8816117736109d0565b61177d9190612e4a565b11156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590612eec565b60405180910390fd5b6117c88282611e54565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe82826040516117f9929190612f78565b60405180910390a16001600a819055505050565b60005481565b6060600e805461182290612c39565b80601f016020809104026020016040519081016040528092919081815260200182805461184e90612c39565b801561189b5780601f106118705761010080835404028352916020019161189b565b820191906000526020600020905b81548152906001019060200180831161187e57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611941611d86565b73ffffffffffffffffffffffffffffffffffffffff1661195f610fc4565b73ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90612cb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90613190565b60405180910390fd5b611a2e81611d8e565b50565b611a39611d86565b73ffffffffffffffffffffffffffffffffffffffff16611a57610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490612cb7565b60405180910390fd5b6002600a541415611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90612d23565b60405180910390fd5b6002600a8190555060008273ffffffffffffffffffffffffffffffffffffffff1682604051611b21906131e1565b60006040518083038185875af1925050503d8060008114611b5e576040519150601f19603f3d011682016040523d82523d6000602084013e611b63565b606091505b5050905080611b7157600080fd5b506001600a819055505050565b600081611b89611be5565b11158015611b98575060015482105b8015611bd6575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60008054905090565b60008082905080611bfd611be5565b11611c8557600154811015611c845760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c82575b6000811415611c78576005600083600190039350838152602001908152602001600020549050611c4d565b8092505050611cb7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d448686846121c5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e6e8282604051806020016040528060008152506121ce565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e98611bdd565b8786866040518563ffffffff1660e01b8152600401611eba949392919061324b565b602060405180830381600087803b158015611ed457600080fd5b505af1925050508015611f0557506040513d601f19601f82011682018060405250810190611f0291906132ac565b60015b611f7f573d8060008114611f35576040519150601f19603f3d011682016040523d82523d6000602084013e611f3a565b606091505b50600081511415611f77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611fe190612c39565b80601f016020809104026020016040519081016040528092919081815260200182805461200d90612c39565b801561205a5780601f1061202f5761010080835404028352916020019161205a565b820191906000526020600020905b81548152906001019060200180831161203d57829003601f168201915b5050505050905090565b606060008214156120ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c0565b600082905060005b600082146120de5780806120c7906132d9565b915050600a826120d79190613351565b91506120b4565b60008167ffffffffffffffff8111156120fa576120f9612819565b5b6040519080825280601f01601f19166020018201604052801561212c5781602001600182028036833780820191505090505b5090505b600085146121b9576001826121459190613382565b9150600a8561215491906133b6565b60306121609190612e4a565b60f81b818381518110612176576121756133e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b29190613351565b9450612130565b8093505050505b919050565b60009392505050565b6121d8838361226c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122675760006001549050600083820390505b6122196000868380600101945086611e72565b61224f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061220657816001541461226457600080fd5b50505b505050565b6000600154905060008214156122ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122bb6000848385611d27565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612332836123236000866000611d2d565b61232c8561242a565b17611d55565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123d357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612398565b50600082141561240f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506124256000848385611d80565b505050565b60006001821460e11b9050919050565b82805461244690612c39565b90600052602060002090601f01602090048101928261246857600085556124af565b82601f1061248157805160ff19168380011785556124af565b828001600101855582156124af579182015b828111156124ae578251825591602001919060010190612493565b5b5090506124bc91906124c0565b5090565b5b808211156124d95760008160009055506001016124c1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612526816124f1565b811461253157600080fd5b50565b6000813590506125438161251d565b92915050565b60006020828403121561255f5761255e6124e7565b5b600061256d84828501612534565b91505092915050565b60008115159050919050565b61258b81612576565b82525050565b60006020820190506125a66000830184612582565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125e65780820151818401526020810190506125cb565b838111156125f5576000848401525b50505050565b6000601f19601f8301169050919050565b6000612617826125ac565b61262181856125b7565b93506126318185602086016125c8565b61263a816125fb565b840191505092915050565b6000602082019050818103600083015261265f818461260c565b905092915050565b6000819050919050565b61267a81612667565b811461268557600080fd5b50565b60008135905061269781612671565b92915050565b6000602082840312156126b3576126b26124e7565b5b60006126c184828501612688565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126f5826126ca565b9050919050565b612705816126ea565b82525050565b600060208201905061272060008301846126fc565b92915050565b61272f816126ea565b811461273a57600080fd5b50565b60008135905061274c81612726565b92915050565b60008060408385031215612769576127686124e7565b5b60006127778582860161273d565b925050602061278885828601612688565b9150509250929050565b61279b81612667565b82525050565b60006020820190506127b66000830184612792565b92915050565b6000806000606084860312156127d5576127d46124e7565b5b60006127e38682870161273d565b93505060206127f48682870161273d565b925050604061280586828701612688565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612851826125fb565b810181811067ffffffffffffffff821117156128705761286f612819565b5b80604052505050565b60006128836124dd565b905061288f8282612848565b919050565b600067ffffffffffffffff8211156128af576128ae612819565b5b6128b8826125fb565b9050602081019050919050565b82818337600083830152505050565b60006128e76128e284612894565b612879565b90508281526020810184848401111561290357612902612814565b5b61290e8482856128c5565b509392505050565b600082601f83011261292b5761292a61280f565b5b813561293b8482602086016128d4565b91505092915050565b60006020828403121561295a576129596124e7565b5b600082013567ffffffffffffffff811115612978576129776124ec565b5b61298484828501612916565b91505092915050565b6000602082840312156129a3576129a26124e7565b5b60006129b18482850161273d565b91505092915050565b6129c381612576565b81146129ce57600080fd5b50565b6000813590506129e0816129ba565b92915050565b600080604083850312156129fd576129fc6124e7565b5b6000612a0b8582860161273d565b9250506020612a1c858286016129d1565b9150509250929050565b600060208284031215612a3c57612a3b6124e7565b5b6000612a4a848285016129d1565b91505092915050565b600067ffffffffffffffff821115612a6e57612a6d612819565b5b612a77826125fb565b9050602081019050919050565b6000612a97612a9284612a53565b612879565b905082815260208101848484011115612ab357612ab2612814565b5b612abe8482856128c5565b509392505050565b600082601f830112612adb57612ada61280f565b5b8135612aeb848260208601612a84565b91505092915050565b60008060008060808587031215612b0e57612b0d6124e7565b5b6000612b1c8782880161273d565b9450506020612b2d8782880161273d565b9350506040612b3e87828801612688565b925050606085013567ffffffffffffffff811115612b5f57612b5e6124ec565b5b612b6b87828801612ac6565b91505092959194509250565b600080600060608486031215612b9057612b8f6124e7565b5b6000612b9e86828701612688565b9350506020612baf86828701612688565b9250506040612bc086828701612688565b9150509250925092565b60008060408385031215612be157612be06124e7565b5b6000612bef8582860161273d565b9250506020612c008582860161273d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c5157607f821691505b60208210811415612c6557612c64612c0a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ca16020836125b7565b9150612cac82612c6b565b602082019050919050565b60006020820190508181036000830152612cd081612c94565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612d0d601f836125b7565b9150612d1882612cd7565b602082019050919050565b60006020820190508181036000830152612d3c81612d00565b9050919050565b7f4e6f742061637469766500000000000000000000000000000000000000000000600082015250565b6000612d79600a836125b7565b9150612d8482612d43565b602082019050919050565b60006020820190508181036000830152612da881612d6c565b9050919050565b7f5175616e74697479203e2030203c203130000000000000000000000000000000600082015250565b6000612de56011836125b7565b9150612df082612daf565b602082019050919050565b60006020820190508181036000830152612e1481612dd8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5582612667565b9150612e6083612667565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9557612e94612e1b565b5b828201905092915050565b7f4d617820737570706c7900000000000000000000000000000000000000000000600082015250565b6000612ed6600a836125b7565b9150612ee182612ea0565b602082019050919050565b60006020820190508181036000830152612f0581612ec9565b9050919050565b7f57726f6e672056616c7565000000000000000000000000000000000000000000600082015250565b6000612f42600b836125b7565b9150612f4d82612f0c565b602082019050919050565b60006020820190508181036000830152612f7181612f35565b9050919050565b6000604082019050612f8d60008301856126fc565b612f9a6020830184612792565b9392505050565b6000612fac82612667565b9150612fb783612667565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ff057612fef612e1b565b5b828202905092915050565b7f6e6f20746f6b656e000000000000000000000000000000000000000000000000600082015250565b60006130316008836125b7565b915061303c82612ffb565b602082019050919050565b6000602082019050818103600083015261306081613024565b9050919050565b600081905092915050565b600061307d826125ac565b6130878185613067565b93506130978185602086016125c8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006130d9600583613067565b91506130e4826130a3565b600582019050919050565b60006130fb8285613072565b91506131078284613072565b9150613112826130cc565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061317a6026836125b7565b91506131858261311e565b604082019050919050565b600060208201905081810360008301526131a98161316d565b9050919050565b600081905092915050565b50565b60006131cb6000836131b0565b91506131d6826131bb565b600082019050919050565b60006131ec826131be565b9150819050919050565b600081519050919050565b600082825260208201905092915050565b600061321d826131f6565b6132278185613201565b93506132378185602086016125c8565b613240816125fb565b840191505092915050565b600060808201905061326060008301876126fc565b61326d60208301866126fc565b61327a6040830185612792565b818103606083015261328c8184613212565b905095945050505050565b6000815190506132a68161251d565b92915050565b6000602082840312156132c2576132c16124e7565b5b60006132d084828501613297565b91505092915050565b60006132e482612667565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561331757613316612e1b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061335c82612667565b915061336783612667565b92508261337757613376613322565b5b828204905092915050565b600061338d82612667565b915061339883612667565b9250828210156133ab576133aa612e1b565b5b828203905092915050565b60006133c182612667565b91506133cc83612667565b9250826133dc576133db613322565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e90bd7819a2af8c46b6e714caeaed7ceb3a6b0bafdfb8ae8b083c7ede9a33caa64736f6c63430008090033697066733a2f2f516d52556d757642665048534c4e653563337a42525962433739517361554b526e4a4a55463546517148396f477a697066733a2f2f516d5853666a58753847435872537554345846514c614a57506150436859786f4a784338716131544437346865712f
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063c87b56dd11610095578063e8a3d48511610064578063e8a3d4851461062f578063e985e9c51461065a578063f2fde38b14610697578063f3fef3a3146106c0576101c2565b8063c87b56dd14610575578063d567f3b8146105b2578063e58306f9146105db578063e6798baa14610604576101c2565b8063a22cb465116100d1578063a22cb465146104bd578063acec338a146104e6578063b88a42431461050f578063b88d4fde1461054c576101c2565b80638da5cb5b1461044b57806395d89b4114610476578063a0712d68146104a1576101c2565b806342842e0e116101645780636737c9c11161013e5780636737c9c1146103a357806370a08231146103ce578063715018a61461040b57806387b65fb214610422576101c2565b806342842e0e1461031457806355f804b31461033d5780636352211e14610366576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806322f3e2d4146102c057806323b872dd146102eb576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612549565b6106e9565b6040516101fb9190612591565b60405180910390f35b34801561021057600080fd5b5061021961077b565b6040516102269190612645565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061269d565b61080d565b604051610263919061270b565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612752565b61088c565b005b3480156102a157600080fd5b506102aa6109d0565b6040516102b791906127a1565b60405180910390f35b3480156102cc57600080fd5b506102d56109e7565b6040516102e29190612591565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d91906127bc565b6109fa565b005b34801561032057600080fd5b5061033b600480360381019061033691906127bc565b610d1f565b005b34801561034957600080fd5b50610364600480360381019061035f9190612944565b610d3f565b005b34801561037257600080fd5b5061038d6004803603810190610388919061269d565b610dd5565b60405161039a919061270b565b60405180910390f35b3480156103af57600080fd5b506103b8610de7565b6040516103c591906127a1565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f0919061298d565b610ded565b60405161040291906127a1565b60405180910390f35b34801561041757600080fd5b50610420610ea6565b005b34801561042e57600080fd5b5061044960048036038101906104449190612944565b610f2e565b005b34801561045757600080fd5b50610460610fc4565b60405161046d919061270b565b60405180910390f35b34801561048257600080fd5b5061048b610fee565b6040516104989190612645565b60405180910390f35b6104bb60048036038101906104b6919061269d565b611080565b005b3480156104c957600080fd5b506104e460048036038101906104df91906129e6565b61125d565b005b3480156104f257600080fd5b5061050d60048036038101906105089190612a26565b6113d5565b005b34801561051b57600080fd5b506105366004803603810190610531919061269d565b61146e565b60405161054391906127a1565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612af4565b6114ed565b005b34801561058157600080fd5b5061059c6004803603810190610597919061269d565b611560565b6040516105a99190612645565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612b77565b611607565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190612752565b61169d565b005b34801561061057600080fd5b5061061961180d565b60405161062691906127a1565b60405180910390f35b34801561063b57600080fd5b50610644611813565b6040516106519190612645565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612bca565b6118a5565b60405161068e9190612591565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b9919061298d565b611939565b005b3480156106cc57600080fd5b506106e760048036038101906106e29190612752565b611a31565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461078a90612c39565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690612c39565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b600061081882611b7e565b61084e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089782610dd5565b90508073ffffffffffffffffffffffffffffffffffffffff166108b8611bdd565b73ffffffffffffffffffffffffffffffffffffffff161461091b576108e4816108df611bdd565b6118a5565b61091a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109da611be5565b6002546001540303905090565b601060009054906101000a900460ff1681565b6000610a0582611bee565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a6c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a7884611cbc565b91509150610a8e8187610a89611bdd565b611ce3565b610ada57610aa386610a9e611bdd565b6118a5565b610ad9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b41576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4e8686866001611d27565b8015610b5957600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c2785610c03888887611d2d565b7c020000000000000000000000000000000000000000000000000000000017611d55565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610caf576000600185019050600060056000838152602001908152602001600020541415610cad576001548114610cac578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d178686866001611d80565b505050505050565b610d3a838383604051806020016040528060008152506114ed565b505050565b610d47611d86565b73ffffffffffffffffffffffffffffffffffffffff16610d65610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290612cb7565b60405180910390fd5b80600f9080519060200190610dd192919061243a565b5050565b6000610de082611bee565b9050919050565b6103e881565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e55576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eae611d86565b73ffffffffffffffffffffffffffffffffffffffff16610ecc610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990612cb7565b60405180910390fd5b610f2c6000611d8e565b565b610f36611d86565b73ffffffffffffffffffffffffffffffffffffffff16610f54610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa190612cb7565b60405180910390fd5b80600e9080519060200190610fc092919061243a565b5050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610ffd90612c39565b80601f016020809104026020016040519081016040528092919081815260200182805461102990612c39565b80156110765780601f1061104b57610100808354040283529160200191611076565b820191906000526020600020905b81548152906001019060200180831161105957829003601f168201915b5050505050905090565b6002600a5414156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612d23565b60405180910390fd5b6002600a81905550601060009054906101000a900460ff1661111d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111490612d8f565b60405180910390fd5b60008111801561112e5750600a8111155b61116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490612dfb565b60405180910390fd5b6103e8816111796109d0565b6111839190612e4a565b11156111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90612eec565b60405180910390fd5b6111cd8161146e565b34101561120f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120690612f58565b60405180910390fd5b6112193382611e54565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe338260405161124a929190612f78565b60405180910390a16001600a8190555050565b611265611bdd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006112d7611bdd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611384611bdd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113c99190612591565b60405180910390a35050565b6113dd611d86565b73ffffffffffffffffffffffffffffffffffffffff166113fb610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614611451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144890612cb7565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b600060018210158015611482575060028211155b1561149857600b54826114959190612fa1565b90505b600382101580156114aa575060058211155b156114c057600c54826114bd9190612fa1565b90505b600682101580156114d25750600a8211155b156114e857600d54826114e59190612fa1565b90505b919050565b6114f88484846109fa565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461155a5761152384848484611e72565b611559576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061156b82611b7e565b6115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a190613047565b60405180910390fd5b60006115b4611fd2565b905060008151116115d457604051806020016040528060008152506115ff565b806115de84612064565b6040516020016115ef9291906130ef565b6040516020818303038152906040525b915050919050565b61160f611d86565b73ffffffffffffffffffffffffffffffffffffffff1661162d610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a90612cb7565b60405180910390fd5b82600b8190555081600c8190555080600d81905550505050565b6002600a5414156116e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116da90612d23565b60405180910390fd5b6002600a819055506116f3611d86565b73ffffffffffffffffffffffffffffffffffffffff16611711610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90612cb7565b60405180910390fd5b6103e8816117736109d0565b61177d9190612e4a565b11156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b590612eec565b60405180910390fd5b6117c88282611e54565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe82826040516117f9929190612f78565b60405180910390a16001600a819055505050565b60005481565b6060600e805461182290612c39565b80601f016020809104026020016040519081016040528092919081815260200182805461184e90612c39565b801561189b5780601f106118705761010080835404028352916020019161189b565b820191906000526020600020905b81548152906001019060200180831161187e57829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611941611d86565b73ffffffffffffffffffffffffffffffffffffffff1661195f610fc4565b73ffffffffffffffffffffffffffffffffffffffff16146119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90612cb7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90613190565b60405180910390fd5b611a2e81611d8e565b50565b611a39611d86565b73ffffffffffffffffffffffffffffffffffffffff16611a57610fc4565b73ffffffffffffffffffffffffffffffffffffffff1614611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490612cb7565b60405180910390fd5b6002600a541415611af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aea90612d23565b60405180910390fd5b6002600a8190555060008273ffffffffffffffffffffffffffffffffffffffff1682604051611b21906131e1565b60006040518083038185875af1925050503d8060008114611b5e576040519150601f19603f3d011682016040523d82523d6000602084013e611b63565b606091505b5050905080611b7157600080fd5b506001600a819055505050565b600081611b89611be5565b11158015611b98575060015482105b8015611bd6575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b60008054905090565b60008082905080611bfd611be5565b11611c8557600154811015611c845760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611c82575b6000811415611c78576005600083600190039350838152602001908152602001600020549050611c4d565b8092505050611cb7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006007600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d448686846121c5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611e6e8282604051806020016040528060008152506121ce565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e98611bdd565b8786866040518563ffffffff1660e01b8152600401611eba949392919061324b565b602060405180830381600087803b158015611ed457600080fd5b505af1925050508015611f0557506040513d601f19601f82011682018060405250810190611f0291906132ac565b60015b611f7f573d8060008114611f35576040519150601f19603f3d011682016040523d82523d6000602084013e611f3a565b606091505b50600081511415611f77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611fe190612c39565b80601f016020809104026020016040519081016040528092919081815260200182805461200d90612c39565b801561205a5780601f1061202f5761010080835404028352916020019161205a565b820191906000526020600020905b81548152906001019060200180831161203d57829003601f168201915b5050505050905090565b606060008214156120ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121c0565b600082905060005b600082146120de5780806120c7906132d9565b915050600a826120d79190613351565b91506120b4565b60008167ffffffffffffffff8111156120fa576120f9612819565b5b6040519080825280601f01601f19166020018201604052801561212c5781602001600182028036833780820191505090505b5090505b600085146121b9576001826121459190613382565b9150600a8561215491906133b6565b60306121609190612e4a565b60f81b818381518110612176576121756133e7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121b29190613351565b9450612130565b8093505050505b919050565b60009392505050565b6121d8838361226c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122675760006001549050600083820390505b6122196000868380600101945086611e72565b61224f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061220657816001541461226457600080fd5b50505b505050565b6000600154905060008214156122ae576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122bb6000848385611d27565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612332836123236000866000611d2d565b61232c8561242a565b17611d55565b6005600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146123d357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612398565b50600082141561240f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060018190555050506124256000848385611d80565b505050565b60006001821460e11b9050919050565b82805461244690612c39565b90600052602060002090601f01602090048101928261246857600085556124af565b82601f1061248157805160ff19168380011785556124af565b828001600101855582156124af579182015b828111156124ae578251825591602001919060010190612493565b5b5090506124bc91906124c0565b5090565b5b808211156124d95760008160009055506001016124c1565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612526816124f1565b811461253157600080fd5b50565b6000813590506125438161251d565b92915050565b60006020828403121561255f5761255e6124e7565b5b600061256d84828501612534565b91505092915050565b60008115159050919050565b61258b81612576565b82525050565b60006020820190506125a66000830184612582565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125e65780820151818401526020810190506125cb565b838111156125f5576000848401525b50505050565b6000601f19601f8301169050919050565b6000612617826125ac565b61262181856125b7565b93506126318185602086016125c8565b61263a816125fb565b840191505092915050565b6000602082019050818103600083015261265f818461260c565b905092915050565b6000819050919050565b61267a81612667565b811461268557600080fd5b50565b60008135905061269781612671565b92915050565b6000602082840312156126b3576126b26124e7565b5b60006126c184828501612688565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126f5826126ca565b9050919050565b612705816126ea565b82525050565b600060208201905061272060008301846126fc565b92915050565b61272f816126ea565b811461273a57600080fd5b50565b60008135905061274c81612726565b92915050565b60008060408385031215612769576127686124e7565b5b60006127778582860161273d565b925050602061278885828601612688565b9150509250929050565b61279b81612667565b82525050565b60006020820190506127b66000830184612792565b92915050565b6000806000606084860312156127d5576127d46124e7565b5b60006127e38682870161273d565b93505060206127f48682870161273d565b925050604061280586828701612688565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612851826125fb565b810181811067ffffffffffffffff821117156128705761286f612819565b5b80604052505050565b60006128836124dd565b905061288f8282612848565b919050565b600067ffffffffffffffff8211156128af576128ae612819565b5b6128b8826125fb565b9050602081019050919050565b82818337600083830152505050565b60006128e76128e284612894565b612879565b90508281526020810184848401111561290357612902612814565b5b61290e8482856128c5565b509392505050565b600082601f83011261292b5761292a61280f565b5b813561293b8482602086016128d4565b91505092915050565b60006020828403121561295a576129596124e7565b5b600082013567ffffffffffffffff811115612978576129776124ec565b5b61298484828501612916565b91505092915050565b6000602082840312156129a3576129a26124e7565b5b60006129b18482850161273d565b91505092915050565b6129c381612576565b81146129ce57600080fd5b50565b6000813590506129e0816129ba565b92915050565b600080604083850312156129fd576129fc6124e7565b5b6000612a0b8582860161273d565b9250506020612a1c858286016129d1565b9150509250929050565b600060208284031215612a3c57612a3b6124e7565b5b6000612a4a848285016129d1565b91505092915050565b600067ffffffffffffffff821115612a6e57612a6d612819565b5b612a77826125fb565b9050602081019050919050565b6000612a97612a9284612a53565b612879565b905082815260208101848484011115612ab357612ab2612814565b5b612abe8482856128c5565b509392505050565b600082601f830112612adb57612ada61280f565b5b8135612aeb848260208601612a84565b91505092915050565b60008060008060808587031215612b0e57612b0d6124e7565b5b6000612b1c8782880161273d565b9450506020612b2d8782880161273d565b9350506040612b3e87828801612688565b925050606085013567ffffffffffffffff811115612b5f57612b5e6124ec565b5b612b6b87828801612ac6565b91505092959194509250565b600080600060608486031215612b9057612b8f6124e7565b5b6000612b9e86828701612688565b9350506020612baf86828701612688565b9250506040612bc086828701612688565b9150509250925092565b60008060408385031215612be157612be06124e7565b5b6000612bef8582860161273d565b9250506020612c008582860161273d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c5157607f821691505b60208210811415612c6557612c64612c0a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612ca16020836125b7565b9150612cac82612c6b565b602082019050919050565b60006020820190508181036000830152612cd081612c94565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612d0d601f836125b7565b9150612d1882612cd7565b602082019050919050565b60006020820190508181036000830152612d3c81612d00565b9050919050565b7f4e6f742061637469766500000000000000000000000000000000000000000000600082015250565b6000612d79600a836125b7565b9150612d8482612d43565b602082019050919050565b60006020820190508181036000830152612da881612d6c565b9050919050565b7f5175616e74697479203e2030203c203130000000000000000000000000000000600082015250565b6000612de56011836125b7565b9150612df082612daf565b602082019050919050565b60006020820190508181036000830152612e1481612dd8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e5582612667565b9150612e6083612667565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9557612e94612e1b565b5b828201905092915050565b7f4d617820737570706c7900000000000000000000000000000000000000000000600082015250565b6000612ed6600a836125b7565b9150612ee182612ea0565b602082019050919050565b60006020820190508181036000830152612f0581612ec9565b9050919050565b7f57726f6e672056616c7565000000000000000000000000000000000000000000600082015250565b6000612f42600b836125b7565b9150612f4d82612f0c565b602082019050919050565b60006020820190508181036000830152612f7181612f35565b9050919050565b6000604082019050612f8d60008301856126fc565b612f9a6020830184612792565b9392505050565b6000612fac82612667565b9150612fb783612667565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ff057612fef612e1b565b5b828202905092915050565b7f6e6f20746f6b656e000000000000000000000000000000000000000000000000600082015250565b60006130316008836125b7565b915061303c82612ffb565b602082019050919050565b6000602082019050818103600083015261306081613024565b9050919050565b600081905092915050565b600061307d826125ac565b6130878185613067565b93506130978185602086016125c8565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006130d9600583613067565b91506130e4826130a3565b600582019050919050565b60006130fb8285613072565b91506131078284613072565b9150613112826130cc565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061317a6026836125b7565b91506131858261311e565b604082019050919050565b600060208201905081810360008301526131a98161316d565b9050919050565b600081905092915050565b50565b60006131cb6000836131b0565b91506131d6826131bb565b600082019050919050565b60006131ec826131be565b9150819050919050565b600081519050919050565b600082825260208201905092915050565b600061321d826131f6565b6132278185613201565b93506132378185602086016125c8565b613240816125fb565b840191505092915050565b600060808201905061326060008301876126fc565b61326d60208301866126fc565b61327a6040830185612792565b818103606083015261328c8184613212565b905095945050505050565b6000815190506132a68161251d565b92915050565b6000602082840312156132c2576132c16124e7565b5b60006132d084828501613297565b91505092915050565b60006132e482612667565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561331757613316612e1b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061335c82612667565b915061336783612667565b92508261337757613376613322565b5b828204905092915050565b600061338d82612667565b915061339883612667565b9250828210156133ab576133aa612e1b565b5b828203905092915050565b60006133c182612667565b91506133cc83612667565b9250826133dc576133db613322565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e90bd7819a2af8c46b6e714caeaed7ceb3a6b0bafdfb8ae8b083c7ede9a33caa64736f6c63430008090033
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.