Overview
ETH Balance
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,242 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 18773273 | 265 days ago | IN | 0 ETH | 0.00000012 | ||||
| Set Approval For... | 11053844 | 444 days ago | IN | 0 ETH | 0.00000078 | ||||
| Set Approval For... | 5251113 | 578 days ago | IN | 0 ETH | 0.0000009 | ||||
| Set Approval For... | 5225901 | 579 days ago | IN | 0 ETH | 0.00000882 | ||||
| Set Approval For... | 5209616 | 579 days ago | IN | 0 ETH | 0.00000807 | ||||
| Set Approval For... | 5201353 | 579 days ago | IN | 0 ETH | 0.00000556 | ||||
| Set Approval For... | 5169862 | 580 days ago | IN | 0 ETH | 0.00000691 | ||||
| Set Approval For... | 5164331 | 580 days ago | IN | 0 ETH | 0.00000436 | ||||
| Set Approval For... | 5159555 | 580 days ago | IN | 0 ETH | 0.00000418 | ||||
| Set Approval For... | 5159497 | 580 days ago | IN | 0 ETH | 0.00000392 | ||||
| Set Approval For... | 5128569 | 581 days ago | IN | 0 ETH | 0.00000741 | ||||
| Set Approval For... | 5126186 | 581 days ago | IN | 0 ETH | 0.00000694 | ||||
| Set Approval For... | 5002712 | 584 days ago | IN | 0 ETH | 0.00000905 | ||||
| Set Approval For... | 4998067 | 584 days ago | IN | 0 ETH | 0.00000613 | ||||
| Set Approval For... | 4996186 | 584 days ago | IN | 0 ETH | 0.00000612 | ||||
| Set Approval For... | 4953129 | 585 days ago | IN | 0 ETH | 0.00001401 | ||||
| Set Approval For... | 4908356 | 586 days ago | IN | 0 ETH | 0.00001019 | ||||
| Set Approval For... | 4907275 | 586 days ago | IN | 0 ETH | 0.00001047 | ||||
| Set Approval For... | 4900839 | 586 days ago | IN | 0 ETH | 0.00000348 | ||||
| Set Approval For... | 4900779 | 586 days ago | IN | 0 ETH | 0.0000035 | ||||
| Set Approval For... | 4874950 | 587 days ago | IN | 0 ETH | 0.00001068 | ||||
| Set Approval For... | 4871605 | 587 days ago | IN | 0 ETH | 0.00000602 | ||||
| Set Approval For... | 4857111 | 587 days ago | IN | 0 ETH | 0.00000357 | ||||
| Set Approval For... | 4855392 | 587 days ago | IN | 0 ETH | 0.00000274 | ||||
| Set Approval For... | 4851951 | 588 days ago | IN | 0 ETH | 0.0000017 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 4035978 | 606 days ago | 14.28 ETH | ||||
| 3872723 | 610 days ago | 40 wei | ||||
| 3872672 | 610 days ago | 50 wei | ||||
| 3872664 | 610 days ago | 50 wei | ||||
| 3872657 | 610 days ago | 50 wei | ||||
| 3872647 | 610 days ago | 50 wei | ||||
| 3872639 | 610 days ago | 50 wei | ||||
| 3872631 | 610 days ago | 50 wei | ||||
| 3872623 | 610 days ago | 50 wei | ||||
| 3872598 | 610 days ago | 50 wei | ||||
| 3872120 | 610 days ago | 50 wei | ||||
| 3872115 | 610 days ago | 20 wei | ||||
| 3872115 | 610 days ago | 30 wei | ||||
| 3872115 | 610 days ago | 30 wei | ||||
| 3872115 | 610 days ago | 50 wei | ||||
| 3872115 | 610 days ago | 40 wei | ||||
| 3872115 | 610 days ago | 50 wei | ||||
| 3872110 | 610 days ago | 30 wei | ||||
| 3872110 | 610 days ago | 50 wei | ||||
| 3872110 | 610 days ago | 20 wei | ||||
| 3872110 | 610 days ago | 50 wei | ||||
| 3872110 | 610 days ago | 30 wei | ||||
| 3872110 | 610 days ago | 50 wei | ||||
| 3872110 | 610 days ago | 30 wei | ||||
| 3872105 | 610 days ago | 40 wei |
Cross-Chain Transactions
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "ERC721A/ERC721A.sol";
import "./interfaces/IBlast.sol";
import "./interfaces/IBlastPoints.sol";
import "openzeppelin-contracts/contracts/access/Ownable.sol";
import "openzeppelin-contracts/contracts/security/ReentrancyGuard.sol";
import "openzeppelin-contracts/contracts/utils/Strings.sol";
contract GoldenHorse is Ownable, ERC721A, ReentrancyGuard {
uint256 public constant MAX_MINT_COUNT = 7;
uint256 public maxSupply = 1001;
uint256 public constant PUBLIC_SALE_PRICE = 0.07 ether;
bool public publicSaleOn;
bool public stakingOpen;
IBlast public constant BLAST =
IBlast(0x4300000000000000000000000000000000000002);
mapping(address => uint256) public publicMintCount;
mapping(uint256 => address) public stakedTokenOwner;
mapping(address => uint256[]) public stakedTokenIds;
mapping(uint256 => mapping(address => uint256)) public leaderboards;
/* Points Details */
uint256 public constant POINTS_PER_INTERVAL = 50;
uint256 public constant STAKE_BONUS = 1;
uint256 public constant POINTS_INTERVAL = 5 minutes;
uint256 public constant POINTS_BONUS_INTERVAL = 48;
address public BLAST_POINTS = 0x2536FE9ab3F511540F2f9e2eC2A805005C3Dd800;
uint64 public lastSnapshot = 0;
uint256 public leaderboardIndex = 0;
// metadata URI
string private _baseTokenURI;
constructor() ERC721A("Golden Horse", "Golden Horse") {
// BLAST.configureClaimableGas();
_baseTokenURI = "ipfs://QmPJLNeo6bwv7i3aQQv1XM7QZfZXmEbL67U4DtmshePRMJ/";
}
function publicSaleMint(uint256 amount) external payable {
require(publicSaleOn, "public sale has not begun yet");
require(amount > 0, "mint must more than 0 token");
require(totalSupply() + amount <= maxSupply, "reached max supply");
require(
publicMintCount[msg.sender] + amount <= MAX_MINT_COUNT,
"reached public sale per mint max amount"
);
publicMintCount[msg.sender] += amount;
_safeMint(msg.sender, amount);
_refundIfOver(PUBLIC_SALE_PRICE * amount);
}
function _refundIfOver(uint256 price) private {
require(
msg.value >= price,
"insufficient wallet balance, please need to send more ETH"
);
if (msg.value > price) {
payable(msg.sender).transfer(msg.value - price);
}
}
function setPublicSale(bool _on) external onlyOwner {
publicSaleOn = _on;
}
function _startTokenId() internal view virtual override returns (uint256) {
return 1;
}
function _baseURI() internal view virtual override returns (string memory) {
return _baseTokenURI;
}
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, Strings.toString(tokenId - 1))
)
: "";
}
function setStakingMode(bool open) external onlyOwner {
stakingOpen = open;
}
function getTokensStaked(
address addr
) external view returns (uint256[] memory) {
return stakedTokenIds[addr];
}
event Staked(address indexed owner, uint256 indexed tokenId);
event Unstaked(address indexed owner, uint256 indexed tokenId);
function stake(uint256[] calldata tokenIds) external {
require(stakingOpen, "staking closed");
for (uint256 i = 0; i < tokenIds.length; i++) {
_stake(tokenIds[i]);
}
}
function unstake(uint256[] calldata tokenIds) external {
for (uint256 i = 0; i < tokenIds.length; i++) {
_unstake(tokenIds[i]);
}
}
function _stake(uint256 tokenId) internal {
require(stakedTokenOwner[tokenId] == address(0), "already staked");
stakedTokenOwner[tokenId] = msg.sender;
stakedTokenIds[msg.sender].push(tokenId);
safeTransferFrom(msg.sender, address(this), tokenId);
emit Staked(msg.sender, tokenId);
}
function _unstake(uint256 tokenId) internal {
address owner = stakedTokenOwner[tokenId];
require(owner == msg.sender, "not stake owner");
uint256 points = getPoints(tokenId);
leaderboards[leaderboardIndex][owner] += points;
safeTransferFrom(address(this), owner, tokenId);
stakedTokenOwner[tokenId] = address(0);
uint256[] storage tokenIds = stakedTokenIds[msg.sender];
for (uint256 i = 0; i < tokenIds.length; i++) {
if (tokenIds[i] != tokenId) continue;
tokenIds[i] = tokenIds[tokenIds.length - 1];
tokenIds.pop();
}
emit Unstaked(owner, tokenId);
}
function getPoints(uint256 tokenId) public view returns (uint256) {
TokenOwnership memory ownership = _ownershipOf(tokenId);
if (ownership.addr != address(this)) return 0;
uint64 stakedTimestamp;
if (ownership.startTimestamp < lastSnapshot) {
stakedTimestamp = lastSnapshot;
} else {
stakedTimestamp = ownership.startTimestamp;
}
uint256 n = (block.timestamp - stakedTimestamp) / POINTS_INTERVAL;
uint256 bonusCount = n / POINTS_BONUS_INTERVAL;
return n * (POINTS_PER_INTERVAL + STAKE_BONUS * bonusCount);
}
function resetSnapshot(uint64 timestamp) external onlyOwner {
lastSnapshot = timestamp;
leaderboardIndex++;
}
/**
* @notice Returns the total points accrued by a user. Includes points from currently staking tokens.
*/
function getUserPoints(address addr) external view returns (uint256) {
uint256 totalPoints = leaderboards[leaderboardIndex][addr];
for (uint256 i = 0; i <= _totalMinted(); i++) {
address stakedOwner = stakedTokenOwner[i];
if (stakedOwner != addr) {
continue;
}
uint256 points = getPoints(i);
totalPoints += points;
}
return totalPoints;
}
function tokensOfOwner(
address owner
) external view returns (uint256[] memory) {
unchecked {
uint256 tokenIdsIdx;
address currOwnershipAddr;
uint256 tokenIdsLength = balanceOf(owner);
uint256[] memory tokenIds = new uint256[](tokenIdsLength);
TokenOwnership memory ownership;
for (
uint256 i = _startTokenId();
tokenIdsIdx != tokenIdsLength;
++i
) {
ownership = _ownershipAt(i);
if (ownership.burned) {
continue;
}
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
tokenIds[tokenIdsIdx++] = i;
}
}
return tokenIds;
}
}
function setBaseURI(string calldata baseURI) external onlyOwner {
_baseTokenURI = baseURI;
}
function withdraw() external onlyOwner nonReentrant {
(bool success, ) = msg.sender.call{value: address(this).balance}("");
require(success, "Transfer failed");
}
function claimGas() external onlyOwner {
BLAST.claimAllGas(address(this), msg.sender);
}
function claimMaxGas() external onlyOwner {
BLAST.claimMaxGas(address(this), msg.sender);
}
function configureBlastPointsOperator(address operator) external onlyOwner {
IBlastPoints(BLAST_POINTS).configurePointsOperator(operator);
}
function onERC721Received(
address /* operator */,
address /* from */,
uint256 /* tokenId */,
bytes calldata /* data */
) external pure returns (bytes4) {
return this.onERC721Received.selector;
}
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.3.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
/**
* @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()`.
*
* The `_sequentialUpTo()` function can be overriden to enable spot mints
* (i.e. non-consecutive mints) for `tokenId`s greater than `_sequentialUpTo()`.
*
* 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 {
// Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
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;
// The amount of tokens minted above `_sequentialUpTo()`.
// We call these spot mints (i.e. non-sequential mints).
uint256 private _spotMinted;
// =============================================================
// CONSTRUCTOR
// =============================================================
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector);
}
// =============================================================
// TOKEN COUNTING OPERATIONS
// =============================================================
/**
* @dev Returns the starting token ID for sequential mints.
*
* Override this function to change the starting token ID for sequential mints.
*
* Note: The value returned must never change after any tokens have been minted.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the maximum token ID (inclusive) for sequential mints.
*
* Override this function to return a value less than 2**256 - 1,
* but greater than `_startTokenId()`, to enable spot (non-sequential) mints.
*
* Note: The value returned must never change after any tokens have been minted.
*/
function _sequentialUpTo() internal view virtual returns (uint256) {
return type(uint256).max;
}
/**
* @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 result) {
// Counter underflow is impossible as `_burnCounter` cannot be incremented
// more than `_currentIndex + _spotMinted - _startTokenId()` times.
unchecked {
// With spot minting, the intermediate `result` can be temporarily negative,
// and the computation must be unchecked.
result = _currentIndex - _burnCounter - _startTokenId();
if (_sequentialUpTo() != type(uint256).max) result += _spotMinted;
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view virtual returns (uint256 result) {
// Counter underflow is impossible as `_currentIndex` does not decrement,
// and it is initialized to `_startTokenId()`.
unchecked {
result = _currentIndex - _startTokenId();
if (_sequentialUpTo() != type(uint256).max) result += _spotMinted;
}
}
/**
* @dev Returns the total number of tokens burned.
*/
function _totalBurned() internal view virtual returns (uint256) {
return _burnCounter;
}
/**
* @dev Returns the total number of tokens that are spot-minted.
*/
function _totalSpotMinted() internal view virtual returns (uint256) {
return _spotMinted;
}
// =============================================================
// 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.selector);
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.selector);
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 Returns whether the ownership slot at `index` is initialized.
* An uninitialized slot does not necessarily mean that the slot has no owner.
*/
function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
return _packedOwnerships[index] != 0;
}
/**
* @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);
}
}
/**
* @dev Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
if (_startTokenId() <= tokenId) {
packed = _packedOwnerships[tokenId];
if (tokenId > _sequentialUpTo()) {
if (_packedOwnershipExists(packed)) return packed;
_revert(OwnerQueryForNonexistentToken.selector);
}
// If the data at the starting slot does not exist, start the scan.
if (packed == 0) {
if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
// 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, `tokenId` will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed will be zero.
for (;;) {
unchecked {
packed = _packedOwnerships[--tokenId];
}
if (packed == 0) continue;
if (packed & _BITMASK_BURNED == 0) return packed;
// Otherwise, the token is burned, and we must revert.
// This handles the case of batch burned tokens, where only the burned bit
// of the starting slot is set, and remaining slots are left uninitialized.
_revert(OwnerQueryForNonexistentToken.selector);
}
}
// Otherwise, the data exists and we can skip the scan.
// This is possible because we have already achieved the target condition.
// This saves 2143 gas on transfers of initialized tokens.
// If the token is not burned, return `packed`. Otherwise, revert.
if (packed & _BITMASK_BURNED == 0) return packed;
}
_revert(OwnerQueryForNonexistentToken.selector);
}
/**
* @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. See {ERC721A-_approve}.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
*/
function approve(address to, uint256 tokenId) public payable virtual override {
_approve(to, tokenId, true);
}
/**
* @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.selector);
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 {
_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 result) {
if (_startTokenId() <= tokenId) {
if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]);
if (tokenId < _currentIndex) {
uint256 packed;
while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
result = packed & _BITMASK_BURNED == 0;
}
}
}
/**
* @dev Returns whether `packed` represents a token that exists.
*/
function _packedOwnershipExists(uint256 packed) private pure returns (bool result) {
assembly {
// The following is equivalent to `owner != address(0) && burned == false`.
// Symbolically tested.
result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_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].value`.
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 payable virtual override {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
// Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));
if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);
(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.selector);
_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;
}
}
}
}
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
assembly {
// 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.
from, // `from`.
toMasked, // `to`.
tokenId // `tokenId`.
)
}
if (toMasked == 0) _revert(TransferToZeroAddress.selector);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public payable 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 payable virtual override {
transferFrom(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
_revert(TransferToNonERC721ReceiverImplementer.selector);
}
}
/**
* @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.selector);
}
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.selector);
_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:
// - `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)
);
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
if (toMasked == 0) _revert(MintToZeroAddress.selector);
uint256 end = startTokenId + quantity;
uint256 tokenId = startTokenId;
if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);
do {
assembly {
// 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`.
tokenId // `tokenId`.
)
}
// The `!=` check ensures that large values of `quantity`
// that overflows uint256 will make the loop run out of gas.
} while (++tokenId != end);
_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.selector);
if (quantity == 0) _revert(MintZeroQuantity.selector);
if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);
_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)
);
if (startTokenId + quantity - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);
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.selector);
}
} while (index < end);
// This prevents reentrancy to `_safeMint`.
// It does not prevent reentrancy to `_safeMintSpot`.
if (_currentIndex != end) revert();
}
}
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, '');
}
/**
* @dev Mints a single token at `tokenId`.
*
* Note: A spot-minted `tokenId` that has been burned can be re-minted again.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` must be greater than `_sequentialUpTo()`.
* - `tokenId` must not exist.
*
* Emits a {Transfer} event for each mint.
*/
function _mintSpot(address to, uint256 tokenId) internal virtual {
if (tokenId <= _sequentialUpTo()) _revert(SpotMintTokenIdTooSmall.selector);
uint256 prevOwnershipPacked = _packedOwnerships[tokenId];
if (_packedOwnershipExists(prevOwnershipPacked)) _revert(TokenAlreadyExists.selector);
_beforeTokenTransfers(address(0), to, tokenId, 1);
// Overflows are incredibly unrealistic.
// The `numberMinted` for `to` is incremented by 1, and has a max limit of 2**64 - 1.
// `_spotMinted` is incremented by 1, and has a max limit of 2**256 - 1.
unchecked {
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `true` (as `quantity == 1`).
_packedOwnerships[tokenId] = _packOwnershipData(
to,
_nextInitializedFlag(1) | _nextExtraData(address(0), to, prevOwnershipPacked)
);
// Updates:
// - `balance += 1`.
// - `numberMinted += 1`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += (1 << _BITPOS_NUMBER_MINTED) | 1;
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
if (toMasked == 0) _revert(MintToZeroAddress.selector);
assembly {
// 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`.
tokenId // `tokenId`.
)
}
++_spotMinted;
}
_afterTokenTransfers(address(0), to, tokenId, 1);
}
/**
* @dev Safely mints a single token at `tokenId`.
*
* Note: A spot-minted `tokenId` that has been burned can be re-minted again.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}.
* - `tokenId` must be greater than `_sequentialUpTo()`.
* - `tokenId` must not exist.
*
* See {_mintSpot}.
*
* Emits a {Transfer} event.
*/
function _safeMintSpot(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mintSpot(to, tokenId);
unchecked {
if (to.code.length != 0) {
uint256 currentSpotMinted = _spotMinted;
if (!_checkContractOnERC721Received(address(0), to, tokenId, _data)) {
_revert(TransferToNonERC721ReceiverImplementer.selector);
}
// This prevents reentrancy to `_safeMintSpot`.
// It does not prevent reentrancy to `_safeMint`.
if (_spotMinted != currentSpotMinted) revert();
}
}
}
/**
* @dev Equivalent to `_safeMintSpot(to, tokenId, '')`.
*/
function _safeMintSpot(address to, uint256 tokenId) internal virtual {
_safeMintSpot(to, tokenId, '');
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @dev Equivalent to `_approve(to, tokenId, false)`.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_approve(to, tokenId, false);
}
/**
* @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:
*
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
bool approvalCheck
) internal virtual {
address owner = ownerOf(tokenId);
if (approvalCheck && _msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
_revert(ApprovalCallerNotOwnerNorApproved.selector);
}
_tokenApprovals[tokenId].value = to;
emit Approval(owner, to, tokenId);
}
// =============================================================
// 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.selector);
}
_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 + _spotMinted` 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.selector);
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 str) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit), but
// we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
// We will need 1 word for the trailing zeros padding, 1 word for the length,
// and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
let m := add(mload(0x40), 0xa0)
// Update the free memory pointer to allocate.
mstore(0x40, m)
// Assign the `str` to the end.
str := sub(m, 0x20)
// Zeroize the slot after the string.
mstore(str, 0)
// Cache the end of the memory to calculate the length later.
let end := str
// We write the string from rightmost digit to leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// prettier-ignore
for { let temp := value } 1 {} {
str := sub(str, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(str, add(48, mod(temp, 10)))
// Keep dividing `temp` until zero.
temp := div(temp, 10)
// prettier-ignore
if iszero(temp) { break }
}
let length := sub(end, str)
// Move the pointer 32 bytes leftwards to make room for the length.
str := sub(str, 0x20)
// Store the length.
mstore(str, length)
}
}
/**
* @dev For more efficient reverts.
*/
function _revert(bytes4 errorSelector) internal pure {
assembly {
mstore(0x00, errorSelector)
revert(0x00, 0x04)
}
}
}// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.20;
enum YieldMode {
AUTOMATIC,
VOID,
CLAIMABLE
}
enum GasMode {
VOID,
CLAIMABLE
}
interface IBlast {
// configure
function configureContract(
address contractAddress,
YieldMode _yield,
GasMode gasMode,
address governor
) external;
function configure(
YieldMode _yield,
GasMode gasMode,
address governor
) external;
// base configuration options
function configureClaimableYield() external;
function configureClaimableYieldOnBehalf(address contractAddress) external;
function configureAutomaticYield() external;
function configureAutomaticYieldOnBehalf(address contractAddress) external;
function configureVoidYield() external;
function configureVoidYieldOnBehalf(address contractAddress) external;
function configureClaimableGas() external;
function configureClaimableGasOnBehalf(address contractAddress) external;
function configureVoidGas() external;
function configureVoidGasOnBehalf(address contractAddress) external;
function configureGovernor(address _governor) external;
function configureGovernorOnBehalf(
address _newGovernor,
address contractAddress
) external;
// claim yield
function claimYield(
address contractAddress,
address recipientOfYield,
uint256 amount
) external returns (uint256);
function claimAllYield(
address contractAddress,
address recipientOfYield
) external returns (uint256);
// claim gas
function claimAllGas(
address contractAddress,
address recipientOfGas
) external returns (uint256);
function claimGasAtMinClaimRate(
address contractAddress,
address recipientOfGas,
uint256 minClaimRateBips
) external returns (uint256);
function claimMaxGas(
address contractAddress,
address recipientOfGas
) external returns (uint256);
function claimGas(
address contractAddress,
address recipientOfGas,
uint256 gasToClaim,
uint256 gasSecondsToConsume
) external returns (uint256);
// read functions
function readClaimableYield(
address contractAddress
) external view returns (uint256);
function readYieldConfiguration(
address contractAddress
) external view returns (uint8);
function readGasParams(
address contractAddress
)
external
view
returns (
uint256 etherSeconds,
uint256 etherBalance,
uint256 lastUpdated,
GasMode
);
}// SPDX-License-Identifier: UNLICENSE
pragma solidity ^0.8.20;
interface IBlastPoints {
function configurePointsOperator(address operator) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_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);
}
}// SPDX-License-Identifier: MIT
// 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;
}
}// SPDX-License-Identifier: MIT
// 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);
}
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.3.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();
/**
* 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();
/**
* `_sequentialUpTo()` must be greater than `_startTokenId()`.
*/
error SequentialUpToTooSmall();
/**
* The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`.
*/
error SequentialMintExceedsLimit();
/**
* Spot minting requires a `tokenId` greater than `_sequentialUpTo()`.
*/
error SpotMintTokenIdTooSmall();
/**
* Cannot mint over a token that already exists.
*/
error TokenAlreadyExists();
/**
* The feature is not compatible with spot mints.
*/
error NotCompatibleWithSpotMints();
// =============================================================
// 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 payable;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @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 payable;
/**
* @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 payable;
/**
* @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);
}// SPDX-License-Identifier: MIT
// 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;
}
}{
"remappings": [
"@NFT/=src/",
"ERC721A/=lib/ERC721A/contracts/",
"ds-test/=lib/solmate/lib/ds-test/src/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"solmate/=lib/solmate/src/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "paris",
"viaIR": false,
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","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":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":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Unstaked","type":"event"},{"inputs":[],"name":"BLAST","outputs":[{"internalType":"contract IBlast","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BLAST_POINTS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POINTS_BONUS_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POINTS_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POINTS_PER_INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKE_BONUS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimMaxGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"configureBlastPointsOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getTokensStaked","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getUserPoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSnapshot","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"leaderboardIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"leaderboards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","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":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"timestamp","type":"uint64"}],"name":"resetSnapshot","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_on","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"open","type":"bool"}],"name":"setStakingMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakedTokenIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakedTokenOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526103e9600b55601180546001600160e01b031916732536fe9ab3f511540f2f9e2ec2a805005c3dd800179055600060125534801561004157600080fd5b506040518060400160405280600c81526020016b476f6c64656e20486f72736560a01b8152506040518060400160405280600c81526020016b476f6c64656e20486f72736560a01b8152506100a261009d6100f160201b60201c565b6100f5565b60036100ae83826101e6565b5060046100bb82826101e6565b50506001808055600a555060408051606081019091526036808252612b4a60208301396013906100eb90826101e6565b506102a5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061016f57607f821691505b60208210810361018f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156101e1576000816000526020600020601f850160051c810160208610156101be5750805b601f850160051c820191505b818110156101dd578281556001016101ca565b5050505b505050565b81516001600160401b038111156101ff576101ff610145565b6102138161020d845461015b565b84610195565b602080601f83116001811461024857600084156102305750858301515b600019600386901b1c1916600185901b1785556101dd565b600085815260208120601f198616915b8281101561027757888601518255948401946001909101908401610258565b50858210156102955787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612896806102b46000396000f3fe6080604052600436106102c95760003560e01c80637effd79511610175578063aeefe31f116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610865578063ee0574ef14610885578063f2fde38b1461089a578063fb861ac1146108ba57600080fd5b8063d5abeb011461080f578063d8ad1e6014610825578063e449f3411461084557600080fd5b8063aeefe31f1461077f578063b2b8c93f1461079f578063b3ab66b0146107b4578063b88d4fde146107c7578063c87b56dd146107da578063cdf65306146107fa57600080fd5b806396330b5f1161012e57806396330b5f146106c257806397d75776146106ef578063a22cb4651461070a578063a95d6b1c1461072a578063a967eee41461073f578063ad10282a1461075f57600080fd5b80637effd795146105f95780638462151c1461062f5780638593d6d91461064f5780638da5cb5b1461066f57806395b743161461068d57806395d89b41146106ad57600080fd5b8063387602981161023457806352eb7796116101ed5780636352211e116101c75780636352211e1461058a57806370a08231146105aa578063715018a6146105ca5780637cd95912146105df57600080fd5b806352eb77961461051d57806355f804b31461054a5780635aca1bb61461056a57600080fd5b8063387602981461048a5780633ccfd60b146104a957806342842e0e146104be578063428a1b1c146104d157806346a2a37d146104e75780634b8f9025146104fd57600080fd5b8063150b7a0211610286578063150b7a02146103bb57806318160ddd14610400578063205efaeb1461041557806323b872dd1461042a57806325a2f4161461043d5780633677a7021461045257600080fd5b806301ffc9a7146102ce57806306fdde031461030357806307e89ec014610325578063081812fc1461034e578063095ea7b3146103865780630fbf0a931461039b575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046120c4565b6108f9565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061031861094b565b6040516102fa9190612131565b34801561033157600080fd5b5061034066f8b0a10e47000081565b6040519081526020016102fa565b34801561035a57600080fd5b5061036e610369366004612144565b6109dd565b6040516001600160a01b0390911681526020016102fa565b610399610394366004612174565b610a18565b005b3480156103a757600080fd5b506103996103b636600461219e565b610a28565b3480156103c757600080fd5b506103e76103d636600461225a565b630a85bd0160e11b95945050505050565b6040516001600160e01b031990911681526020016102fa565b34801561040c57600080fd5b50610340610aae565b34801561042157600080fd5b50610340603281565b6103996104383660046122c8565b610ace565b34801561044957600080fd5b50610340603081565b34801561045e57600080fd5b5061034061046d366004612304565b601060209081526000928352604080842090915290825290205481565b34801561049657600080fd5b50600c546102ee90610100900460ff1681565b3480156104b557600080fd5b50610399610c33565b6103996104cc3660046122c8565b610d46565b3480156104dd57600080fd5b5061034061012c81565b3480156104f357600080fd5b5061034060125481565b34801561050957600080fd5b5060115461036e906001600160a01b031681565b34801561052957600080fd5b5061053d610538366004612330565b610d61565b6040516102fa919061234b565b34801561055657600080fd5b50610399610565366004612383565b610dcd565b34801561057657600080fd5b506103996105853660046123d4565b610e04565b34801561059657600080fd5b5061036e6105a5366004612144565b610e41565b3480156105b657600080fd5b506103406105c5366004612330565b610e4c565b3480156105d657600080fd5b50610399610e91565b3480156105eb57600080fd5b50600c546102ee9060ff1681565b34801561060557600080fd5b5061036e610614366004612144565b600e602052600090815260409020546001600160a01b031681565b34801561063b57600080fd5b5061053d61064a366004612330565b610ec7565b34801561065b57600080fd5b5061039961066a366004612330565b610fcf565b34801561067b57600080fd5b506000546001600160a01b031661036e565b34801561069957600080fd5b506103996106a83660046123ef565b61105b565b3480156106b957600080fd5b506103186110c2565b3480156106ce57600080fd5b506103406106dd366004612330565b600d6020526000908152604090205481565b3480156106fb57600080fd5b5061036e6002604360981b0181565b34801561071657600080fd5b50610399610725366004612418565b6110d1565b34801561073657600080fd5b5061039961113d565b34801561074b57600080fd5b5061034061075a366004612144565b6111d9565b34801561076b57600080fd5b5061034061077a366004612174565b6112a4565b34801561078b57600080fd5b5061034061079a366004612330565b6112d5565b3480156107ab57600080fd5b50610399611369565b6103996107c2366004612144565b6113c3565b6103996107d5366004612458565b611582565b3480156107e657600080fd5b506103186107f5366004612144565b6115c3565b34801561080657600080fd5b50610340600781565b34801561081b57600080fd5b50610340600b5481565b34801561083157600080fd5b506103996108403660046123d4565b611651565b34801561085157600080fd5b5061039961086036600461219e565b611695565b34801561087157600080fd5b506102ee610880366004612533565b6116c9565b34801561089157600080fd5b50610340600181565b3480156108a657600080fd5b506103996108b5366004612330565b6116f7565b3480156108c657600080fd5b506011546108e190600160a01b90046001600160401b031681565b6040516001600160401b0390911681526020016102fa565b60006301ffc9a760e01b6001600160e01b03198316148061092a57506380ac58cd60e01b6001600160e01b03198316145b806109455750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461095a9061255d565b80601f01602080910402602001604051908101604052809291908181526020018280546109869061255d565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b60006109e88261178f565b6109fc576109fc6333d1c03960e21b6117dd565b506000908152600760205260409020546001600160a01b031690565b610a24828260016117e7565b5050565b600c54610100900460ff16610a755760405162461bcd60e51b815260206004820152600e60248201526d1cdd185ada5b99c818db1bdcd95960921b60448201526064015b60405180910390fd5b60005b81811015610aa957610aa1838383818110610a9557610a95612597565b9050602002013561188a565b600101610a78565b505050565b6000600160025460015403039050600019805b14610acb57600954015b90565b6000610ad98261195c565b6001600160a01b039485169490915081168414610aff57610aff62a1148160e81b6117dd565b60008281526007602052604090208054338082146001600160a01b03881690911417610b4357610b2f86336116c9565b610b4357610b43632ce44b5f60e11b6117dd565b8015610b4e57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610be057600184016000818152600560205260408120549003610bde576001548114610bde5760008181526005602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a480600003610c2a57610c2a633a954ecd60e21b6117dd565b50505050505050565b6000546001600160a01b03163314610c5d5760405162461bcd60e51b8152600401610a6c906125ad565b6002600a5403610caf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6c565b6002600a55604051600090339047908381818185875af1925050503d8060008114610cf6576040519150601f19603f3d011682016040523d82523d6000602084013e610cfb565b606091505b5050905080610d3e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610a6c565b506001600a55565b610aa983838360405180602001604052806000815250611582565b6001600160a01b0381166000908152600f6020908152604091829020805483518184028101840190945280845260609392830182828015610dc157602002820191906000526020600020905b815481526020019060010190808311610dad575b50505050509050919050565b6000546001600160a01b03163314610df75760405162461bcd60e51b8152600401610a6c906125ad565b6013610aa9828483612632565b6000546001600160a01b03163314610e2e5760405162461bcd60e51b8152600401610a6c906125ad565b600c805460ff1916911515919091179055565b60006109458261195c565b60006001600160a01b038216610e6c57610e6c6323d3ad8160e21b6117dd565b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610a6c906125ad565b610ec560006119fd565b565b60606000806000610ed785610e4c565b90506000816001600160401b03811115610ef357610ef3612442565b604051908082528060200260200182016040528015610f1c578160200160208202803683370190505b509050610f4960408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610fc357610f5c81611a4d565b91508160400151610fbb5781516001600160a01b031615610f7c57815194505b876001600160a01b0316856001600160a01b031603610fbb5780838780600101985081518110610fae57610fae612597565b6020026020010181815250505b600101610f4c565b50909695505050505050565b6000546001600160a01b03163314610ff95760405162461bcd60e51b8152600401610a6c906125ad565b6011546040516336b91f2b60e01b81526001600160a01b038381166004830152909116906336b91f2b90602401600060405180830381600087803b15801561104057600080fd5b505af1158015611054573d6000803e3d6000fd5b5050505050565b6000546001600160a01b031633146110855760405162461bcd60e51b8152600401610a6c906125ad565b6011805467ffffffffffffffff60a01b1916600160a01b6001600160401b03841602179055601280549060006110ba83612707565b919050555050565b60606004805461095a9061255d565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111675760405162461bcd60e51b8152600401610a6c906125ad565b604051634aa7d2f760e11b81523060048201523360248201526002604360981b019063954fa5ee906044015b6020604051808303816000875af11580156111b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d69190612720565b50565b6000806111e583611a89565b80519091506001600160a01b031630146112025750600092915050565b60115460208201516000916001600160401b03600160a01b9091048116911610156112405750601154600160a01b90046001600160401b0316611247565b5060208101515b600061012c61125f6001600160401b03841642612739565b6112699190612762565b90506000611278603083612762565b9050611285816001612776565b61129090603261278d565b61129a9083612776565b9695505050505050565b600f60205281600052604060002081815481106112c057600080fd5b90600052602060002001600091509150505481565b60125460009081526010602090815260408083206001600160a01b0385168452909152812054815b611305611abe565b8111611362576000818152600e60205260409020546001600160a01b0390811690851681146113345750611350565b600061133f836111d9565b905061134b818561278d565b935050505b8061135a81612707565b9150506112fd565b5092915050565b6000546001600160a01b031633146113935760405162461bcd60e51b8152600401610a6c906125ad565b60405163662aa11d60e01b81523060048201523360248201526002604360981b019063662aa11d90604401611193565b600c5460ff166114155760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610a6c565b600081116114655760405162461bcd60e51b815260206004820152601b60248201527f6d696e74206d757374206d6f7265207468616e203020746f6b656e00000000006044820152606401610a6c565b600b5481611471610aae565b61147b919061278d565b11156114be5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610a6c565b336000908152600d60205260409020546007906114dc90839061278d565b111561153a5760405162461bcd60e51b815260206004820152602760248201527f72656163686564207075626c69632073616c6520706572206d696e74206d617860448201526608185b5bdd5b9d60ca1b6064820152608401610a6c565b336000908152600d60205260408120805483929061155990849061278d565b9091555061156990503382611ace565b6111d661157d8266f8b0a10e470000612776565b611ae8565b61158d848484610ace565b6001600160a01b0383163b156115bd576115a984848484611b9c565b6115bd576115bd6368d2bf6b60e11b6117dd565b50505050565b60606115ce8261178f565b6115eb57604051630a14c4b560e41b815260040160405180910390fd5b60006115f5611c7f565b90508051600003611615576040518060200160405280600081525061164a565b80611629611624600186612739565b611c8e565b60405160200161163a9291906127a0565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461167b5760405162461bcd60e51b8152600401610a6c906125ad565b600c80549115156101000261ff0019909216919091179055565b60005b81811015610aa9576116c18383838181106116b5576116b5612597565b90506020020135611d8e565b600101611698565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146117215760405162461bcd60e51b8152600401610a6c906125ad565b6001600160a01b0381166117865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6c565b6111d6816119fd565b6000816001116117d8576001548210156117d85760005b50600082815260056020526040812054908190036117ce576117c7836127cf565b92506117a6565b600160e01b161590505b919050565b8060005260046000fd5b60006117f283610e41565b905081801561180a5750336001600160a01b03821614155b1561182d5761181981336116c9565b61182d5761182d6367d9dca160e11b6117dd565b60008381526007602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6000818152600e60205260409020546001600160a01b0316156118e05760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481cdd185ad95960921b6044820152606401610a6c565b6000818152600e6020908152604080832080546001600160a01b03191633908117909155808452600f83529083208054600181018255908452919092200182905561192c903083610d46565b604051819033907f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d90600090a350565b6000816001116119ed5750600081815260056020526040902054806000036119da57600154821061199757611997636f96cda160e11b6117dd565b5b5060001901600081815260056020526040902054801561199857600160e01b81166000036119c557919050565b6119d5636f96cda160e11b6117dd565b611998565b600160e01b81166000036119ed57919050565b6117d8636f96cda160e11b6117dd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526005602052604090205461094590611f4b565b604080516080810182526000808252602082018190529181018290526060810191909152610945611ab98361195c565b611f4b565b6001546000199081019080610ac1565b610a24828260405180602001604052806000815250611f92565b80341015611b5e5760405162461bcd60e51b815260206004820152603960248201527f696e73756666696369656e742077616c6c65742062616c616e63652c20706c6560448201527f617365206e65656420746f2073656e64206d6f726520455448000000000000006064820152608401610a6c565b803411156111d657336108fc611b748334612739565b6040518115909202916000818181858888f19350505050158015610a24573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bd19033908990889088906004016127e6565b6020604051808303816000875af1925050508015611c0c575060408051601f3d908101601f19168201909252611c0991810190612819565b60015b611c61573d808015611c3a576040519150601f19603f3d011682016040523d82523d6000602084013e611c3f565b606091505b508051600003611c5957611c596368d2bf6b60e11b6117dd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606013805461095a9061255d565b606081600003611cb55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cdf5780611cc981612707565b9150611cd89050600a83612762565b9150611cb9565b6000816001600160401b03811115611cf957611cf9612442565b6040519080825280601f01601f191660200182016040528015611d23576020820181803683370190505b5090505b8415611c7757611d38600183612739565b9150611d45600a86612836565b611d5090603061278d565b60f81b818381518110611d6557611d65612597565b60200101906001600160f81b031916908160001a905350611d87600a86612762565b9450611d27565b6000818152600e60205260409020546001600160a01b0316338114611de75760405162461bcd60e51b815260206004820152600f60248201526e3737ba1039ba30b5b29037bbb732b960891b6044820152606401610a6c565b6000611df2836111d9565b60125460009081526010602090815260408083206001600160a01b0387168452909152812080549293508392909190611e2c90849061278d565b90915550611e3d9050308385610d46565b6000838152600e6020908152604080832080546001600160a01b0319169055338352600f9091528120905b8154811015611f0e5784828281548110611e8457611e84612597565b906000526020600020015403611f065781548290611ea490600190612739565b81548110611eb457611eb4612597565b9060005260206000200154828281548110611ed157611ed1612597565b906000526020600020018190555081805480611eef57611eef61284a565b600190038181906000526020600020016000905590555b600101611e68565b5060405184906001600160a01b038516907f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f7590600090a350505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b611f9c8383611fef565b6001600160a01b0383163b15610aa9576001548281035b611fc66000868380600101945086611b9c565b611fda57611fda6368d2bf6b60e11b6117dd565b818110611fb357816001541461105457600080fd5b600154600082900361200b5761200b63b562e8dd60e01b6117dd565b60008181526005602090815260408083206001600160a01b0387164260a01b6001881460e11b1781179091558084526006909252822080546801000000000000000186020190559081900361206957612069622e076360e81b6117dd565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a481816001019150810361206e575060015550505050565b6001600160e01b0319811681146111d657600080fd5b6000602082840312156120d657600080fd5b813561164a816120ae565b60005b838110156120fc5781810151838201526020016120e4565b50506000910152565b6000815180845261211d8160208601602086016120e1565b601f01601f19169290920160200192915050565b60208152600061164a6020830184612105565b60006020828403121561215657600080fd5b5035919050565b80356001600160a01b03811681146117d857600080fd5b6000806040838503121561218757600080fd5b6121908361215d565b946020939093013593505050565b600080602083850312156121b157600080fd5b82356001600160401b03808211156121c857600080fd5b818501915085601f8301126121dc57600080fd5b8135818111156121eb57600080fd5b8660208260051b850101111561220057600080fd5b60209290920196919550909350505050565b60008083601f84011261222457600080fd5b5081356001600160401b0381111561223b57600080fd5b60208301915083602082850101111561225357600080fd5b9250929050565b60008060008060006080868803121561227257600080fd5b61227b8661215d565b94506122896020870161215d565b93506040860135925060608601356001600160401b038111156122ab57600080fd5b6122b788828901612212565b969995985093965092949392505050565b6000806000606084860312156122dd57600080fd5b6122e68461215d565b92506122f46020850161215d565b9150604084013590509250925092565b6000806040838503121561231757600080fd5b823591506123276020840161215d565b90509250929050565b60006020828403121561234257600080fd5b61164a8261215d565b6020808252825182820181905260009190848201906040850190845b81811015610fc357835183529284019291840191600101612367565b6000806020838503121561239657600080fd5b82356001600160401b038111156123ac57600080fd5b6123b885828601612212565b90969095509350505050565b803580151581146117d857600080fd5b6000602082840312156123e657600080fd5b61164a826123c4565b60006020828403121561240157600080fd5b81356001600160401b038116811461164a57600080fd5b6000806040838503121561242b57600080fd5b6124348361215d565b9150612327602084016123c4565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561246e57600080fd5b6124778561215d565b93506124856020860161215d565b92506040850135915060608501356001600160401b03808211156124a857600080fd5b818701915087601f8301126124bc57600080fd5b8135818111156124ce576124ce612442565b604051601f8201601f19908116603f011681019083821181831017156124f6576124f6612442565b816040528281528a602084870101111561250f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561254657600080fd5b61254f8361215d565b91506123276020840161215d565b600181811c9082168061257157607f821691505b60208210810361259157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610aa9576000816000526020600020601f850160051c8101602086101561260b5750805b601f850160051c820191505b8181101561262a57828155600101612617565b505050505050565b6001600160401b0383111561264957612649612442565b61265d83612657835461255d565b836125e2565b6000601f84116001811461269157600085156126795750838201355b600019600387901b1c1916600186901b178355611054565b600083815260209020601f19861690835b828110156126c257868501358255602094850194600190920191016126a2565b50868210156126df5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b600060018201612719576127196126f1565b5060010190565b60006020828403121561273257600080fd5b5051919050565b81810381811115610945576109456126f1565b634e487b7160e01b600052601260045260246000fd5b6000826127715761277161274c565b500490565b8082028115828204841417610945576109456126f1565b80820180821115610945576109456126f1565b600083516127b28184602088016120e1565b8351908301906127c68183602088016120e1565b01949350505050565b6000816127de576127de6126f1565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061129a90830184612105565b60006020828403121561282b57600080fd5b815161164a816120ae565b6000826128455761284561274c565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220e661c782e64526a5cea58431a10b1e608e7ccce85297d9e93d894586eabb1db664736f6c63430008190033697066733a2f2f516d504a4c4e656f366277763769336151517631584d37515a665a586d45624c3637553444746d73686550524d4a2f
Deployed Bytecode
0x6080604052600436106102c95760003560e01c80637effd79511610175578063aeefe31f116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610865578063ee0574ef14610885578063f2fde38b1461089a578063fb861ac1146108ba57600080fd5b8063d5abeb011461080f578063d8ad1e6014610825578063e449f3411461084557600080fd5b8063aeefe31f1461077f578063b2b8c93f1461079f578063b3ab66b0146107b4578063b88d4fde146107c7578063c87b56dd146107da578063cdf65306146107fa57600080fd5b806396330b5f1161012e57806396330b5f146106c257806397d75776146106ef578063a22cb4651461070a578063a95d6b1c1461072a578063a967eee41461073f578063ad10282a1461075f57600080fd5b80637effd795146105f95780638462151c1461062f5780638593d6d91461064f5780638da5cb5b1461066f57806395b743161461068d57806395d89b41146106ad57600080fd5b8063387602981161023457806352eb7796116101ed5780636352211e116101c75780636352211e1461058a57806370a08231146105aa578063715018a6146105ca5780637cd95912146105df57600080fd5b806352eb77961461051d57806355f804b31461054a5780635aca1bb61461056a57600080fd5b8063387602981461048a5780633ccfd60b146104a957806342842e0e146104be578063428a1b1c146104d157806346a2a37d146104e75780634b8f9025146104fd57600080fd5b8063150b7a0211610286578063150b7a02146103bb57806318160ddd14610400578063205efaeb1461041557806323b872dd1461042a57806325a2f4161461043d5780633677a7021461045257600080fd5b806301ffc9a7146102ce57806306fdde031461030357806307e89ec014610325578063081812fc1461034e578063095ea7b3146103865780630fbf0a931461039b575b600080fd5b3480156102da57600080fd5b506102ee6102e93660046120c4565b6108f9565b60405190151581526020015b60405180910390f35b34801561030f57600080fd5b5061031861094b565b6040516102fa9190612131565b34801561033157600080fd5b5061034066f8b0a10e47000081565b6040519081526020016102fa565b34801561035a57600080fd5b5061036e610369366004612144565b6109dd565b6040516001600160a01b0390911681526020016102fa565b610399610394366004612174565b610a18565b005b3480156103a757600080fd5b506103996103b636600461219e565b610a28565b3480156103c757600080fd5b506103e76103d636600461225a565b630a85bd0160e11b95945050505050565b6040516001600160e01b031990911681526020016102fa565b34801561040c57600080fd5b50610340610aae565b34801561042157600080fd5b50610340603281565b6103996104383660046122c8565b610ace565b34801561044957600080fd5b50610340603081565b34801561045e57600080fd5b5061034061046d366004612304565b601060209081526000928352604080842090915290825290205481565b34801561049657600080fd5b50600c546102ee90610100900460ff1681565b3480156104b557600080fd5b50610399610c33565b6103996104cc3660046122c8565b610d46565b3480156104dd57600080fd5b5061034061012c81565b3480156104f357600080fd5b5061034060125481565b34801561050957600080fd5b5060115461036e906001600160a01b031681565b34801561052957600080fd5b5061053d610538366004612330565b610d61565b6040516102fa919061234b565b34801561055657600080fd5b50610399610565366004612383565b610dcd565b34801561057657600080fd5b506103996105853660046123d4565b610e04565b34801561059657600080fd5b5061036e6105a5366004612144565b610e41565b3480156105b657600080fd5b506103406105c5366004612330565b610e4c565b3480156105d657600080fd5b50610399610e91565b3480156105eb57600080fd5b50600c546102ee9060ff1681565b34801561060557600080fd5b5061036e610614366004612144565b600e602052600090815260409020546001600160a01b031681565b34801561063b57600080fd5b5061053d61064a366004612330565b610ec7565b34801561065b57600080fd5b5061039961066a366004612330565b610fcf565b34801561067b57600080fd5b506000546001600160a01b031661036e565b34801561069957600080fd5b506103996106a83660046123ef565b61105b565b3480156106b957600080fd5b506103186110c2565b3480156106ce57600080fd5b506103406106dd366004612330565b600d6020526000908152604090205481565b3480156106fb57600080fd5b5061036e6002604360981b0181565b34801561071657600080fd5b50610399610725366004612418565b6110d1565b34801561073657600080fd5b5061039961113d565b34801561074b57600080fd5b5061034061075a366004612144565b6111d9565b34801561076b57600080fd5b5061034061077a366004612174565b6112a4565b34801561078b57600080fd5b5061034061079a366004612330565b6112d5565b3480156107ab57600080fd5b50610399611369565b6103996107c2366004612144565b6113c3565b6103996107d5366004612458565b611582565b3480156107e657600080fd5b506103186107f5366004612144565b6115c3565b34801561080657600080fd5b50610340600781565b34801561081b57600080fd5b50610340600b5481565b34801561083157600080fd5b506103996108403660046123d4565b611651565b34801561085157600080fd5b5061039961086036600461219e565b611695565b34801561087157600080fd5b506102ee610880366004612533565b6116c9565b34801561089157600080fd5b50610340600181565b3480156108a657600080fd5b506103996108b5366004612330565b6116f7565b3480156108c657600080fd5b506011546108e190600160a01b90046001600160401b031681565b6040516001600160401b0390911681526020016102fa565b60006301ffc9a760e01b6001600160e01b03198316148061092a57506380ac58cd60e01b6001600160e01b03198316145b806109455750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461095a9061255d565b80601f01602080910402602001604051908101604052809291908181526020018280546109869061255d565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b60006109e88261178f565b6109fc576109fc6333d1c03960e21b6117dd565b506000908152600760205260409020546001600160a01b031690565b610a24828260016117e7565b5050565b600c54610100900460ff16610a755760405162461bcd60e51b815260206004820152600e60248201526d1cdd185ada5b99c818db1bdcd95960921b60448201526064015b60405180910390fd5b60005b81811015610aa957610aa1838383818110610a9557610a95612597565b9050602002013561188a565b600101610a78565b505050565b6000600160025460015403039050600019805b14610acb57600954015b90565b6000610ad98261195c565b6001600160a01b039485169490915081168414610aff57610aff62a1148160e81b6117dd565b60008281526007602052604090208054338082146001600160a01b03881690911417610b4357610b2f86336116c9565b610b4357610b43632ce44b5f60e11b6117dd565b8015610b4e57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610be057600184016000818152600560205260408120549003610bde576001548114610bde5760008181526005602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a480600003610c2a57610c2a633a954ecd60e21b6117dd565b50505050505050565b6000546001600160a01b03163314610c5d5760405162461bcd60e51b8152600401610a6c906125ad565b6002600a5403610caf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6c565b6002600a55604051600090339047908381818185875af1925050503d8060008114610cf6576040519150601f19603f3d011682016040523d82523d6000602084013e610cfb565b606091505b5050905080610d3e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610a6c565b506001600a55565b610aa983838360405180602001604052806000815250611582565b6001600160a01b0381166000908152600f6020908152604091829020805483518184028101840190945280845260609392830182828015610dc157602002820191906000526020600020905b815481526020019060010190808311610dad575b50505050509050919050565b6000546001600160a01b03163314610df75760405162461bcd60e51b8152600401610a6c906125ad565b6013610aa9828483612632565b6000546001600160a01b03163314610e2e5760405162461bcd60e51b8152600401610a6c906125ad565b600c805460ff1916911515919091179055565b60006109458261195c565b60006001600160a01b038216610e6c57610e6c6323d3ad8160e21b6117dd565b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610ebb5760405162461bcd60e51b8152600401610a6c906125ad565b610ec560006119fd565b565b60606000806000610ed785610e4c565b90506000816001600160401b03811115610ef357610ef3612442565b604051908082528060200260200182016040528015610f1c578160200160208202803683370190505b509050610f4960408051608081018252600080825260208201819052918101829052606081019190915290565b60015b838614610fc357610f5c81611a4d565b91508160400151610fbb5781516001600160a01b031615610f7c57815194505b876001600160a01b0316856001600160a01b031603610fbb5780838780600101985081518110610fae57610fae612597565b6020026020010181815250505b600101610f4c565b50909695505050505050565b6000546001600160a01b03163314610ff95760405162461bcd60e51b8152600401610a6c906125ad565b6011546040516336b91f2b60e01b81526001600160a01b038381166004830152909116906336b91f2b90602401600060405180830381600087803b15801561104057600080fd5b505af1158015611054573d6000803e3d6000fd5b5050505050565b6000546001600160a01b031633146110855760405162461bcd60e51b8152600401610a6c906125ad565b6011805467ffffffffffffffff60a01b1916600160a01b6001600160401b03841602179055601280549060006110ba83612707565b919050555050565b60606004805461095a9061255d565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146111675760405162461bcd60e51b8152600401610a6c906125ad565b604051634aa7d2f760e11b81523060048201523360248201526002604360981b019063954fa5ee906044015b6020604051808303816000875af11580156111b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d69190612720565b50565b6000806111e583611a89565b80519091506001600160a01b031630146112025750600092915050565b60115460208201516000916001600160401b03600160a01b9091048116911610156112405750601154600160a01b90046001600160401b0316611247565b5060208101515b600061012c61125f6001600160401b03841642612739565b6112699190612762565b90506000611278603083612762565b9050611285816001612776565b61129090603261278d565b61129a9083612776565b9695505050505050565b600f60205281600052604060002081815481106112c057600080fd5b90600052602060002001600091509150505481565b60125460009081526010602090815260408083206001600160a01b0385168452909152812054815b611305611abe565b8111611362576000818152600e60205260409020546001600160a01b0390811690851681146113345750611350565b600061133f836111d9565b905061134b818561278d565b935050505b8061135a81612707565b9150506112fd565b5092915050565b6000546001600160a01b031633146113935760405162461bcd60e51b8152600401610a6c906125ad565b60405163662aa11d60e01b81523060048201523360248201526002604360981b019063662aa11d90604401611193565b600c5460ff166114155760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610a6c565b600081116114655760405162461bcd60e51b815260206004820152601b60248201527f6d696e74206d757374206d6f7265207468616e203020746f6b656e00000000006044820152606401610a6c565b600b5481611471610aae565b61147b919061278d565b11156114be5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610a6c565b336000908152600d60205260409020546007906114dc90839061278d565b111561153a5760405162461bcd60e51b815260206004820152602760248201527f72656163686564207075626c69632073616c6520706572206d696e74206d617860448201526608185b5bdd5b9d60ca1b6064820152608401610a6c565b336000908152600d60205260408120805483929061155990849061278d565b9091555061156990503382611ace565b6111d661157d8266f8b0a10e470000612776565b611ae8565b61158d848484610ace565b6001600160a01b0383163b156115bd576115a984848484611b9c565b6115bd576115bd6368d2bf6b60e11b6117dd565b50505050565b60606115ce8261178f565b6115eb57604051630a14c4b560e41b815260040160405180910390fd5b60006115f5611c7f565b90508051600003611615576040518060200160405280600081525061164a565b80611629611624600186612739565b611c8e565b60405160200161163a9291906127a0565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461167b5760405162461bcd60e51b8152600401610a6c906125ad565b600c80549115156101000261ff0019909216919091179055565b60005b81811015610aa9576116c18383838181106116b5576116b5612597565b90506020020135611d8e565b600101611698565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146117215760405162461bcd60e51b8152600401610a6c906125ad565b6001600160a01b0381166117865760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6c565b6111d6816119fd565b6000816001116117d8576001548210156117d85760005b50600082815260056020526040812054908190036117ce576117c7836127cf565b92506117a6565b600160e01b161590505b919050565b8060005260046000fd5b60006117f283610e41565b905081801561180a5750336001600160a01b03821614155b1561182d5761181981336116c9565b61182d5761182d6367d9dca160e11b6117dd565b60008381526007602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b6000818152600e60205260409020546001600160a01b0316156118e05760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481cdd185ad95960921b6044820152606401610a6c565b6000818152600e6020908152604080832080546001600160a01b03191633908117909155808452600f83529083208054600181018255908452919092200182905561192c903083610d46565b604051819033907f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d90600090a350565b6000816001116119ed5750600081815260056020526040902054806000036119da57600154821061199757611997636f96cda160e11b6117dd565b5b5060001901600081815260056020526040902054801561199857600160e01b81166000036119c557919050565b6119d5636f96cda160e11b6117dd565b611998565b600160e01b81166000036119ed57919050565b6117d8636f96cda160e11b6117dd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60408051608081018252600080825260208201819052918101829052606081019190915260008281526005602052604090205461094590611f4b565b604080516080810182526000808252602082018190529181018290526060810191909152610945611ab98361195c565b611f4b565b6001546000199081019080610ac1565b610a24828260405180602001604052806000815250611f92565b80341015611b5e5760405162461bcd60e51b815260206004820152603960248201527f696e73756666696369656e742077616c6c65742062616c616e63652c20706c6560448201527f617365206e65656420746f2073656e64206d6f726520455448000000000000006064820152608401610a6c565b803411156111d657336108fc611b748334612739565b6040518115909202916000818181858888f19350505050158015610a24573d6000803e3d6000fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bd19033908990889088906004016127e6565b6020604051808303816000875af1925050508015611c0c575060408051601f3d908101601f19168201909252611c0991810190612819565b60015b611c61573d808015611c3a576040519150601f19603f3d011682016040523d82523d6000602084013e611c3f565b606091505b508051600003611c5957611c596368d2bf6b60e11b6117dd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606013805461095a9061255d565b606081600003611cb55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cdf5780611cc981612707565b9150611cd89050600a83612762565b9150611cb9565b6000816001600160401b03811115611cf957611cf9612442565b6040519080825280601f01601f191660200182016040528015611d23576020820181803683370190505b5090505b8415611c7757611d38600183612739565b9150611d45600a86612836565b611d5090603061278d565b60f81b818381518110611d6557611d65612597565b60200101906001600160f81b031916908160001a905350611d87600a86612762565b9450611d27565b6000818152600e60205260409020546001600160a01b0316338114611de75760405162461bcd60e51b815260206004820152600f60248201526e3737ba1039ba30b5b29037bbb732b960891b6044820152606401610a6c565b6000611df2836111d9565b60125460009081526010602090815260408083206001600160a01b0387168452909152812080549293508392909190611e2c90849061278d565b90915550611e3d9050308385610d46565b6000838152600e6020908152604080832080546001600160a01b0319169055338352600f9091528120905b8154811015611f0e5784828281548110611e8457611e84612597565b906000526020600020015403611f065781548290611ea490600190612739565b81548110611eb457611eb4612597565b9060005260206000200154828281548110611ed157611ed1612597565b906000526020600020018190555081805480611eef57611eef61284a565b600190038181906000526020600020016000905590555b600101611e68565b5060405184906001600160a01b038516907f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f7590600090a350505050565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b611f9c8383611fef565b6001600160a01b0383163b15610aa9576001548281035b611fc66000868380600101945086611b9c565b611fda57611fda6368d2bf6b60e11b6117dd565b818110611fb357816001541461105457600080fd5b600154600082900361200b5761200b63b562e8dd60e01b6117dd565b60008181526005602090815260408083206001600160a01b0387164260a01b6001881460e11b1781179091558084526006909252822080546801000000000000000186020190559081900361206957612069622e076360e81b6117dd565b818301825b808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a481816001019150810361206e575060015550505050565b6001600160e01b0319811681146111d657600080fd5b6000602082840312156120d657600080fd5b813561164a816120ae565b60005b838110156120fc5781810151838201526020016120e4565b50506000910152565b6000815180845261211d8160208601602086016120e1565b601f01601f19169290920160200192915050565b60208152600061164a6020830184612105565b60006020828403121561215657600080fd5b5035919050565b80356001600160a01b03811681146117d857600080fd5b6000806040838503121561218757600080fd5b6121908361215d565b946020939093013593505050565b600080602083850312156121b157600080fd5b82356001600160401b03808211156121c857600080fd5b818501915085601f8301126121dc57600080fd5b8135818111156121eb57600080fd5b8660208260051b850101111561220057600080fd5b60209290920196919550909350505050565b60008083601f84011261222457600080fd5b5081356001600160401b0381111561223b57600080fd5b60208301915083602082850101111561225357600080fd5b9250929050565b60008060008060006080868803121561227257600080fd5b61227b8661215d565b94506122896020870161215d565b93506040860135925060608601356001600160401b038111156122ab57600080fd5b6122b788828901612212565b969995985093965092949392505050565b6000806000606084860312156122dd57600080fd5b6122e68461215d565b92506122f46020850161215d565b9150604084013590509250925092565b6000806040838503121561231757600080fd5b823591506123276020840161215d565b90509250929050565b60006020828403121561234257600080fd5b61164a8261215d565b6020808252825182820181905260009190848201906040850190845b81811015610fc357835183529284019291840191600101612367565b6000806020838503121561239657600080fd5b82356001600160401b038111156123ac57600080fd5b6123b885828601612212565b90969095509350505050565b803580151581146117d857600080fd5b6000602082840312156123e657600080fd5b61164a826123c4565b60006020828403121561240157600080fd5b81356001600160401b038116811461164a57600080fd5b6000806040838503121561242b57600080fd5b6124348361215d565b9150612327602084016123c4565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561246e57600080fd5b6124778561215d565b93506124856020860161215d565b92506040850135915060608501356001600160401b03808211156124a857600080fd5b818701915087601f8301126124bc57600080fd5b8135818111156124ce576124ce612442565b604051601f8201601f19908116603f011681019083821181831017156124f6576124f6612442565b816040528281528a602084870101111561250f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561254657600080fd5b61254f8361215d565b91506123276020840161215d565b600181811c9082168061257157607f821691505b60208210810361259157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610aa9576000816000526020600020601f850160051c8101602086101561260b5750805b601f850160051c820191505b8181101561262a57828155600101612617565b505050505050565b6001600160401b0383111561264957612649612442565b61265d83612657835461255d565b836125e2565b6000601f84116001811461269157600085156126795750838201355b600019600387901b1c1916600186901b178355611054565b600083815260209020601f19861690835b828110156126c257868501358255602094850194600190920191016126a2565b50868210156126df5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b600060018201612719576127196126f1565b5060010190565b60006020828403121561273257600080fd5b5051919050565b81810381811115610945576109456126f1565b634e487b7160e01b600052601260045260246000fd5b6000826127715761277161274c565b500490565b8082028115828204841417610945576109456126f1565b80820180821115610945576109456126f1565b600083516127b28184602088016120e1565b8351908301906127c68183602088016120e1565b01949350505050565b6000816127de576127de6126f1565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061129a90830184612105565b60006020828403121561282b57600080fd5b815161164a816120ae565b6000826128455761284561274c565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220e661c782e64526a5cea58431a10b1e608e7ccce85297d9e93d894586eabb1db664736f6c63430008190033
Net Worth in USD
Net Worth in ETH
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.