Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 245 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Buy | 21097129 | 52 days ago | IN | 0 ETH | 0.0003262 | ||||
Buy | 20956009 | 71 days ago | IN | 0 ETH | 0.00079432 | ||||
Buy | 20955271 | 71 days ago | IN | 0 ETH | 0.00129002 | ||||
Buy | 20877873 | 82 days ago | IN | 0 ETH | 0.00063407 | ||||
Buy | 20869480 | 83 days ago | IN | 0 ETH | 0.00151632 | ||||
Buy | 20854527 | 85 days ago | IN | 0 ETH | 0.00058494 | ||||
Buy | 20854216 | 86 days ago | IN | 0 ETH | 0.0004793 | ||||
Buy | 20725724 | 103 days ago | IN | 0 ETH | 0.00017453 | ||||
Buy | 20725709 | 103 days ago | IN | 0 ETH | 0.00018765 | ||||
Buy | 20725695 | 103 days ago | IN | 0 ETH | 0.00018957 | ||||
Buy | 20725633 | 103 days ago | IN | 0 ETH | 0.00016114 | ||||
Buy | 20725278 | 104 days ago | IN | 0 ETH | 0.00019087 | ||||
Buy | 20725262 | 104 days ago | IN | 0 ETH | 0.00017714 | ||||
Buy | 20649231 | 114 days ago | IN | 0 ETH | 0.00010979 | ||||
Buy | 20554419 | 127 days ago | IN | 0 ETH | 0.00010566 | ||||
Buy | 20553435 | 128 days ago | IN | 0 ETH | 0.00010616 | ||||
Buy | 20474843 | 138 days ago | IN | 0 ETH | 0.00011915 | ||||
Buy | 20466170 | 140 days ago | IN | 0 ETH | 0.00035539 | ||||
Buy | 20389467 | 150 days ago | IN | 0 ETH | 0.00029094 | ||||
Buy | 20383169 | 151 days ago | IN | 0 ETH | 0.00039687 | ||||
Buy | 20355395 | 155 days ago | IN | 0 ETH | 0.00029058 | ||||
Buy | 20355377 | 155 days ago | IN | 0 ETH | 0.0003392 | ||||
Buy | 20353918 | 155 days ago | IN | 0 ETH | 0.00019662 | ||||
Buy | 20353915 | 155 days ago | IN | 0 ETH | 0.00022583 | ||||
Buy | 19609034 | 259 days ago | IN | 0 ETH | 0.00121643 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Node
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity 0.8.22; import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {Math} from "@openzeppelin/contracts/utils/math/Math.sol"; import {Common721, ERC721A} from "./Common721.sol"; import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import {SignatureChecker} from "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol"; import {MessageHashUtils} from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol"; contract S is ERC20 { constructor(address account, uint256 amount) ERC20("USDT", "USDT") { _mint(account, amount); } } interface RewardsToken { function mint(address, uint256) external; } contract Node is Common721 { using Math for uint256; using SafeERC20 for IERC20Metadata; uint256 public maxSell; uint256 public totalSell; uint256 public tokenPrice; address public tokenAddress; uint256 public grow; uint256 public growDivBy; address public preSigner; bytes32 public claimRoot; address public lmc; uint256 public phase; address public foundation; mapping(uint256 => uint256) public phaseBlockNumber; mapping(address => uint256) public preBuyers; mapping(address => uint256) public holders; mapping(address => uint256) public claimedNFT; mapping(address => uint256) public claimedLMC; event Buy( address indexed buyer, uint256 num, uint256 totalTokenNeed, address indexed tokenAddress ); constructor() ERC721A("Littlemami Node", "LMN") { foundation = 0xB03167F37319F2C67Dd3062fc1482044205484d1; tokenAddress = 0xdAC17F958D2ee523a2206206994597C13D831ec7; tokenPrice = 300 * 10 ** IERC20Metadata(tokenAddress).decimals(); maxSell = 30000; grow = 1005; growDivBy = 1000; preSigner = address(0xB59Ad0d1156833531852a0537Eefc25795d73333); phaseBlockNumber[0] = block.number; } function preBuy( bytes calldata signature, uint256 maxNum, uint256 num ) external { require(phase == 1, "Node : Not pre open"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender, maxNum)); bytes32 hash = MessageHashUtils.toEthSignedMessageHash(leaf); require( SignatureChecker.isValidSignatureNow(preSigner, hash, signature), "Node : Invalid signature" ); require( preBuyers[msg.sender] + num <= maxNum, "Node : Out of pre max num" ); _buy(num); preBuyers[msg.sender] += num; } function buy(uint256 num) external { require(phase != 1, "Node : Not open"); _buy(num); } function adminBuy(address[] calldata addrs) external onlyOwner { for (uint256 i = 0; i < addrs.length; i++) { address recev = addrs[i]; totalSell++; holders[recev]++; _setPrice(); emit Buy(recev, 1, 0, tokenAddress); } } function _buy(uint256 num) private nonReentrant { require(totalSell + num <= maxSell, "Node : Out of max sell"); uint256 totalTokenNeed; for (uint256 i = 0; i < num; i++) { totalTokenNeed += tokenPrice; totalSell++; _setPrice(); } IERC20Metadata(tokenAddress).safeTransferFrom( msg.sender, address(this), totalTokenNeed ); holders[msg.sender] += num; emit Buy( msg.sender, num, totalTokenNeed / 10 ** IERC20Metadata(tokenAddress).decimals(), tokenAddress ); } function claimNFT(uint256 num) external { require(maxSell == totalSell, "Node : Not end"); require( claimedNFT[msg.sender] + num <= holders[msg.sender], "Node : Out of claim" ); claimedNFT[msg.sender] += num; _mint(msg.sender, num); } function _setPrice() private { if (totalSell % 50 == 0) { uint256 tokenDecimals = IERC20Metadata(tokenAddress).decimals(); tokenPrice = ((tokenPrice * grow) / growDivBy).ceilDiv( 10 ** tokenDecimals ); tokenPrice = tokenPrice * 10 ** tokenDecimals; } if (totalSell >= 3000 && phase == 2) { changePhase(3); } } function setToken(address token, uint256 price) external onlyOwner { tokenAddress = token; tokenPrice = price; } function startPrePhase() external onlyOwner { require(phase == 0, "Node : Not phase 0"); changePhase(1); } function endPrePhase() external onlyOwner { require(phase == 1, "Node : Not pre open"); changePhase(2); } function changePhase(uint256 change) private { phase = change; phaseBlockNumber[change] = block.number; } function setPreRoot(address signer) external onlyOwner { preSigner = signer; } function setClaimRoot(bytes32 root) external onlyOwner { claimRoot = root; } function claimLMC(uint256 max, bytes32[] calldata proof) external { bytes32 leaf = keccak256(abi.encodePacked(msg.sender, max)); require( MerkleProof.verify(proof, claimRoot, leaf), "Node : Invalid proof" ); uint256 claimAmt = max - claimedLMC[msg.sender]; uint256 fee = (claimAmt * 5) / 100; claimAmt -= fee; RewardsToken(lmc).mint(foundation, fee); RewardsToken(lmc).mint(msg.sender, claimAmt); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1271.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC1271 standard signature validation method for * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271]. */ interface IERC1271 { /** * @dev Should return whether the signature provided is valid for the provided data * @param hash Hash of the data to be signed * @param signature Signature byte array associated with _data */ function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or * {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon * a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the address zero. * * 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS } /** * @dev The signature derives the `address(0)`. */ error ECDSAInvalidSignature(); /** * @dev The signature has an invalid length. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError, bytes32) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS, s); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.20; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the Merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates Merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** *@dev The multiproof provided is not valid. */ error MerkleProofInvalidMultiproof(); /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} */ function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. if (leavesLen + proofLen != totalHashes + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { if (proofPos != proofLen) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details. */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the Merkle tree. uint256 leavesLen = leaves.length; uint256 proofLen = proof.length; uint256 totalHashes = proofFlags.length; // Check proof validity. if (leavesLen + proofLen != totalHashes + 1) { revert MerkleProofInvalidMultiproof(); } // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]) : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { if (proofPos != proofLen) { revert MerkleProofInvalidMultiproof(); } unchecked { return hashes[totalHashes - 1]; } } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Sorts the pair (a, b) and hashes the result. */ function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } /** * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory. */ function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol) pragma solidity ^0.8.20; import {Strings} from "../Strings.sol"; /** * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. * * The library provides methods for generating a hash of a message that conforms to the * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] * specifications. */ library MessageHashUtils { /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing a bytes32 `messageHash` with * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with * keccak256, although any bytes32 value can be safely used because the final digest will * be re-hashed. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20) } } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing an arbitrary `message` with * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x00` (data with intended validator). * * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended * `validator` address. Then hashing the result. * * See {ECDSA-recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } /** * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`). * * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with * `\x19\x01` and hashing the result. It corresponds to the hash signed by the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712. * * See {ECDSA-recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/SignatureChecker.sol) pragma solidity ^0.8.20; import {ECDSA} from "./ECDSA.sol"; import {IERC1271} from "../../interfaces/IERC1271.sol"; /** * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like * Argent and Safe Wallet (previously Gnosis Safe). */ library SignatureChecker { /** * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`. * * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus * change through time. It could return true at block N and false at block N+1 (or the opposite). */ function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) { (address recovered, ECDSA.RecoverError error, ) = ECDSA.tryRecover(hash, signature); return (error == ECDSA.RecoverError.NoError && recovered == signer) || isValidERC1271SignatureNow(signer, hash, signature); } /** * @dev Checks if a signature is valid for a given signer and data hash. The signature is validated * against the signer smart contract using ERC1271. * * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus * change through time. It could return true at block N and false at block N+1 (or the opposite). */ function isValidERC1271SignatureNow( address signer, bytes32 hash, bytes memory signature ) internal view returns (bool) { (bool success, bytes memory result) = signer.staticcall( abi.encodeCall(IERC1271.isValidSignature, (hash, signature)) ); return (success && result.length >= 32 && abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @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; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); 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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; 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_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
pragma solidity 0.8.22; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {IERC20Metadata} from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; abstract contract Common is Ownable, ReentrancyGuard { using SafeERC20 for IERC20Metadata; constructor() Ownable(msg.sender) {} function withdrawETH(address payable to) external onlyOwner nonReentrant { (bool success, ) = to.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function withdrawERC20( address token, address to ) external onlyOwner nonReentrant { IERC20Metadata(token).safeTransfer( to, IERC20Metadata(token).balanceOf(address(this)) ); } function withdrawERC721( address token, address to, uint256[] calldata tokenIds ) external onlyOwner nonReentrant { for (uint256 i = 0; i < tokenIds.length; i++) { IERC721(token).transferFrom(address(this), to, tokenIds[i]); } } }
pragma solidity 0.8.22; import {ERC721AQueryable, ERC721A, IERC721A} from "erc721a/contracts/extensions/ERC721AQueryable.sol"; import {Common} from "./Common.sol"; import {Strings} from "@openzeppelin/contracts/utils/Strings.sol"; abstract contract Common721 is ERC721AQueryable, Common { uint256 public maxSupply; string public defaultURI; string public baseURI; mapping(uint256 => bool) public blackList; using Strings for uint256; function adminMint(address _address, uint256 _num) external onlyOwner { require(totalSupply() + _num <= maxSupply, "Must lower than maxSupply"); _mint(_address, _num); } function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual override { for (uint256 i = startTokenId; i < startTokenId + quantity; i++) { require(!blackList[i], "In blacklist"); } } function setBlackList( uint256[] calldata _blackList, bool _status ) external onlyOwner { for (uint256 i = 0; i < _blackList.length; i++) { blackList[_blackList[i]] = _status; } } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function setDefaultURI(string memory _defaultURI) public onlyOwner { defaultURI = _defaultURI; } function tokenURI( uint256 _tokenId ) public view override(ERC721A, IERC721A) returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory imageURI = bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenId.toString())) : defaultURI; return imageURI; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // 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()`. * * 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; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].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); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public 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(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory 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) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721AQueryable.sol'; import '../ERC721A.sol'; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) public view virtual override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] calldata tokenIds) external view virtual override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view virtual override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view virtual override 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; } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import '../IERC721A.sol'; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * * - `addr = address(0)` * - `startTimestamp = 0` * - `burned = false` * - `extraData = 0` * * If the `tokenId` is burned: * * - `addr = <Address of owner before token was burned>` * - `startTimestamp = <Timestamp when token was burned>` * - `burned = true` * - `extraData = <Extra data when token was burned>` * * Otherwise: * * - `addr = <Address of owner>` * - `startTimestamp = <Timestamp of start of ownership>` * - `burned = false` * - `extraData = <Extra data at start of ownership>` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start < stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(`totalSupply`) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // 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(); // ============================================================= // 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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"num","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokenNeed","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"}],"name":"Buy","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"adminBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"blackList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claimLMC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"claimNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedLMC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPrePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"foundation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"grow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"growDivBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"holders","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":"lmc","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"phaseBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"maxNum","type":"uint256"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"preBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preBuyers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256[]","name":"_blackList","type":"uint256[]"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setClaimRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setPreRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPrePhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"withdrawERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b50336040518060400160405280600f81526020016e4c6974746c656d616d69204e6f646560881b815250604051806040016040528060038152602001622626a760e91b8152508160029081620000679190620002d9565b506003620000768282620002d9565b505f805550506001600160a01b038116620000aa57604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b620000b581620001ea565b5060016009556018805473b03167f37319f2c67dd3062fc1482044205484d16001600160a01b0319918216179091556011805473dac17f958d2ee523a2206206994597c13d831ec79216821790556040805163313ce56760e01b8152905163313ce567916004808201926020929091908290030181865afa1580156200013d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001639190620003a5565b6200017090600a620004dd565b6200017e9061012c620004ed565b601055617530600e556103ed6012556103e8601355601480546001600160a01b03191673b59ad0d1156833531852a0537eefc25795d733331790555f80526019602052437fd2ac945fcc0096878c763e37d6929b78378c1a2defabde8ba7ee5ed1d6e7a5b25562000507565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200026457607f821691505b6020821081036200028357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002d457805f5260205f20601f840160051c81016020851015620002b05750805b601f840160051c820191505b81811015620002d1575f8155600101620002bc565b50505b505050565b81516001600160401b03811115620002f557620002f56200023b565b6200030d816200030684546200024f565b8462000289565b602080601f83116001811462000343575f84156200032b5750858301515b5f19600386901b1c1916600185901b1785556200039d565b5f85815260208120601f198616915b82811015620003735788860151825594840194600190910190840162000352565b50858210156200039157878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f60208284031215620003b6575f80fd5b815160ff81168114620003c7575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200042257815f1904821115620004065762000406620003ce565b808516156200041457918102915b93841c9390800290620003e7565b509250929050565b5f826200043a57506001620004d7565b816200044857505f620004d7565b81600181146200046157600281146200046c576200048c565b6001915050620004d7565b60ff841115620004805762000480620003ce565b50506001821b620004d7565b5060208310610133831016604e8410600b8410161715620004b1575081810a620004d7565b620004bd8383620003e2565b805f1904821115620004d357620004d3620003ce565b0290505b92915050565b5f620003c760ff8416836200042a565b8082028115828204841417620004d757620004d7620003ce565b61372080620005155f395ff3fe608060405260043610610371575f3560e01c80637ff9b596116101c8578063c23dc68f116100fd578063e58306f91161009d578063f2fde38b1161006d578063f2fde38b14610a00578063fcdcea0b14610a1f578063fe50748114610a4a578063fe5c873a14610a69575f80fd5b8063e58306f91461095c578063e985e9c51461097b578063ede0f467146109c2578063f1c41431146109e1575f80fd5b8063d96a094a116100d8578063d96a094a146108f4578063da1b9e0814610913578063e0202f8714610932578063e13748be14610947575f80fd5b8063c23dc68f14610894578063c87b56dd146108c0578063d5abeb01146108df575f80fd5b80639d76ea5811610168578063b1c9fe6e11610143578063b1c9fe6e14610838578063b2cabb711461084d578063b88d4fde1461086c578063b8eb35461461087f575f80fd5b80639d76ea58146107db578063a22cb465146107fa578063a2e9b5a914610819575f80fd5b80639456fbcc116101a35780639456fbcc1461077557806395d89b411461079457806399a2557a146107a85780639cd9f1ff146107c7575f80fd5b80637ff9b596146107175780638462151c1461072c5780638da5cb5b14610758575f80fd5b806346b4b63e116102a9578063690d832011610249578063715018a611610219578063715018a6146106b157806375d13765146106c557806378bf2b53146106e45780637e93b76e14610703575f80fd5b8063690d8320146106315780636c0360eb14610650578063709ec8b41461066457806370a0823114610692575f80fd5b806355f804b31161028457806355f804b31461059c5780635bbb2177146105bb5780636352211e146105e757806365f9804614610606575f80fd5b806346b4b63e1461053d5780635298948e1461056857806353cdcd2a1461057d575f80fd5b806318a5bbdc116103145780632f79e520116102ef5780632f79e520146104d85780633a367a67146104f757806341fbb0501461050b57806342842e0e1461052a575f80fd5b806318a5bbdc1461047b57806321b97f20146104a657806323b872dd146104c5575f80fd5b8063095ea7b31161034f578063095ea7b3146104015780630a52bba81461041657806314ea35e71461044f57806318160ddd14610464575f80fd5b806301ffc9a71461037557806306fdde03146103a9578063081812fc146103ca575b5f80fd5b348015610380575f80fd5b5061039461038f366004612cd5565b610a88565b60405190151581526020015b60405180910390f35b3480156103b4575f80fd5b506103bd610ad9565b6040516103a09190612d3d565b3480156103d5575f80fd5b506103e96103e4366004612d4f565b610b69565b6040516001600160a01b0390911681526020016103a0565b61041461040f366004612d7a565b610bab565b005b348015610421575f80fd5b50610441610430366004612da4565b601d6020525f908152604090205481565b6040519081526020016103a0565b34801561045a575f80fd5b5061044160155481565b34801561046f575f80fd5b506001545f5403610441565b348015610486575f80fd5b50610441610495366004612da4565b601b6020525f908152604090205481565b3480156104b1575f80fd5b506104146104c0366004612d4f565b610c49565b6104146104d3366004612dbf565b610c56565b3480156104e3575f80fd5b506104146104f2366004612da4565b610df3565b348015610502575f80fd5b506103bd610e1d565b348015610516575f80fd5b506018546103e9906001600160a01b031681565b610414610538366004612dbf565b610ea9565b348015610548575f80fd5b50610441610557366004612d4f565b60196020525f908152604090205481565b348015610573575f80fd5b5061044160125481565b348015610588575f80fd5b506016546103e9906001600160a01b031681565b3480156105a7575f80fd5b506104146105b6366004612e83565b610ec8565b3480156105c6575f80fd5b506105da6105d5366004612f0e565b610ee0565b6040516103a09190612f88565b3480156105f2575f80fd5b506103e9610601366004612d4f565b610fa7565b348015610611575f80fd5b50610441610620366004612da4565b601c6020525f908152604090205481565b34801561063c575f80fd5b5061041461064b366004612da4565b610fb1565b34801561065b575f80fd5b506103bd611066565b34801561066f575f80fd5b5061039461067e366004612d4f565b600d6020525f908152604090205460ff1681565b34801561069d575f80fd5b506104416106ac366004612da4565b611073565b3480156106bc575f80fd5b506104146110bf565b3480156106d0575f80fd5b506104146106df366004612fc9565b6110d2565b3480156106ef575f80fd5b506104146106fe366004612d7a565b6112ca565b34801561070e575f80fd5b506104146112f8565b348015610722575f80fd5b5061044160105481565b348015610737575f80fd5b5061074b610746366004612da4565b61137b565b6040516103a09190613040565b348015610763575f80fd5b506008546001600160a01b03166103e9565b348015610780575f80fd5b5061041461078f366004613077565b61147e565b34801561079f575f80fd5b506103bd611515565b3480156107b3575f80fd5b5061074b6107c23660046130ae565b611524565b3480156107d2575f80fd5b50610414611695565b3480156107e6575f80fd5b506011546103e9906001600160a01b031681565b348015610805575f80fd5b506104146108143660046130ed565b611715565b348015610824575f80fd5b50610414610833366004612f0e565b611780565b348015610843575f80fd5b5061044160175481565b348015610858575f80fd5b50610414610867366004613119565b611854565b61041461087a36600461316b565b6118b1565b34801561088a575f80fd5b50610441600e5481565b34801561089f575f80fd5b506108b36108ae366004612d4f565b6118f5565b6040516103a091906131e5565b3480156108cb575f80fd5b506103bd6108da366004612d4f565b61196b565b3480156108ea575f80fd5b50610441600a5481565b3480156108ff575f80fd5b5061041461090e366004612d4f565b611ab0565b34801561091e575f80fd5b5061041461092d366004612e83565b611afd565b34801561093d575f80fd5b50610441600f5481565b348015610952575f80fd5b5061044160135481565b348015610967575f80fd5b50610414610976366004612d7a565b611b11565b348015610986575f80fd5b50610394610995366004613077565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b3480156109cd575f80fd5b506014546103e9906001600160a01b031681565b3480156109ec575f80fd5b506104146109fb3660046131f3565b611b8b565b348015610a0b575f80fd5b50610414610a1a366004612da4565b611d58565b348015610a2a575f80fd5b50610441610a39366004612da4565b601a6020525f908152604090205481565b348015610a55575f80fd5b50610414610a6436600461323a565b611d92565b348015610a74575f80fd5b50610414610a83366004612d4f565b611e50565b5f6301ffc9a760e01b6001600160e01b031983161480610ab857506380ac58cd60e01b6001600160e01b03198316145b80610ad35750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610ae89061329a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b149061329a565b8015610b5f5780601f10610b3657610100808354040283529160200191610b5f565b820191905f5260205f20905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b5f610b7382611f2c565b610b90576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f610bb582610fa7565b9050336001600160a01b03821614610bee57610bd18133610995565b610bee576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c51611f51565b601555565b5f610c6082611f7e565b9050836001600160a01b0316816001600160a01b031614610c935760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b03881690911417610cdf57610cc28633610995565b610cdf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d0657604051633a954ecd60e21b815260040160405180910390fd5b610d138686866001611fdf565b8015610d1d575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b84169003610da957600184015f818152600460205260408120549003610da7575f548114610da7575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610dfb611f51565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600b8054610e2a9061329a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e569061329a565b8015610ea15780601f10610e7857610100808354040283529160200191610ea1565b820191905f5260205f20905b815481529060010190602001808311610e8457829003601f168201915b505050505081565b610ec383838360405180602001604052805f8152506118b1565b505050565b610ed0611f51565b600c610edc8282613316565b5050565b6060815f816001600160401b03811115610efc57610efc612dfd565b604051908082528060200260200182016040528015610f4c57816020015b604080516080810182525f8082526020808301829052928201819052606082015282525f19909201910181610f1a5790505b5090505f5b828114610f9e57610f79868683818110610f6d57610f6d6133d1565b905060200201356118f5565b828281518110610f8b57610f8b6133d1565b6020908102919091010152600101610f51565b50949350505050565b5f610ad382611f7e565b610fb9611f51565b610fc161204e565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f811461100a576040519150601f19603f3d011682016040523d82523d5f602084013e61100f565b606091505b50509050806110585760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b506110636001600955565b50565b600c8054610e2a9061329a565b5f6001600160a01b03821661109b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600560205260409020546001600160401b031690565b6110c7611f51565b6110d05f612078565b565b60175460011461111a5760405162461bcd60e51b81526020600482015260136024820152722737b232901d102737ba103839329037b832b760691b604482015260640161104f565b6040516bffffffffffffffffffffffff193360601b166020820152603481018390525f906054016040516020818303038152906040528051906020012090505f611190827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b601454604080516020601f8a018190048102820181019092528881529293506111e0926001600160a01b039092169184918a908a90819084018382808284375f920191909152506120c992505050565b61122c5760405162461bcd60e51b815260206004820152601860248201527f4e6f6465203a20496e76616c6964207369676e61747572650000000000000000604482015260640161104f565b335f908152601a602052604090205484906112489085906133f9565b11156112965760405162461bcd60e51b815260206004820152601960248201527f4e6f6465203a204f7574206f6620707265206d6178206e756d00000000000000604482015260640161104f565b61129f83612128565b335f908152601a6020526040812080548592906112bd9084906133f9565b9091555050505050505050565b6112d2611f51565b601180546001600160a01b0319166001600160a01b039390931692909217909155601055565b611300611f51565b6017546001146113485760405162461bcd60e51b81526020600482015260136024820152722737b232901d102737ba103839329037b832b760691b604482015260640161104f565b600260178190555f526019602052437f6f678ad17c55bce407239525f4bf7f1fe99197d3eb69bfdd9a0db84a9a11b58155565b60605f805f61138985611073565b90505f816001600160401b038111156113a4576113a4612dfd565b6040519080825280602002602001820160405280156113cd578160200160208202803683370190505b5090506113f9604080516080810182525f80825260208201819052918101829052606081019190915290565b5f5b8386146114725761140b816122ce565b9150816040015161146a5781516001600160a01b03161561142b57815194505b876001600160a01b0316856001600160a01b03160361146a578083878060010198508151811061145d5761145d6133d1565b6020026020010181815250505b6001016113fb565b50909695505050505050565b611486611f51565b61148e61204e565b6040516370a0823160e01b815230600482015261150b9082906001600160a01b038516906370a0823190602401602060405180830381865afa1580156114d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fa919061340c565b6001600160a01b0385169190612308565b610edc6001600955565b606060038054610ae89061329a565b606081831061154657604051631960ccad60e11b815260040160405180910390fd5b5f806115505f5490565b90508084111561155e578093505b5f61156887611073565b9050848610156115875785850381811015611581578091505b5061158a565b505f5b5f816001600160401b038111156115a3576115a3612dfd565b6040519080825280602002602001820160405280156115cc578160200160208202803683370190505b509050815f036115e157935061168e92505050565b5f6115eb886118f5565b90505f81604001516115fb575080515b885b88811415801561160d5750848714155b156116825761161b816122ce565b9250826040015161167a5782516001600160a01b03161561163b57825191505b8a6001600160a01b0316826001600160a01b03160361167a578084888060010199508151811061166d5761166d6133d1565b6020026020010181815250505b6001016115fd565b50505092835250909150505b9392505050565b61169d611f51565b601754156116e25760405162461bcd60e51b815260206004820152601260248201527104e6f6465203a204e6f7420706861736520360741b604482015260640161104f565b600160178190555f526019602052437ffc941c3961fb6541da34150022cddf959da0fb2353866a6bfbd249c2da09291455565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611788611f51565b5f5b81811015610ec3575f8383838181106117a5576117a56133d1565b90506020020160208101906117ba9190612da4565b600f80549192505f6117cb83613423565b90915550506001600160a01b0381165f908152601b602052604081208054916117f383613423565b9190505550611800612367565b60115460408051600181525f60208201526001600160a01b03928316928416917ff152feb5fe7641aae5c7f8e8187c26eef1a9d970f7c3794ac442f0842282d93f910160405180910390a35060010161178a565b61185c611f51565b5f5b828110156118ab5781600d5f86868581811061187c5761187c6133d1565b602090810292909201358352508101919091526040015f20805460ff191691151591909117905560010161185e565b50505050565b6118bc848484610c56565b6001600160a01b0383163b156118ab576118d88484848461248b565b6118ab576040516368d2bf6b60e11b815260040160405180910390fd5b60408051608080820183525f80835260208084018290528385018290526060808501839052855193840186528284529083018290529382018190529281018390529091505f5483106119475792915050565b611950836122ce565b90508060400151156119625792915050565b61168e83612573565b606061197682611f2c565b6119da5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161104f565b5f80600c80546119e99061329a565b905011611a7e57600b80546119fd9061329a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a299061329a565b8015611a745780601f10611a4b57610100808354040283529160200191611a74565b820191905f5260205f20905b815481529060010190602001808311611a5757829003601f168201915b505050505061168e565b600c611a89846125a7565b604051602001611a9a92919061343b565b6040516020818303038152906040529392505050565b601754600103611af45760405162461bcd60e51b815260206004820152600f60248201526e2737b232901d102737ba1037b832b760891b604482015260640161104f565b61106381612128565b611b05611f51565b600b610edc8282613316565b611b19611f51565b600a5481611b296001545f540390565b611b3391906133f9565b1115611b815760405162461bcd60e51b815260206004820152601960248201527f4d757374206c6f776572207468616e206d6178537570706c7900000000000000604482015260640161104f565b610edc8282612636565b6040516bffffffffffffffffffffffff193360601b166020820152603481018490525f90605401604051602081830303815290604052805190602001209050611c0a8383808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050601554915084905061273a565b611c4d5760405162461bcd60e51b81526020600482015260146024820152732737b232901d1024b73b30b634b210383937b7b360611b604482015260640161104f565b335f908152601d6020526040812054611c6690866134be565b90505f6064611c768360056134d1565b611c8091906134fc565b9050611c8c81836134be565b6016546018546040516340c10f1960e01b81526001600160a01b0391821660048201526024810185905292945016906340c10f19906044015f604051808303815f87803b158015611cdb575f80fd5b505af1158015611ced573d5f803e3d5ffd5b50506016546040516340c10f1960e01b8152336004820152602481018690526001600160a01b0390911692506340c10f1991506044015f604051808303815f87803b158015611d3a575f80fd5b505af1158015611d4c573d5f803e3d5ffd5b50505050505050505050565b611d60611f51565b6001600160a01b038116611d8957604051631e4fbdf760e01b81525f600482015260240161104f565b61106381612078565b611d9a611f51565b611da261204e565b5f5b81811015611e4557846001600160a01b03166323b872dd3086868686818110611dcf57611dcf6133d1565b6040516001600160e01b031960e088901b1681526001600160a01b039586166004820152949093166024850152506020909102013560448201526064015f604051808303815f87803b158015611e23575f80fd5b505af1158015611e35573d5f803e3d5ffd5b505060019092019150611da49050565b506118ab6001600955565b600f54600e5414611e945760405162461bcd60e51b815260206004820152600e60248201526d139bd919480e88139bdd08195b9960921b604482015260640161104f565b335f908152601b6020908152604080832054601c90925290912054611eba9083906133f9565b1115611efe5760405162461bcd60e51b81526020600482015260136024820152724e6f6465203a204f7574206f6620636c61696d60681b604482015260640161104f565b335f908152601c602052604081208054839290611f1c9084906133f9565b9091555061106390503382612636565b5f805482108015610ad35750505f90815260046020526040902054600160e01b161590565b6008546001600160a01b031633146110d05760405163118cdaa760e01b815233600482015260240161104f565b5f815f54811015611fc6575f8181526004602052604081205490600160e01b82169003611fc4575b805f0361168e57505f19015f81815260046020526040902054611fa6565b505b604051636f96cda160e11b815260040160405180910390fd5b815b611feb82846133f9565b811015612047575f818152600d602052604090205460ff161561203f5760405162461bcd60e51b815260206004820152600c60248201526b125b88189b1858dadb1a5cdd60a21b604482015260640161104f565b600101611fe1565b5050505050565b60026009540361207157604051633ee5aeb560e01b815260040160405180910390fd5b6002600955565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f805f6120d6858561274f565b5090925090505f8160038111156120ef576120ef61350f565b14801561210d5750856001600160a01b0316826001600160a01b0316145b8061211e575061211e868686612798565b9695505050505050565b61213061204e565b600e5481600f5461214191906133f9565b11156121885760405162461bcd60e51b8152602060048201526016602482015275139bd919480e8813dd5d081bd9881b585e081cd95b1b60521b604482015260640161104f565b5f805b828110156121c6576010546121a090836133f9565b600f80549193505f6121b183613423565b91905055506121be612367565b60010161218b565b506011546121df906001600160a01b031633308461286e565b335f908152601b6020526040812080548492906121fd9084906133f9565b90915550506011546040805163313ce56760e01b815290516001600160a01b039092169133917ff152feb5fe7641aae5c7f8e8187c26eef1a9d970f7c3794ac442f0842282d93f918691859163313ce567916004808201926020929091908290030181865afa158015612272573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122969190613523565b6122a190600a613623565b6122ab90866134fc565b6040805192835260208301919091520160405180910390a3506110636001600955565b604080516080810182525f8082526020820181905291810182905260608101919091525f82815260046020526040902054610ad3906128a7565b6040516001600160a01b03838116602483015260448201839052610ec391859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506128ee565b6032600f546123769190613631565b5f0361243d576011546040805163313ce56760e01b815290515f926001600160a01b03169163313ce5679160048083019260209291908290030181865afa1580156123c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123e79190613523565b60ff16905061241d6123fa82600a613644565b60135460125460105461240d91906134d1565b61241791906134fc565b9061294f565b60105561242b81600a613644565b60105461243891906134d1565b601055505b610bb8600f541015801561245357506017546002145b156110d057600360178190555f526019602052437f3e323a6e0522b016fa22111dfed945f89456f9f44f69eac00209d92607a5b94055565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a02906124bf90339089908890889060040161364f565b6020604051808303815f875af19250505080156124f9575060408051601f3d908101601f191682019092526124f691810190613681565b60015b612555573d808015612526576040519150601f19603f3d011682016040523d82523d5f602084013e61252b565b606091505b5080515f0361254d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182525f808252602082018190529181018290526060810191909152610ad36125a283611f7e565b6128a7565b60605f6125b38361299c565b60010190505f816001600160401b038111156125d1576125d1612dfd565b6040519080825280601f01601f1916602001820160405280156125fb576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461260557509392505050565b5f80549082900361265a5760405163b562e8dd60e01b815260040160405180910390fd5b6126665f848385611fdf565b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146127125780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001016126dc565b50815f0361273257604051622e076360e81b815260040160405180910390fd5b5f5550505050565b5f826127468584612a73565b14949350505050565b5f805f8351604103612786576020840151604085015160608601515f1a61277888828585612ab5565b955095509550505050612791565b505081515f91506002905b9250925092565b5f805f856001600160a01b031685856040516024016127b892919061369c565b60408051601f198184030181529181526020820180516001600160e01b0316630b135d3f60e11b179052516127ed91906136b4565b5f60405180830381855afa9150503d805f8114612825576040519150601f19603f3d011682016040523d82523d5f602084013e61282a565b606091505b509150915081801561283e57506020815110155b801561211e57508051630b135d3f60e11b90612863908301602090810190840161340c565b149695505050505050565b6040516001600160a01b0384811660248301528381166044830152606482018390526118ab9186918216906323b872dd90608401612335565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b5f6129026001600160a01b03841683612b7d565b905080515f1415801561292657508080602001905181019061292491906136cf565b155b15610ec357604051635274afe760e01b81526001600160a01b038416600482015260240161104f565b5f815f036129685761296182846134fc565b9050610ad3565b8215612994578161297a6001856134be565b61298491906134fc565b61298f9060016133f9565b61168e565b5f9392505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106129da5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612a06576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612a2457662386f26fc10000830492506010015b6305f5e1008310612a3c576305f5e100830492506008015b6127108310612a5057612710830492506004015b60648310612a62576064830492506002015b600a8310610ad35760010192915050565b5f81815b8451811015612aad57612aa382868381518110612a9657612a966133d1565b6020026020010151612b8a565b9150600101612a77565b509392505050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115612aee57505f91506003905082612b73565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015612b3f573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116612b6a57505f925060019150829050612b73565b92505f91508190505b9450945094915050565b606061168e83835f612bb6565b5f818310612ba4575f82815260208490526040902061168e565b5f83815260208390526040902061168e565b606081471015612bdb5760405163cd78605960e01b815230600482015260240161104f565b5f80856001600160a01b03168486604051612bf691906136b4565b5f6040518083038185875af1925050503d805f8114612c30576040519150601f19603f3d011682016040523d82523d5f602084013e612c35565b606091505b509150915061211e868383606082612c505761298f82612c97565b8151158015612c6757506001600160a01b0384163b155b15612c9057604051639996b31560e01b81526001600160a01b038516600482015260240161104f565b508061168e565b805115612ca75780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b031981168114611063575f80fd5b5f60208284031215612ce5575f80fd5b813561168e81612cc0565b5f5b83811015612d0a578181015183820152602001612cf2565b50505f910152565b5f8151808452612d29816020860160208601612cf0565b601f01601f19169290920160200192915050565b602081525f61168e6020830184612d12565b5f60208284031215612d5f575f80fd5b5035919050565b6001600160a01b0381168114611063575f80fd5b5f8060408385031215612d8b575f80fd5b8235612d9681612d66565b946020939093013593505050565b5f60208284031215612db4575f80fd5b813561168e81612d66565b5f805f60608486031215612dd1575f80fd5b8335612ddc81612d66565b92506020840135612dec81612d66565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f6001600160401b0380841115612e2a57612e2a612dfd565b604051601f8501601f19908116603f01168101908282118183101715612e5257612e52612dfd565b81604052809350858152868686011115612e6a575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215612e93575f80fd5b81356001600160401b03811115612ea8575f80fd5b8201601f81018413612eb8575f80fd5b61256b84823560208401612e11565b5f8083601f840112612ed7575f80fd5b5081356001600160401b03811115612eed575f80fd5b6020830191508360208260051b8501011115612f07575f80fd5b9250929050565b5f8060208385031215612f1f575f80fd5b82356001600160401b03811115612f34575f80fd5b612f4085828601612ec7565b90969095509350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b602080825282518282018190525f9190848201906040850190845b8181101561147257612fb6838551612f4c565b9284019260809290920191600101612fa3565b5f805f8060608587031215612fdc575f80fd5b84356001600160401b0380821115612ff2575f80fd5b818701915087601f830112613005575f80fd5b813581811115613013575f80fd5b886020828501011115613024575f80fd5b6020928301999098509187013596604001359550909350505050565b602080825282518282018190525f9190848201906040850190845b818110156114725783518352928401929184019160010161305b565b5f8060408385031215613088575f80fd5b823561309381612d66565b915060208301356130a381612d66565b809150509250929050565b5f805f606084860312156130c0575f80fd5b83356130cb81612d66565b95602085013595506040909401359392505050565b8015158114611063575f80fd5b5f80604083850312156130fe575f80fd5b823561310981612d66565b915060208301356130a3816130e0565b5f805f6040848603121561312b575f80fd5b83356001600160401b03811115613140575f80fd5b61314c86828701612ec7565b9094509250506020840135613160816130e0565b809150509250925092565b5f805f806080858703121561317e575f80fd5b843561318981612d66565b9350602085013561319981612d66565b92506040850135915060608501356001600160401b038111156131ba575f80fd5b8501601f810187136131ca575f80fd5b6131d987823560208401612e11565b91505092959194509250565b60808101610ad38284612f4c565b5f805f60408486031215613205575f80fd5b8335925060208401356001600160401b03811115613221575f80fd5b61322d86828701612ec7565b9497909650939450505050565b5f805f806060858703121561324d575f80fd5b843561325881612d66565b9350602085013561326881612d66565b925060408501356001600160401b03811115613282575f80fd5b61328e87828801612ec7565b95989497509550505050565b600181811c908216806132ae57607f821691505b6020821081036132cc57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610ec357805f5260205f20601f840160051c810160208510156132f75750805b601f840160051c820191505b81811015612047575f8155600101613303565b81516001600160401b0381111561332f5761332f612dfd565b6133438161333d845461329a565b846132d2565b602080601f831160018114613376575f841561335f5750858301515b5f19600386901b1c1916600185901b178555610deb565b5f85815260208120601f198616915b828110156133a457888601518255948401946001909101908401613385565b50858210156133c157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ad357610ad36133e5565b5f6020828403121561341c575f80fd5b5051919050565b5f60018201613434576134346133e5565b5060010190565b5f8084546134488161329a565b600182811680156134605760018114613475576134a1565b60ff19841687528215158302870194506134a1565b885f526020805f205f5b858110156134985781548a82015290840190820161347f565b50505082870194505b5050505083516134b5818360208801612cf0565b01949350505050565b81810381811115610ad357610ad36133e5565b8082028115828204841417610ad357610ad36133e5565b634e487b7160e01b5f52601260045260245ffd5b5f8261350a5761350a6134e8565b500490565b634e487b7160e01b5f52602160045260245ffd5b5f60208284031215613533575f80fd5b815160ff8116811461168e575f80fd5b600181815b8085111561357d57815f1904821115613563576135636133e5565b8085161561357057918102915b93841c9390800290613548565b509250929050565b5f8261359357506001610ad3565b8161359f57505f610ad3565b81600181146135b557600281146135bf576135db565b6001915050610ad3565b60ff8411156135d0576135d06133e5565b50506001821b610ad3565b5060208310610133831016604e8410600b84101617156135fe575081810a610ad3565b6136088383613543565b805f190482111561361b5761361b6133e5565b029392505050565b5f61168e60ff841683613585565b5f8261363f5761363f6134e8565b500690565b5f61168e8383613585565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061211e90830184612d12565b5f60208284031215613691575f80fd5b815161168e81612cc0565b828152604060208201525f61256b6040830184612d12565b5f82516136c5818460208701612cf0565b9190910192915050565b5f602082840312156136df575f80fd5b815161168e816130e056fea26469706673582212204aa204ea4a227e87dcb2b83f2db3b9ad16a48ba95dc1b66a046eace07b90537e64736f6c63430008160033
Deployed Bytecode
0x608060405260043610610371575f3560e01c80637ff9b596116101c8578063c23dc68f116100fd578063e58306f91161009d578063f2fde38b1161006d578063f2fde38b14610a00578063fcdcea0b14610a1f578063fe50748114610a4a578063fe5c873a14610a69575f80fd5b8063e58306f91461095c578063e985e9c51461097b578063ede0f467146109c2578063f1c41431146109e1575f80fd5b8063d96a094a116100d8578063d96a094a146108f4578063da1b9e0814610913578063e0202f8714610932578063e13748be14610947575f80fd5b8063c23dc68f14610894578063c87b56dd146108c0578063d5abeb01146108df575f80fd5b80639d76ea5811610168578063b1c9fe6e11610143578063b1c9fe6e14610838578063b2cabb711461084d578063b88d4fde1461086c578063b8eb35461461087f575f80fd5b80639d76ea58146107db578063a22cb465146107fa578063a2e9b5a914610819575f80fd5b80639456fbcc116101a35780639456fbcc1461077557806395d89b411461079457806399a2557a146107a85780639cd9f1ff146107c7575f80fd5b80637ff9b596146107175780638462151c1461072c5780638da5cb5b14610758575f80fd5b806346b4b63e116102a9578063690d832011610249578063715018a611610219578063715018a6146106b157806375d13765146106c557806378bf2b53146106e45780637e93b76e14610703575f80fd5b8063690d8320146106315780636c0360eb14610650578063709ec8b41461066457806370a0823114610692575f80fd5b806355f804b31161028457806355f804b31461059c5780635bbb2177146105bb5780636352211e146105e757806365f9804614610606575f80fd5b806346b4b63e1461053d5780635298948e1461056857806353cdcd2a1461057d575f80fd5b806318a5bbdc116103145780632f79e520116102ef5780632f79e520146104d85780633a367a67146104f757806341fbb0501461050b57806342842e0e1461052a575f80fd5b806318a5bbdc1461047b57806321b97f20146104a657806323b872dd146104c5575f80fd5b8063095ea7b31161034f578063095ea7b3146104015780630a52bba81461041657806314ea35e71461044f57806318160ddd14610464575f80fd5b806301ffc9a71461037557806306fdde03146103a9578063081812fc146103ca575b5f80fd5b348015610380575f80fd5b5061039461038f366004612cd5565b610a88565b60405190151581526020015b60405180910390f35b3480156103b4575f80fd5b506103bd610ad9565b6040516103a09190612d3d565b3480156103d5575f80fd5b506103e96103e4366004612d4f565b610b69565b6040516001600160a01b0390911681526020016103a0565b61041461040f366004612d7a565b610bab565b005b348015610421575f80fd5b50610441610430366004612da4565b601d6020525f908152604090205481565b6040519081526020016103a0565b34801561045a575f80fd5b5061044160155481565b34801561046f575f80fd5b506001545f5403610441565b348015610486575f80fd5b50610441610495366004612da4565b601b6020525f908152604090205481565b3480156104b1575f80fd5b506104146104c0366004612d4f565b610c49565b6104146104d3366004612dbf565b610c56565b3480156104e3575f80fd5b506104146104f2366004612da4565b610df3565b348015610502575f80fd5b506103bd610e1d565b348015610516575f80fd5b506018546103e9906001600160a01b031681565b610414610538366004612dbf565b610ea9565b348015610548575f80fd5b50610441610557366004612d4f565b60196020525f908152604090205481565b348015610573575f80fd5b5061044160125481565b348015610588575f80fd5b506016546103e9906001600160a01b031681565b3480156105a7575f80fd5b506104146105b6366004612e83565b610ec8565b3480156105c6575f80fd5b506105da6105d5366004612f0e565b610ee0565b6040516103a09190612f88565b3480156105f2575f80fd5b506103e9610601366004612d4f565b610fa7565b348015610611575f80fd5b50610441610620366004612da4565b601c6020525f908152604090205481565b34801561063c575f80fd5b5061041461064b366004612da4565b610fb1565b34801561065b575f80fd5b506103bd611066565b34801561066f575f80fd5b5061039461067e366004612d4f565b600d6020525f908152604090205460ff1681565b34801561069d575f80fd5b506104416106ac366004612da4565b611073565b3480156106bc575f80fd5b506104146110bf565b3480156106d0575f80fd5b506104146106df366004612fc9565b6110d2565b3480156106ef575f80fd5b506104146106fe366004612d7a565b6112ca565b34801561070e575f80fd5b506104146112f8565b348015610722575f80fd5b5061044160105481565b348015610737575f80fd5b5061074b610746366004612da4565b61137b565b6040516103a09190613040565b348015610763575f80fd5b506008546001600160a01b03166103e9565b348015610780575f80fd5b5061041461078f366004613077565b61147e565b34801561079f575f80fd5b506103bd611515565b3480156107b3575f80fd5b5061074b6107c23660046130ae565b611524565b3480156107d2575f80fd5b50610414611695565b3480156107e6575f80fd5b506011546103e9906001600160a01b031681565b348015610805575f80fd5b506104146108143660046130ed565b611715565b348015610824575f80fd5b50610414610833366004612f0e565b611780565b348015610843575f80fd5b5061044160175481565b348015610858575f80fd5b50610414610867366004613119565b611854565b61041461087a36600461316b565b6118b1565b34801561088a575f80fd5b50610441600e5481565b34801561089f575f80fd5b506108b36108ae366004612d4f565b6118f5565b6040516103a091906131e5565b3480156108cb575f80fd5b506103bd6108da366004612d4f565b61196b565b3480156108ea575f80fd5b50610441600a5481565b3480156108ff575f80fd5b5061041461090e366004612d4f565b611ab0565b34801561091e575f80fd5b5061041461092d366004612e83565b611afd565b34801561093d575f80fd5b50610441600f5481565b348015610952575f80fd5b5061044160135481565b348015610967575f80fd5b50610414610976366004612d7a565b611b11565b348015610986575f80fd5b50610394610995366004613077565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b3480156109cd575f80fd5b506014546103e9906001600160a01b031681565b3480156109ec575f80fd5b506104146109fb3660046131f3565b611b8b565b348015610a0b575f80fd5b50610414610a1a366004612da4565b611d58565b348015610a2a575f80fd5b50610441610a39366004612da4565b601a6020525f908152604090205481565b348015610a55575f80fd5b50610414610a6436600461323a565b611d92565b348015610a74575f80fd5b50610414610a83366004612d4f565b611e50565b5f6301ffc9a760e01b6001600160e01b031983161480610ab857506380ac58cd60e01b6001600160e01b03198316145b80610ad35750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610ae89061329a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b149061329a565b8015610b5f5780601f10610b3657610100808354040283529160200191610b5f565b820191905f5260205f20905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b5f610b7382611f2c565b610b90576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f610bb582610fa7565b9050336001600160a01b03821614610bee57610bd18133610995565b610bee576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610c51611f51565b601555565b5f610c6082611f7e565b9050836001600160a01b0316816001600160a01b031614610c935760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b03881690911417610cdf57610cc28633610995565b610cdf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610d0657604051633a954ecd60e21b815260040160405180910390fd5b610d138686866001611fdf565b8015610d1d575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b84169003610da957600184015f818152600460205260408120549003610da7575f548114610da7575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610dfb611f51565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600b8054610e2a9061329a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e569061329a565b8015610ea15780601f10610e7857610100808354040283529160200191610ea1565b820191905f5260205f20905b815481529060010190602001808311610e8457829003601f168201915b505050505081565b610ec383838360405180602001604052805f8152506118b1565b505050565b610ed0611f51565b600c610edc8282613316565b5050565b6060815f816001600160401b03811115610efc57610efc612dfd565b604051908082528060200260200182016040528015610f4c57816020015b604080516080810182525f8082526020808301829052928201819052606082015282525f19909201910181610f1a5790505b5090505f5b828114610f9e57610f79868683818110610f6d57610f6d6133d1565b905060200201356118f5565b828281518110610f8b57610f8b6133d1565b6020908102919091010152600101610f51565b50949350505050565b5f610ad382611f7e565b610fb9611f51565b610fc161204e565b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f811461100a576040519150601f19603f3d011682016040523d82523d5f602084013e61100f565b606091505b50509050806110585760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b506110636001600955565b50565b600c8054610e2a9061329a565b5f6001600160a01b03821661109b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600560205260409020546001600160401b031690565b6110c7611f51565b6110d05f612078565b565b60175460011461111a5760405162461bcd60e51b81526020600482015260136024820152722737b232901d102737ba103839329037b832b760691b604482015260640161104f565b6040516bffffffffffffffffffffffff193360601b166020820152603481018390525f906054016040516020818303038152906040528051906020012090505f611190827f19457468657265756d205369676e6564204d6573736167653a0a3332000000005f908152601c91909152603c902090565b601454604080516020601f8a018190048102820181019092528881529293506111e0926001600160a01b039092169184918a908a90819084018382808284375f920191909152506120c992505050565b61122c5760405162461bcd60e51b815260206004820152601860248201527f4e6f6465203a20496e76616c6964207369676e61747572650000000000000000604482015260640161104f565b335f908152601a602052604090205484906112489085906133f9565b11156112965760405162461bcd60e51b815260206004820152601960248201527f4e6f6465203a204f7574206f6620707265206d6178206e756d00000000000000604482015260640161104f565b61129f83612128565b335f908152601a6020526040812080548592906112bd9084906133f9565b9091555050505050505050565b6112d2611f51565b601180546001600160a01b0319166001600160a01b039390931692909217909155601055565b611300611f51565b6017546001146113485760405162461bcd60e51b81526020600482015260136024820152722737b232901d102737ba103839329037b832b760691b604482015260640161104f565b600260178190555f526019602052437f6f678ad17c55bce407239525f4bf7f1fe99197d3eb69bfdd9a0db84a9a11b58155565b60605f805f61138985611073565b90505f816001600160401b038111156113a4576113a4612dfd565b6040519080825280602002602001820160405280156113cd578160200160208202803683370190505b5090506113f9604080516080810182525f80825260208201819052918101829052606081019190915290565b5f5b8386146114725761140b816122ce565b9150816040015161146a5781516001600160a01b03161561142b57815194505b876001600160a01b0316856001600160a01b03160361146a578083878060010198508151811061145d5761145d6133d1565b6020026020010181815250505b6001016113fb565b50909695505050505050565b611486611f51565b61148e61204e565b6040516370a0823160e01b815230600482015261150b9082906001600160a01b038516906370a0823190602401602060405180830381865afa1580156114d6573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114fa919061340c565b6001600160a01b0385169190612308565b610edc6001600955565b606060038054610ae89061329a565b606081831061154657604051631960ccad60e11b815260040160405180910390fd5b5f806115505f5490565b90508084111561155e578093505b5f61156887611073565b9050848610156115875785850381811015611581578091505b5061158a565b505f5b5f816001600160401b038111156115a3576115a3612dfd565b6040519080825280602002602001820160405280156115cc578160200160208202803683370190505b509050815f036115e157935061168e92505050565b5f6115eb886118f5565b90505f81604001516115fb575080515b885b88811415801561160d5750848714155b156116825761161b816122ce565b9250826040015161167a5782516001600160a01b03161561163b57825191505b8a6001600160a01b0316826001600160a01b03160361167a578084888060010199508151811061166d5761166d6133d1565b6020026020010181815250505b6001016115fd565b50505092835250909150505b9392505050565b61169d611f51565b601754156116e25760405162461bcd60e51b815260206004820152601260248201527104e6f6465203a204e6f7420706861736520360741b604482015260640161104f565b600160178190555f526019602052437ffc941c3961fb6541da34150022cddf959da0fb2353866a6bfbd249c2da09291455565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611788611f51565b5f5b81811015610ec3575f8383838181106117a5576117a56133d1565b90506020020160208101906117ba9190612da4565b600f80549192505f6117cb83613423565b90915550506001600160a01b0381165f908152601b602052604081208054916117f383613423565b9190505550611800612367565b60115460408051600181525f60208201526001600160a01b03928316928416917ff152feb5fe7641aae5c7f8e8187c26eef1a9d970f7c3794ac442f0842282d93f910160405180910390a35060010161178a565b61185c611f51565b5f5b828110156118ab5781600d5f86868581811061187c5761187c6133d1565b602090810292909201358352508101919091526040015f20805460ff191691151591909117905560010161185e565b50505050565b6118bc848484610c56565b6001600160a01b0383163b156118ab576118d88484848461248b565b6118ab576040516368d2bf6b60e11b815260040160405180910390fd5b60408051608080820183525f80835260208084018290528385018290526060808501839052855193840186528284529083018290529382018190529281018390529091505f5483106119475792915050565b611950836122ce565b90508060400151156119625792915050565b61168e83612573565b606061197682611f2c565b6119da5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161104f565b5f80600c80546119e99061329a565b905011611a7e57600b80546119fd9061329a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a299061329a565b8015611a745780601f10611a4b57610100808354040283529160200191611a74565b820191905f5260205f20905b815481529060010190602001808311611a5757829003601f168201915b505050505061168e565b600c611a89846125a7565b604051602001611a9a92919061343b565b6040516020818303038152906040529392505050565b601754600103611af45760405162461bcd60e51b815260206004820152600f60248201526e2737b232901d102737ba1037b832b760891b604482015260640161104f565b61106381612128565b611b05611f51565b600b610edc8282613316565b611b19611f51565b600a5481611b296001545f540390565b611b3391906133f9565b1115611b815760405162461bcd60e51b815260206004820152601960248201527f4d757374206c6f776572207468616e206d6178537570706c7900000000000000604482015260640161104f565b610edc8282612636565b6040516bffffffffffffffffffffffff193360601b166020820152603481018490525f90605401604051602081830303815290604052805190602001209050611c0a8383808060200260200160405190810160405280939291908181526020018383602002808284375f9201919091525050601554915084905061273a565b611c4d5760405162461bcd60e51b81526020600482015260146024820152732737b232901d1024b73b30b634b210383937b7b360611b604482015260640161104f565b335f908152601d6020526040812054611c6690866134be565b90505f6064611c768360056134d1565b611c8091906134fc565b9050611c8c81836134be565b6016546018546040516340c10f1960e01b81526001600160a01b0391821660048201526024810185905292945016906340c10f19906044015f604051808303815f87803b158015611cdb575f80fd5b505af1158015611ced573d5f803e3d5ffd5b50506016546040516340c10f1960e01b8152336004820152602481018690526001600160a01b0390911692506340c10f1991506044015f604051808303815f87803b158015611d3a575f80fd5b505af1158015611d4c573d5f803e3d5ffd5b50505050505050505050565b611d60611f51565b6001600160a01b038116611d8957604051631e4fbdf760e01b81525f600482015260240161104f565b61106381612078565b611d9a611f51565b611da261204e565b5f5b81811015611e4557846001600160a01b03166323b872dd3086868686818110611dcf57611dcf6133d1565b6040516001600160e01b031960e088901b1681526001600160a01b039586166004820152949093166024850152506020909102013560448201526064015f604051808303815f87803b158015611e23575f80fd5b505af1158015611e35573d5f803e3d5ffd5b505060019092019150611da49050565b506118ab6001600955565b600f54600e5414611e945760405162461bcd60e51b815260206004820152600e60248201526d139bd919480e88139bdd08195b9960921b604482015260640161104f565b335f908152601b6020908152604080832054601c90925290912054611eba9083906133f9565b1115611efe5760405162461bcd60e51b81526020600482015260136024820152724e6f6465203a204f7574206f6620636c61696d60681b604482015260640161104f565b335f908152601c602052604081208054839290611f1c9084906133f9565b9091555061106390503382612636565b5f805482108015610ad35750505f90815260046020526040902054600160e01b161590565b6008546001600160a01b031633146110d05760405163118cdaa760e01b815233600482015260240161104f565b5f815f54811015611fc6575f8181526004602052604081205490600160e01b82169003611fc4575b805f0361168e57505f19015f81815260046020526040902054611fa6565b505b604051636f96cda160e11b815260040160405180910390fd5b815b611feb82846133f9565b811015612047575f818152600d602052604090205460ff161561203f5760405162461bcd60e51b815260206004820152600c60248201526b125b88189b1858dadb1a5cdd60a21b604482015260640161104f565b600101611fe1565b5050505050565b60026009540361207157604051633ee5aeb560e01b815260040160405180910390fd5b6002600955565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f805f6120d6858561274f565b5090925090505f8160038111156120ef576120ef61350f565b14801561210d5750856001600160a01b0316826001600160a01b0316145b8061211e575061211e868686612798565b9695505050505050565b61213061204e565b600e5481600f5461214191906133f9565b11156121885760405162461bcd60e51b8152602060048201526016602482015275139bd919480e8813dd5d081bd9881b585e081cd95b1b60521b604482015260640161104f565b5f805b828110156121c6576010546121a090836133f9565b600f80549193505f6121b183613423565b91905055506121be612367565b60010161218b565b506011546121df906001600160a01b031633308461286e565b335f908152601b6020526040812080548492906121fd9084906133f9565b90915550506011546040805163313ce56760e01b815290516001600160a01b039092169133917ff152feb5fe7641aae5c7f8e8187c26eef1a9d970f7c3794ac442f0842282d93f918691859163313ce567916004808201926020929091908290030181865afa158015612272573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122969190613523565b6122a190600a613623565b6122ab90866134fc565b6040805192835260208301919091520160405180910390a3506110636001600955565b604080516080810182525f8082526020820181905291810182905260608101919091525f82815260046020526040902054610ad3906128a7565b6040516001600160a01b03838116602483015260448201839052610ec391859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b0383818316178352505050506128ee565b6032600f546123769190613631565b5f0361243d576011546040805163313ce56760e01b815290515f926001600160a01b03169163313ce5679160048083019260209291908290030181865afa1580156123c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123e79190613523565b60ff16905061241d6123fa82600a613644565b60135460125460105461240d91906134d1565b61241791906134fc565b9061294f565b60105561242b81600a613644565b60105461243891906134d1565b601055505b610bb8600f541015801561245357506017546002145b156110d057600360178190555f526019602052437f3e323a6e0522b016fa22111dfed945f89456f9f44f69eac00209d92607a5b94055565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a02906124bf90339089908890889060040161364f565b6020604051808303815f875af19250505080156124f9575060408051601f3d908101601f191682019092526124f691810190613681565b60015b612555573d808015612526576040519150601f19603f3d011682016040523d82523d5f602084013e61252b565b606091505b5080515f0361254d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810182525f808252602082018190529181018290526060810191909152610ad36125a283611f7e565b6128a7565b60605f6125b38361299c565b60010190505f816001600160401b038111156125d1576125d1612dfd565b6040519080825280601f01601f1916602001820160405280156125fb576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461260557509392505050565b5f80549082900361265a5760405163b562e8dd60e01b815260040160405180910390fd5b6126665f848385611fdf565b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146127125780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001016126dc565b50815f0361273257604051622e076360e81b815260040160405180910390fd5b5f5550505050565b5f826127468584612a73565b14949350505050565b5f805f8351604103612786576020840151604085015160608601515f1a61277888828585612ab5565b955095509550505050612791565b505081515f91506002905b9250925092565b5f805f856001600160a01b031685856040516024016127b892919061369c565b60408051601f198184030181529181526020820180516001600160e01b0316630b135d3f60e11b179052516127ed91906136b4565b5f60405180830381855afa9150503d805f8114612825576040519150601f19603f3d011682016040523d82523d5f602084013e61282a565b606091505b509150915081801561283e57506020815110155b801561211e57508051630b135d3f60e11b90612863908301602090810190840161340c565b149695505050505050565b6040516001600160a01b0384811660248301528381166044830152606482018390526118ab9186918216906323b872dd90608401612335565b604080516080810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b831615159181019190915260e89190911c606082015290565b5f6129026001600160a01b03841683612b7d565b905080515f1415801561292657508080602001905181019061292491906136cf565b155b15610ec357604051635274afe760e01b81526001600160a01b038416600482015260240161104f565b5f815f036129685761296182846134fc565b9050610ad3565b8215612994578161297a6001856134be565b61298491906134fc565b61298f9060016133f9565b61168e565b5f9392505050565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106129da5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310612a06576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310612a2457662386f26fc10000830492506010015b6305f5e1008310612a3c576305f5e100830492506008015b6127108310612a5057612710830492506004015b60648310612a62576064830492506002015b600a8310610ad35760010192915050565b5f81815b8451811015612aad57612aa382868381518110612a9657612a966133d1565b6020026020010151612b8a565b9150600101612a77565b509392505050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115612aee57505f91506003905082612b73565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015612b3f573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116612b6a57505f925060019150829050612b73565b92505f91508190505b9450945094915050565b606061168e83835f612bb6565b5f818310612ba4575f82815260208490526040902061168e565b5f83815260208390526040902061168e565b606081471015612bdb5760405163cd78605960e01b815230600482015260240161104f565b5f80856001600160a01b03168486604051612bf691906136b4565b5f6040518083038185875af1925050503d805f8114612c30576040519150601f19603f3d011682016040523d82523d5f602084013e612c35565b606091505b509150915061211e868383606082612c505761298f82612c97565b8151158015612c6757506001600160a01b0384163b155b15612c9057604051639996b31560e01b81526001600160a01b038516600482015260240161104f565b508061168e565b805115612ca75780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6001600160e01b031981168114611063575f80fd5b5f60208284031215612ce5575f80fd5b813561168e81612cc0565b5f5b83811015612d0a578181015183820152602001612cf2565b50505f910152565b5f8151808452612d29816020860160208601612cf0565b601f01601f19169290920160200192915050565b602081525f61168e6020830184612d12565b5f60208284031215612d5f575f80fd5b5035919050565b6001600160a01b0381168114611063575f80fd5b5f8060408385031215612d8b575f80fd5b8235612d9681612d66565b946020939093013593505050565b5f60208284031215612db4575f80fd5b813561168e81612d66565b5f805f60608486031215612dd1575f80fd5b8335612ddc81612d66565b92506020840135612dec81612d66565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b5f6001600160401b0380841115612e2a57612e2a612dfd565b604051601f8501601f19908116603f01168101908282118183101715612e5257612e52612dfd565b81604052809350858152868686011115612e6a575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215612e93575f80fd5b81356001600160401b03811115612ea8575f80fd5b8201601f81018413612eb8575f80fd5b61256b84823560208401612e11565b5f8083601f840112612ed7575f80fd5b5081356001600160401b03811115612eed575f80fd5b6020830191508360208260051b8501011115612f07575f80fd5b9250929050565b5f8060208385031215612f1f575f80fd5b82356001600160401b03811115612f34575f80fd5b612f4085828601612ec7565b90969095509350505050565b80516001600160a01b031682526020808201516001600160401b03169083015260408082015115159083015260609081015162ffffff16910152565b602080825282518282018190525f9190848201906040850190845b8181101561147257612fb6838551612f4c565b9284019260809290920191600101612fa3565b5f805f8060608587031215612fdc575f80fd5b84356001600160401b0380821115612ff2575f80fd5b818701915087601f830112613005575f80fd5b813581811115613013575f80fd5b886020828501011115613024575f80fd5b6020928301999098509187013596604001359550909350505050565b602080825282518282018190525f9190848201906040850190845b818110156114725783518352928401929184019160010161305b565b5f8060408385031215613088575f80fd5b823561309381612d66565b915060208301356130a381612d66565b809150509250929050565b5f805f606084860312156130c0575f80fd5b83356130cb81612d66565b95602085013595506040909401359392505050565b8015158114611063575f80fd5b5f80604083850312156130fe575f80fd5b823561310981612d66565b915060208301356130a3816130e0565b5f805f6040848603121561312b575f80fd5b83356001600160401b03811115613140575f80fd5b61314c86828701612ec7565b9094509250506020840135613160816130e0565b809150509250925092565b5f805f806080858703121561317e575f80fd5b843561318981612d66565b9350602085013561319981612d66565b92506040850135915060608501356001600160401b038111156131ba575f80fd5b8501601f810187136131ca575f80fd5b6131d987823560208401612e11565b91505092959194509250565b60808101610ad38284612f4c565b5f805f60408486031215613205575f80fd5b8335925060208401356001600160401b03811115613221575f80fd5b61322d86828701612ec7565b9497909650939450505050565b5f805f806060858703121561324d575f80fd5b843561325881612d66565b9350602085013561326881612d66565b925060408501356001600160401b03811115613282575f80fd5b61328e87828801612ec7565b95989497509550505050565b600181811c908216806132ae57607f821691505b6020821081036132cc57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610ec357805f5260205f20601f840160051c810160208510156132f75750805b601f840160051c820191505b81811015612047575f8155600101613303565b81516001600160401b0381111561332f5761332f612dfd565b6133438161333d845461329a565b846132d2565b602080601f831160018114613376575f841561335f5750858301515b5f19600386901b1c1916600185901b178555610deb565b5f85815260208120601f198616915b828110156133a457888601518255948401946001909101908401613385565b50858210156133c157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ad357610ad36133e5565b5f6020828403121561341c575f80fd5b5051919050565b5f60018201613434576134346133e5565b5060010190565b5f8084546134488161329a565b600182811680156134605760018114613475576134a1565b60ff19841687528215158302870194506134a1565b885f526020805f205f5b858110156134985781548a82015290840190820161347f565b50505082870194505b5050505083516134b5818360208801612cf0565b01949350505050565b81810381811115610ad357610ad36133e5565b8082028115828204841417610ad357610ad36133e5565b634e487b7160e01b5f52601260045260245ffd5b5f8261350a5761350a6134e8565b500490565b634e487b7160e01b5f52602160045260245ffd5b5f60208284031215613533575f80fd5b815160ff8116811461168e575f80fd5b600181815b8085111561357d57815f1904821115613563576135636133e5565b8085161561357057918102915b93841c9390800290613548565b509250929050565b5f8261359357506001610ad3565b8161359f57505f610ad3565b81600181146135b557600281146135bf576135db565b6001915050610ad3565b60ff8411156135d0576135d06133e5565b50506001821b610ad3565b5060208310610133831016604e8410600b84101617156135fe575081810a610ad3565b6136088383613543565b805f190482111561361b5761361b6133e5565b029392505050565b5f61168e60ff841683613585565b5f8261363f5761363f6134e8565b500690565b5f61168e8383613585565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061211e90830184612d12565b5f60208284031215613691575f80fd5b815161168e81612cc0565b828152604060208201525f61256b6040830184612d12565b5f82516136c5818460208701612cf0565b9190910192915050565b5f602082840312156136df575f80fd5b815161168e816130e056fea26469706673582212204aa204ea4a227e87dcb2b83f2db3b9ad16a48ba95dc1b66a046eace07b90537e64736f6c63430008160033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.001747 | 2,439,214 | $4,262.24 |
Loading...
Loading
[ Download: CSV Export ]
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.