Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 16774086 | 631 days ago | IN | 0 ETH | 0.00066969 | ||||
Safe Transfer Fr... | 16774038 | 631 days ago | IN | 0 ETH | 0.00076536 | ||||
Safe Transfer Fr... | 16773812 | 631 days ago | IN | 0 ETH | 0.00067677 | ||||
Safe Transfer Fr... | 16773574 | 631 days ago | IN | 0 ETH | 0.00088824 | ||||
Safe Transfer Fr... | 16773550 | 631 days ago | IN | 0 ETH | 0.00097142 | ||||
Initialize | 16529037 | 665 days ago | IN | 0 ETH | 0.0065655 | ||||
0x61014060 | 16528307 | 665 days ago | IN | 0 ETH | 0.14521981 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
StructERC721
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 3333 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import { PaymentSplitterUpgradeable } from "@openzeppelin/contracts-upgradeable/finance/PaymentSplitterUpgradeable.sol"; import { ECDSAUpgradeable as ECDSA } from "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol"; import { AddressUpgradeable as Address } from "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import { OperatorFilterer } from "closedsea/src/OperatorFilterer.sol"; import { IERC721AUpgradeable, ERC721AUpgradeable, ERC721AQueryableUpgradeable } from "erc721a-upgradeable/contracts/extensions/ERC721AQueryableUpgradeable.sol"; import { IStructPass } from "../../../interfaces/IStructPass.sol"; import { IStructNonceManager } from "../../../interfaces/IStructNonceManager.sol"; import { IStructRandomnessManager } from "../../../interfaces/IStructRandomnessManager.sol"; error StructERC721_ExceedsMaxPerAddress(); error StructERC721_FunctionLocked(); error StructERC721_InsufficientSupply(); error StructERC721_InvalidConfiguration(); error StructERC721_InvalidMetadataState(); error StructERC721_InvalidMintStatus(); error StructERC721_InvalidSignature(); error StructERC721_InvalidTransactionValue(); error StructERC721_NoContractMinting(); /** .-==+++++++++++++++++++++++++++++++=-: :=*%##########################################+- .+%##################################################- .*######################################################%= *##################%*##################*###################%: .###################+ :##############+ :###################= :####################= ##############= ####################* .#####################= ##############= #####################+ ######################* -##############* -###################### .#########################%##################%#######################= :####################################################################* .%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%= .-+*##############################*- .=########*+=. -######################################+: -###############%= *#########################################%= :+#################### *##############################################- .+%######################% .##################################################- =%##########################- :####################################################%#%#############################- ###################################################################################% *################################################################################# -#############################################################################%= -+*#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%##+=. .#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#= -####################################################################* .####################################################################= ####################################################################. .##################################################################+ :################################################################* :##############################################################+ .############################################################- :########################################################= :*###################################################= :+###########################################%*-. :-=+******************************++=:. * @title Logic contract for standard ERC721 token drops through structNFT.com * @author Augminted Labs, LLC * @notice Contract has been optimized for security, transparency, and fairness */ contract StructERC721 is ERC721AQueryableUpgradeable, PaymentSplitterUpgradeable, OwnableUpgradeable, OperatorFilterer { using Address for address; using ECDSA for bytes32; struct Config { address signer; uint16 maxSupply; uint16 reserveAmount; bool offsetEnabled; bool operatorFilterEnabled; bool revealed; } struct MintSettings { MintStatus status; uint16 maxPerAddress; uint112 privatePrice; uint112 publicPrice; } enum MintStatus { UNINITIALIZED, CLOSED, PUBLIC, PRIVATE, OPEN } uint16 private constant _MAX_SUPPLY_LIMIT = 10_000; uint256 private constant _FREE_MINT_TOKEN_PRICE = 0.00005 ether; uint112 private constant _PAID_MINT_PRICE_MIN = 0.0025 ether; uint256 private constant _TOTAL_SHARES_ALLOC = 100_000; uint256 private constant _STRUCT_SHARES_ALLOC = 5_000; address payable private immutable _STRUCT; address private immutable _RECEIPT_ISSUER; IStructPass private immutable _STRUCT_PASS; IStructNonceManager private immutable _NONCE_MANAGER; IStructRandomnessManager private immutable _RANDOMNESS_MANAGER; bytes32 private immutable _TOKEN_OFFSET_SLOT; uint256 private _payeesCount; Config public config; MintSettings public mintSettings; string public provenanceHash; string public uri; mapping(bytes4 => bool) public functionLocked; constructor( address _struct, address _receiptIssuer, IStructPass _structPass, IStructNonceManager _nonceManager, IStructRandomnessManager _randomnessManager ) { _STRUCT = payable(_struct); _RECEIPT_ISSUER = _receiptIssuer; _STRUCT_PASS = _structPass; _NONCE_MANAGER = _nonceManager; _RANDOMNESS_MANAGER = _randomnessManager; _TOKEN_OFFSET_SLOT = _randomnessManager.TOKEN_OFFSET_SLOT(); } /** * @notice Initialize a new proxy instance of the contract * @param _name Name of the contract * @param _symbol Symbol of the contract * @param _uri Placeholder or base token URI depending on revealed state * @param _provenanceHash Hash of the metadata to commit before reveal * @param _config Contract configuration */ function initialize( string calldata _name, string calldata _symbol, string calldata _uri, string calldata _provenanceHash, Config calldata _config ) initializerERC721A initializer payable public { if (_config.maxSupply > _MAX_SUPPLY_LIMIT) revert StructERC721_InvalidConfiguration(); if (_config.revealed && _config.offsetEnabled) revert StructERC721_InvalidConfiguration(); __ERC721A_init(_name, _symbol); __Ownable_init(); uri = _uri; provenanceHash = _provenanceHash; config = _config; if (_config.operatorFilterEnabled) _registerForOperatorFiltering(); _mintReserve(msg.sender); } /** * @notice Initialize mint * @param _payees Addresses to receive split of the revenue * @param _shares Corresponding shares for each address * @param _mintSettings Initial mint settings * @param _receipt Signature created by _RECEIPT_ISSUER indicating fee was prepaid * @param _nonce Once usable value use as a unique identifier for receipts */ function initializeMint( address[] calldata _payees, uint256[] calldata _shares, MintSettings calldata _mintSettings, bytes calldata _receipt, uint256 _nonce ) reinitializer(2) onlyOwner payable public { if (_mintSettings.status == MintStatus.UNINITIALIZED) revert StructERC721_InvalidMintStatus(); if (_payees.length == 0) revert StructERC721_InvalidConfiguration(); __PaymentSplitter_init(_payees, _shares); _payeesCount = _payees.length; if (_STRUCT_PASS.balanceOf(msg.sender) == 0) { if ( _mintSettings.publicPrice < _PAID_MINT_PRICE_MIN || _mintSettings.privatePrice < _PAID_MINT_PRICE_MIN ) { if (!_validatePrepaid(_receipt, _nonce)) Address.sendValue(_STRUCT, _FREE_MINT_TOKEN_PRICE * uint256(config.maxSupply)); } else { if (totalShares() != _TOTAL_SHARES_ALLOC || shares(_STRUCT) != _STRUCT_SHARES_ALLOC) revert StructERC721_InvalidConfiguration(); } } mintSettings = _mintSettings; } /** * @notice Throws if function has been permanently disabled */ modifier lockable() { if (functionLocked[msg.sig]) revert StructERC721_FunctionLocked(); _; } /** * @notice Override ERC721 _baseURI function to use base URI pattern */ function _baseURI() internal view virtual override returns (string memory) { return uri; } /** * @notice Internal function for minting reserves to a specified address * @dev This should only be called in the initializer * @param _to Receiving address of the minted reserve tokens */ function _mintReserve(address _to) internal { if (config.reserveAmount > config.maxSupply) revert StructERC721_InsufficientSupply(); if (config.reserveAmount > 0) _mint(_to, config.reserveAmount); } /** * @notice Internal function for validating receipts * @param _receipt Signature created by _RECEIPT_ISSUER indicating fee was prepaid * @param _nonce Once usable value use as a unique identifier for receipts */ function _validatePrepaid(bytes calldata _receipt, uint256 _nonce) internal returns (bool) { if (_receipt.length == 0 || _NONCE_MANAGER.nonceConsumed(_nonce)) return false; bool validated = _RECEIPT_ISSUER == ECDSA.recover( ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(_nonce, address(this), msg.sender))), _receipt ); if (validated) _NONCE_MANAGER.consumeNonce(_nonce); return validated; } /** * @notice Return token metadata * @param tokenId Token to return the metadata for * @return Token URI for the specified token */ function tokenURI(uint256 tokenId) public view virtual override(ERC721AUpgradeable, IERC721AUpgradeable) returns (string memory) { return config.revealed ? ERC721AUpgradeable.tokenURI(tokenId) : _baseURI(); } /** * @notice Token offset is added to the token ID (wrapped on overflow) to get metadata asset index */ function tokenOffset() public view returns (uint256) { if (!config.offsetEnabled) revert StructERC721_InvalidConfiguration(); return _RANDOMNESS_MANAGER.randomness(address(this), _TOKEN_OFFSET_SLOT) % config.maxSupply; } /** * @notice Return the number of tokens an address has minted * @param account Address to return the number of tokens minted for */ function numberMinted(address account) public view returns (uint256) { return _numberMinted(account); } /** * @notice One-directional lock for functions that are no longer needed * @dev WARNING: A LOCKED FUNCTION CAN NEVER BE UNLOCKED * @dev struct IS NOT RESPONSIBLE FOR ACCIDENTALLY LOCKED FUNCTIONS * @param id First 4 bytes of the calldata (i.e. function identifier) */ function lockFunction(bytes4 id) public lockable onlyOwner { functionLocked[id] = true; } /** * @notice Set new mint configuration for the collection * @param newMintSettings New mint settings * @param receipt Signature created by _RECEIPT_ISSUER indicating fee was prepaid * @param nonce Once usable value use as a unique identifier for receipts */ function setMintSettings( MintSettings calldata newMintSettings, bytes calldata receipt, uint256 nonce ) public payable lockable onlyOwner { if (mintSettings.status == MintStatus.UNINITIALIZED || newMintSettings.status == MintStatus.UNINITIALIZED) revert StructERC721_InvalidMintStatus(); if ( _STRUCT_PASS.balanceOf(msg.sender) == 0 && (mintSettings.publicPrice >= _PAID_MINT_PRICE_MIN && newMintSettings.publicPrice < _PAID_MINT_PRICE_MIN) || (mintSettings.privatePrice >= _PAID_MINT_PRICE_MIN && newMintSettings.privatePrice < _PAID_MINT_PRICE_MIN) ) { if (!_validatePrepaid(receipt, nonce)) Address.sendValue(_STRUCT, _FREE_MINT_TOKEN_PRICE * uint256(config.maxSupply)); } mintSettings = newMintSettings; } /** * @notice Set collection operator filter status * @dev Qualification for OpenSea royalties is not strongly defined * @dev https://github.com/ProjectOpenSea/operator-filter-registry#creator-earnings-enforcement * @dev This setting is ideally enabled/disabled a single time before any tokens are minted * @dev struct IS NOT RESPONSIBLE FOR DISQUALIFICATION DUE TO EXPERIMENTATION WITH OPERATOR FILTER * @param enabled New state of the operator filter */ function setOperatorFilter(bool enabled) public payable lockable onlyOwner { config.operatorFilterEnabled = enabled; if (enabled) _registerForOperatorFiltering(); } /** * @notice Set provenance hash for the collection * @param newProvenanceHash New hash of the metadata */ function setProvenanceHash(string calldata newProvenanceHash) public payable lockable onlyOwner { if (config.offsetEnabled) _RANDOMNESS_MANAGER.requireRandomnessState(address(this), _TOKEN_OFFSET_SLOT, false); provenanceHash = newProvenanceHash; } /** * @notice Set collection revealed status and token URI * @param revealed New token reveal status * @param newUri Placeholder or base token URI depending on revealed state */ function setRevealed(bool revealed, string calldata newUri) public payable lockable onlyOwner { if (config.offsetEnabled) _RANDOMNESS_MANAGER.requireRandomnessState(address(this), _TOKEN_OFFSET_SLOT, true); config.revealed = revealed; uri = newUri; } /** * @notice Set the offset for the token metadata * @param useVRF Indicates if the Chainlink VRF should be used to generated randomness */ function setOffset(bool useVRF) public payable lockable onlyOwner { if (!config.offsetEnabled) revert StructERC721_InvalidConfiguration(); if (bytes(provenanceHash).length == 0) revert StructERC721_InvalidMetadataState(); (useVRF ? _RANDOMNESS_MANAGER.setWithVRF : _RANDOMNESS_MANAGER.setWithPRNG )(address(this), _TOKEN_OFFSET_SLOT); } /** * @notice Mint a specified amount of tokens using a signature * @param amount Amount of tokens to mint * @param signature Ethereum signed message, created by `signer` */ function privateMint(uint256 amount, bytes memory signature) public payable lockable { if (mintSettings.status != MintStatus.PRIVATE && mintSettings.status != MintStatus.OPEN) revert StructERC721_InvalidMintStatus(); if (config.signer != ECDSA.recover( ECDSA.toEthSignedMessageHash(keccak256(abi.encodePacked(msg.sender))), signature )) revert StructERC721_InvalidSignature(); _mint(amount, mintSettings.privatePrice); } /** * @notice Mint a specified number of tokens * @param amount Amount of tokens to mint */ function publicMint(uint256 amount) public payable lockable { if (mintSettings.status != MintStatus.PUBLIC && mintSettings.status != MintStatus.OPEN) revert StructERC721_InvalidMintStatus(); _mint(amount, mintSettings.publicPrice); } /** * @notice Internal function to mint a specified amount of tokens * @param _amount Amount of tokens to mint */ function _mint(uint256 _amount, uint112 _price) internal { if (msg.sender != tx.origin) revert StructERC721_NoContractMinting(); if (msg.value != _amount * _price) revert StructERC721_InvalidTransactionValue(); if (_totalMinted() + _amount > config.maxSupply) revert StructERC721_InsufficientSupply(); if (_numberMinted(msg.sender) + _amount > mintSettings.maxPerAddress) revert StructERC721_ExceedsMaxPerAddress(); _mint(msg.sender, _amount); } /** * @notice Release funds to all share holders */ function releaseAll() public payable onlyOwner { for (uint256 i; i < _payeesCount;) { release(payable(payee(i))); unchecked { ++i; } } } /** * @inheritdoc ERC721AUpgradeable */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC721AUpgradeable, ERC721AUpgradeable) returns (bool) { return super.supportsInterface(interfaceId); } /** * @inheritdoc ERC721AUpgradeable */ function setApprovalForAll(address operator, bool approved) public override(ERC721AUpgradeable, IERC721AUpgradeable) onlyAllowedOperatorApproval(operator, config.operatorFilterEnabled) { super.setApprovalForAll(operator, approved); } /** * @inheritdoc ERC721AUpgradeable */ function approve(address operator, uint256 tokenId) public payable override(ERC721AUpgradeable, IERC721AUpgradeable) onlyAllowedOperatorApproval(operator, config.operatorFilterEnabled) { super.approve(operator, tokenId); } /** * @inheritdoc ERC721AUpgradeable */ function transferFrom( address from, address to, uint256 tokenId ) public payable override(ERC721AUpgradeable, IERC721AUpgradeable) onlyAllowedOperator(from, config.operatorFilterEnabled) { super.transferFrom(from, to, tokenId); } /** * @inheritdoc ERC721AUpgradeable */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override(ERC721AUpgradeable, IERC721AUpgradeable) onlyAllowedOperator(from, config.operatorFilterEnabled) { super.safeTransferFrom(from, to, tokenId); } /** * @inheritdoc ERC721AUpgradeable */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override(ERC721AUpgradeable, IERC721AUpgradeable) onlyAllowedOperator(from, config.operatorFilterEnabled) { super.safeTransferFrom(from, to, tokenId, data); } }
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; interface IStructPass { function balanceOf(address owner) external view returns (uint256 balance); }
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; interface IStructRandomnessManager { function TOKEN_OFFSET_SLOT() external view returns (bytes32); function randomness(address collection, bytes32 slot) external view returns (uint256); function requireRandomnessState(address collection, bytes32 slot, bool set) external view; function setWithPRNG(address collection, bytes32 slot) external payable; function setWithVRF(address collection, bytes32 slot) external payable; }
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; interface IStructNonceManager { function nonceConsumed(uint256 nonce) external view returns (bool); function requireNonceState(uint256 nonce, bool consumed) external view; function consumeNonce(uint256 nonce) external payable; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "../token/ERC20/utils/SafeERC20Upgradeable.sol"; import "../utils/AddressUpgradeable.sol"; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the * time of contract deployment and can't be updated thereafter. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitterUpgradeable is Initializable, ContextUpgradeable { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20Upgradeable indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20Upgradeable => uint256) private _erc20TotalReleased; mapping(IERC20Upgradeable => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ function __PaymentSplitter_init(address[] memory payees, uint256[] memory shares_) internal onlyInitializing { __PaymentSplitter_init_unchained(payees, shares_); } function __PaymentSplitter_init_unchained(address[] memory payees, uint256[] memory shares_) internal onlyInitializing { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20Upgradeable token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20Upgradeable token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Getter for the amount of payee's releasable Ether. */ function releasable(address account) public view returns (uint256) { uint256 totalReceived = address(this).balance + totalReleased(); return _pendingPayment(account, totalReceived, released(account)); } /** * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an * IERC20 contract. */ function releasable(IERC20Upgradeable token, address account) public view returns (uint256) { uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); return _pendingPayment(account, totalReceived, released(token, account)); } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(account); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; AddressUpgradeable.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20Upgradeable token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(token, account); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20Upgradeable.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[43] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../StringsUpgradeable.sol"; /** * @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 ECDSAUpgradeable { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode 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 {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] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { 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); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode 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 {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); 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] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); 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. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // 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); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // 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); } return (signer, RecoverError.NoError); } /** * @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) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", StringsUpgradeable.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @notice Optimized and flexible operator filterer to abide to OpenSea's /// mandatory on-chain royalty enforcement in order for new collections to /// receive royalties. /// For more information, see: /// See: https://github.com/ProjectOpenSea/operator-filter-registry abstract contract OperatorFilterer { /// @dev The default OpenSea operator blocklist subscription. address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; /// @dev The OpenSea operator filter registry. address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E; /// @dev Registers the current contract to OpenSea's operator filter, /// and subscribe to the default OpenSea operator blocklist. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering() internal virtual { _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true); } /// @dev Registers the current contract to OpenSea's operator filter. /// Note: Will not revert nor update existing settings for repeated registration. function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual { /// @solidity memory-safe-assembly assembly { let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`. // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty. subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy)) // prettier-ignore for {} iszero(subscribe) {} { if iszero(subscriptionOrRegistrantToCopy) { functionSelector := 0x4420e486 // `register(address)`. break } functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`. break } // Store the function selector. mstore(0x00, shl(224, functionSelector)) // Store the `address(this)`. mstore(0x04, address()) // Store the `subscriptionOrRegistrantToCopy`. mstore(0x24, subscriptionOrRegistrantToCopy) // Register into the registry. pop(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x00)) // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, because of Solidity's memory size limits. mstore(0x24, 0) } } /// @dev Modifier to guard a function and revert if the caller is a blocked operator. /// Can be turned on / off via `enabled`. /// For gas efficiency, you can use tight variable packing to efficiently read / write /// the boolean value for `enabled`. modifier onlyAllowedOperator(address from, bool enabled) virtual { if (enabled) if (from != msg.sender) if (!_isPriorityOperator(msg.sender)) _revertIfBlocked(msg.sender); _; } /// @dev Modifier to guard a function from approving a blocked operator. /// Can be turned on / off via `enabled`. /// For efficiency, you can use tight variable packing to efficiently read / write /// the boolean value for `enabled`. modifier onlyAllowedOperatorApproval(address operator, bool enabled) virtual { if (enabled) if (!_isPriorityOperator(operator)) _revertIfBlocked(operator); _; } /// @dev Helper function that reverts if the `operator` is blocked by the registry. function _revertIfBlocked(address operator) private view { /// @solidity memory-safe-assembly assembly { // Store the function selector of `isOperatorAllowed(address,address)`, // shifted left by 6 bytes, which is enough for 8tb of memory. // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL). mstore(0x00, 0xc6171134001122334455) // Store the `address(this)`. mstore(0x1a, address()) // Store the `operator`. mstore(0x3a, operator) // `isOperatorAllowed` always returns true if it does not revert. if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) { // Bubble up the revert if the staticcall reverts. returndatacopy(0x00, 0x00, returndatasize()) revert(0x00, returndatasize()) } // We'll skip checking if `from` is inside the blacklist. // Even though that can block transferring out of wrapper contracts, // we don't want tokens to be stuck. // Restore the part of the free memory pointer that was overwritten, // which is guaranteed to be zero, if less than 8tb of memory is used. mstore(0x3a, 0) } } /// @dev For deriving contracts to override, such that preferred marketplaces can /// skip the OpenSea registry check, helping users save gas. function _isPriorityOperator(address) internal view virtual returns (bool) { return false; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721AQueryableUpgradeable.sol'; import '../ERC721AUpgradeable.sol'; import '../ERC721A__Initializable.sol'; /** * @title ERC721AQueryable. * * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryableUpgradeable is ERC721A__Initializable, ERC721AUpgradeable, IERC721AQueryableUpgradeable { function __ERC721AQueryable_init() internal onlyInitializingERC721A { __ERC721AQueryable_init_unchained(); } function __ERC721AQueryable_init_unchained() internal onlyInitializingERC721A {} /** * @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 // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; import "../extensions/draft-IERC20PermitUpgradeable.sol"; import "../../../utils/AddressUpgradeable.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 SafeERC20Upgradeable { using AddressUpgradeable for address; function safeTransfer( IERC20Upgradeable token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20Upgradeable token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20Upgradeable token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20PermitUpgradeable token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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(IERC20Upgradeable 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, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @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. */ interface IERC20PermitUpgradeable { /** * @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]. */ 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 v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @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); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721AUpgradeable.sol'; import {ERC721AStorage} from './ERC721AStorage.sol'; import './ERC721A__Initializable.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721ReceiverUpgradeable { 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 ERC721AUpgradeable is ERC721A__Initializable, IERC721AUpgradeable { using ERC721AStorage for ERC721AStorage.Layout; // ============================================================= // 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; // ============================================================= // CONSTRUCTOR // ============================================================= function __ERC721A_init(string memory name_, string memory symbol_) internal onlyInitializingERC721A { __ERC721A_init_unchained(name_, symbol_); } function __ERC721A_init_unchained(string memory name_, string memory symbol_) internal onlyInitializingERC721A { ERC721AStorage.layout()._name = name_; ERC721AStorage.layout()._symbol = symbol_; ERC721AStorage.layout()._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 ERC721AStorage.layout()._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 ERC721AStorage.layout()._currentIndex - ERC721AStorage.layout()._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 ERC721AStorage.layout()._currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return ERC721AStorage.layout()._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 ERC721AStorage.layout()._packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (ERC721AStorage.layout()._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 (ERC721AStorage.layout()._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(ERC721AStorage.layout()._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 = ERC721AStorage.layout()._packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); ERC721AStorage.layout()._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 ERC721AStorage.layout()._name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return ERC721AStorage.layout()._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(ERC721AStorage.layout()._packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (ERC721AStorage.layout()._packedOwnerships[index] == 0) { ERC721AStorage.layout()._packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) { if (_startTokenId() <= tokenId) { packed = ERC721AStorage.layout()._packedOwnerships[tokenId]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // If the data at the starting slot does not exist, start the scan. if (packed == 0) { if (tokenId >= ERC721AStorage.layout()._currentIndex) revert OwnerQueryForNonexistentToken(); // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `tokenId` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. for (;;) { unchecked { packed = ERC721AStorage.layout()._packedOwnerships[--tokenId]; } if (packed == 0) continue; return packed; } } // Otherwise, the data exists and is not burned. We can skip the scan. // This is possible because we have already achieved the target condition. // This saves 2143 gas on transfers of initialized tokens. 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. See {ERC721A-_approve}. * * Requirements: * * - The caller must own the token or be an approved operator. */ function approve(address to, uint256 tokenId) public payable virtual override { _approve(to, tokenId, true); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return ERC721AStorage.layout()._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 { ERC721AStorage.layout()._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 ERC721AStorage.layout()._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 < ERC721AStorage.layout()._currentIndex && // If within bounds, ERC721AStorage.layout()._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) { ERC721AStorage.TokenApprovalRef storage tokenApproval = ERC721AStorage.layout()._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. --ERC721AStorage.layout()._packedAddressData[from]; // Updates: `balance -= 1`. ++ERC721AStorage.layout()._packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. ERC721AStorage.layout()._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 (ERC721AStorage.layout()._packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != ERC721AStorage.layout()._currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. ERC721AStorage.layout()._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__IERC721ReceiverUpgradeable(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (bytes4 retval) { return retval == ERC721A__IERC721ReceiverUpgradeable(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 = ERC721AStorage.layout()._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`. ERC721AStorage.layout()._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`. ERC721AStorage.layout()._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(); ERC721AStorage.layout()._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 = ERC721AStorage.layout()._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`. ERC721AStorage.layout()._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`. ERC721AStorage.layout()._packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); ERC721AStorage.layout()._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 = ERC721AStorage.layout()._currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (ERC721AStorage.layout()._currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Equivalent to `_approve(to, tokenId, false)`. */ function _approve(address to, uint256 tokenId) internal virtual { _approve(to, tokenId, false); } /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - `tokenId` must exist. * * Emits an {Approval} event. */ function _approve( address to, uint256 tokenId, bool approvalCheck ) internal virtual { address owner = ownerOf(tokenId); if (approvalCheck) if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } ERC721AStorage.layout()._tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _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;`. ERC721AStorage.layout()._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`. ERC721AStorage.layout()._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 (ERC721AStorage.layout()._packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != ERC721AStorage.layout()._currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. ERC721AStorage.layout()._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 { ERC721AStorage.layout()._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 = ERC721AStorage.layout()._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); ERC721AStorage.layout()._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 pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable diamond facet contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ import {ERC721A__InitializableStorage} from './ERC721A__InitializableStorage.sol'; abstract contract ERC721A__Initializable { using ERC721A__InitializableStorage for ERC721A__InitializableStorage.Layout; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializerERC721A() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require( ERC721A__InitializableStorage.layout()._initializing ? _isConstructor() : !ERC721A__InitializableStorage.layout()._initialized, 'ERC721A__Initializable: contract is already initialized' ); bool isTopLevelCall = !ERC721A__InitializableStorage.layout()._initializing; if (isTopLevelCall) { ERC721A__InitializableStorage.layout()._initializing = true; ERC721A__InitializableStorage.layout()._initialized = true; } _; if (isTopLevelCall) { ERC721A__InitializableStorage.layout()._initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializingERC721A() { require( ERC721A__InitializableStorage.layout()._initializing, 'ERC721A__Initializable: contract is not initializing' ); _; } /// @dev Returns true if and only if the function is running in the constructor function _isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import '../IERC721AUpgradeable.sol'; /** * @dev Interface of ERC721AQueryable. */ interface IERC721AQueryableUpgradeable is IERC721AUpgradeable { /** * 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 IERC721AUpgradeable { /** * 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library ERC721AStorage { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } struct Layout { // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 _currentIndex; // The number of tokens burned. uint256 _burnCounter; // Token name string _name; // Token symbol string _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) _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => ERC721AStorage.TokenApprovalRef) _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) _operatorApprovals; } bytes32 internal constant STORAGE_SLOT = keccak256('ERC721A.contracts.storage.ERC721A'); function layout() internal pure returns (Layout storage l) { bytes32 slot = STORAGE_SLOT; assembly { l.slot := slot } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base storage for the initialization function for upgradeable diamond facet contracts **/ library ERC721A__InitializableStorage { struct Layout { /* * Indicates that the contract has been initialized. */ bool _initialized; /* * Indicates that the contract is in the process of being initialized. */ bool _initializing; } bytes32 internal constant STORAGE_SLOT = keccak256('ERC721A.contracts.storage.initializable.facet'); function layout() internal pure returns (Layout storage l) { bytes32 slot = STORAGE_SLOT; assembly { l.slot := slot } } }
{ "optimizer": { "enabled": true, "runs": 3333 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_struct","type":"address"},{"internalType":"address","name":"_receiptIssuer","type":"address"},{"internalType":"contract IStructPass","name":"_structPass","type":"address"},{"internalType":"contract IStructNonceManager","name":"_nonceManager","type":"address"},{"internalType":"contract IStructRandomnessManager","name":"_randomnessManager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"StructERC721_ExceedsMaxPerAddress","type":"error"},{"inputs":[],"name":"StructERC721_FunctionLocked","type":"error"},{"inputs":[],"name":"StructERC721_InsufficientSupply","type":"error"},{"inputs":[],"name":"StructERC721_InvalidConfiguration","type":"error"},{"inputs":[],"name":"StructERC721_InvalidMetadataState","type":"error"},{"inputs":[],"name":"StructERC721_InvalidMintStatus","type":"error"},{"inputs":[],"name":"StructERC721_InvalidSignature","type":"error"},{"inputs":[],"name":"StructERC721_InvalidTransactionValue","type":"error"},{"inputs":[],"name":"StructERC721_NoContractMinting","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20Upgradeable","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"operator","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":"config","outputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"uint16","name":"reserveAmount","type":"uint16"},{"internalType":"bool","name":"offsetEnabled","type":"bool"},{"internalType":"bool","name":"operatorFilterEnabled","type":"bool"},{"internalType":"bool","name":"revealed","type":"bool"}],"stateMutability":"view","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 IERC721AUpgradeable.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 IERC721AUpgradeable.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"string","name":"_provenanceHash","type":"string"},{"components":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"uint16","name":"reserveAmount","type":"uint16"},{"internalType":"bool","name":"offsetEnabled","type":"bool"},{"internalType":"bool","name":"operatorFilterEnabled","type":"bool"},{"internalType":"bool","name":"revealed","type":"bool"}],"internalType":"struct StructERC721.Config","name":"_config","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"},{"components":[{"internalType":"enum StructERC721.MintStatus","name":"status","type":"uint8"},{"internalType":"uint16","name":"maxPerAddress","type":"uint16"},{"internalType":"uint112","name":"privatePrice","type":"uint112"},{"internalType":"uint112","name":"publicPrice","type":"uint112"}],"internalType":"struct StructERC721.MintSettings","name":"_mintSettings","type":"tuple"},{"internalType":"bytes","name":"_receipt","type":"bytes"},{"internalType":"uint256","name":"_nonce","type":"uint256"}],"name":"initializeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintSettings","outputs":[{"internalType":"enum StructERC721.MintStatus","name":"status","type":"uint8"},{"internalType":"uint16","name":"maxPerAddress","type":"uint16"},{"internalType":"uint112","name":"privatePrice","type":"uint112"},{"internalType":"uint112","name":"publicPrice","type":"uint112"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20Upgradeable","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20Upgradeable","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"releaseAll","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract IERC20Upgradeable","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[{"components":[{"internalType":"enum StructERC721.MintStatus","name":"status","type":"uint8"},{"internalType":"uint16","name":"maxPerAddress","type":"uint16"},{"internalType":"uint112","name":"privatePrice","type":"uint112"},{"internalType":"uint112","name":"publicPrice","type":"uint112"}],"internalType":"struct StructERC721.MintSettings","name":"newMintSettings","type":"tuple"},{"internalType":"bytes","name":"receipt","type":"bytes"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"setMintSettings","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"useVRF","type":"bool"}],"name":"setOffset","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setOperatorFilter","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"newProvenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"revealed","type":"bool"},{"internalType":"string","name":"newUri","type":"string"}],"name":"setRevealed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenOffset","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":[{"internalType":"contract IERC20Upgradeable","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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":[],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101406040523480156200001257600080fd5b5060405162005e6d38038062005e6d8339810160408190526200003591620000e8565b6001600160a01b0380861660805284811660a05283811660c05282811660e052811661010081905260408051634ae80cdb60e11b815290516395d019b6916004808201926020929091908290030181865afa15801562000099573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000bf919062000168565b6101205250620001829350505050565b6001600160a01b0381168114620000e557600080fd5b50565b600080600080600060a086880312156200010157600080fd5b85516200010e81620000cf565b60208701519095506200012181620000cf565b60408701519094506200013481620000cf565b60608701519093506200014781620000cf565b60808701519092506200015a81620000cf565b809150509295509295909350565b6000602082840312156200017b57600080fd5b5051919050565b60805160a05160c05160e0516101005161012051615c4e6200021f60003960008181610ce3015281816116e801528181611aa30152612a19015260008181610d100152818161171501528181611a2501528181611a590152612a4c01526000818161343701526135b501526000818161145d01526124b70152600061355501526000818161154d015281816115af015261260f0152615c4e6000f3fe60806040526004361061032d5760003560e01c80638b83209b116101a5578063c45ac050116100ec578063dc33e68111610095578063e985e9c51161006f578063e985e9c5146109ef578063eac989f814610a57578063ed8d458114610a6c578063f2fde38b14610ad157600080fd5b8063dc33e681146109a5578063dc8c57b4146109c5578063e33b7de3146109da57600080fd5b8063ce7c2ac2116100c6578063ce7c2ac214610926578063cf4e986e1461095c578063d79779b21461096f57600080fd5b8063c45ac050146108d1578063c6ab67a3146108f1578063c87b56dd1461090657600080fd5b8063a22cb4651161014e578063b88d4fde11610128578063b88d4fde14610861578063bbadfe7614610874578063c23dc68f146108a457600080fd5b8063a22cb4651461080e578063a3f8eace1461082e578063b3e857981461084e57600080fd5b806395d89b411161017f57806395d89b41146107a35780639852595c146107b857806399a2557a146107ee57600080fd5b80638b83209b146107525780638da5cb5b1461077257806392eca5b41461079057600080fd5b806342842e0e116102745780636352211e1161021d57806379502c55116101f757806379502c55146106375780637a2a75be146106ff5780637ce3c59b146107125780638462151c1461072557600080fd5b80636352211e146105e257806370a0823114610602578063715018a61461062257600080fd5b80634c9f191e1161024e5780634c9f191e1461059a5780635bbb2177146105ad5780635be7fde8146105da57600080fd5b806342842e0e1461055457806348b75044146105675780634b615e671461058757600080fd5b806319165587116102d657806334531828116102b057806334531828146104d95780633a98ef39146104f9578063406072a91461050e57600080fd5b8063191655871461049357806323b872dd146104b35780632db11544146104c657600080fd5b8063095ea7b311610307578063095ea7b31461040a578063109695231461041f57806318160ddd1461043257600080fd5b806301ffc9a71461037b57806306fdde03146103b0578063081812fc146103d257600080fd5b36610376577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561038757600080fd5b5061039b610396366004614c67565b610af1565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103c5610b02565b6040516103a79190614cd4565b3480156103de57600080fd5b506103f26103ed366004614ce7565b610bb6565b6040516001600160a01b0390911681526020016103a7565b61041d610418366004614d15565b610c32565b005b61041d61042d366004614d83565b610c60565b34801561043e57600080fd5b507f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c41547f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4054035b6040519081526020016103a7565b34801561049f57600080fd5b5061041d6104ae366004614dc5565b610d85565b61041d6104c1366004614de2565b610f30565b61041d6104d4366004614ce7565b610f70565b3480156104e557600080fd5b5061041d6104f4366004614c67565b61103d565b34801561050557600080fd5b50603354610485565b34801561051a57600080fd5b50610485610529366004614e23565b6001600160a01b03918216600090815260396020908152604080832093909416825291909152205490565b61041d610562366004614de2565b6110a5565b34801561057357600080fd5b5061041d610582366004614e23565b6110de565b61041d610595366004614eb9565b6112ad565b61041d6105a8366004614f7e565b611665565b3480156105b957600080fd5b506105cd6105c8366004614fd3565b6117ce565b6040516103a79190615009565b61041d61189a565b3480156105ee57600080fd5b506103f26105fd366004614ce7565b6118c3565b34801561060e57600080fd5b5061048561061d366004614dc5565b6118ce565b34801561062e57600080fd5b5061041d611955565b34801561064357600080fd5b506098546106ba906001600160a01b0381169061ffff600160a01b820481169176010000000000000000000000000000000000000000000081049091169060ff600160c01b8204811691600160c81b81048216917a0100000000000000000000000000000000000000000000000000009091041686565b604080516001600160a01b03909716875261ffff95861660208801529490931693850193909352151560608401529015156080830152151560a082015260c0016103a7565b61041d61070d366004615086565b611969565b61041d6107203660046150a3565b611af8565b34801561073157600080fd5b50610745610740366004614dc5565b611ec2565b6040516103a791906151a1565b34801561075e57600080fd5b506103f261076d366004614ce7565b611fc3565b34801561077e57600080fd5b506065546001600160a01b03166103f2565b61041d61079e36600461527c565b611ff3565b3480156107af57600080fd5b506103c561219a565b3480156107c457600080fd5b506104856107d3366004614dc5565b6001600160a01b031660009081526036602052604090205490565b3480156107fa57600080fd5b506107456108093660046152c3565b6121cb565b34801561081a57600080fd5b5061041d6108293660046152f8565b61237d565b34801561083a57600080fd5b50610485610849366004614dc5565b6123a5565b61041d61085c366004615326565b6123e6565b61041d61086f366004615381565b61265f565b34801561088057600080fd5b5061039b61088f366004614c67565b609c6020526000908152604090205460ff1681565b3480156108b057600080fd5b506108c46108bf366004614ce7565b612699565b6040516103a791906153ed565b3480156108dd57600080fd5b506104856108ec366004614e23565b612736565b3480156108fd57600080fd5b506103c561281a565b34801561091257600080fd5b506103c5610921366004614ce7565b6128a8565b34801561093257600080fd5b50610485610941366004614dc5565b6001600160a01b031660009081526035602052604090205490565b61041d61096a366004615086565b6128e9565b34801561097b57600080fd5b5061048561098a366004614dc5565b6001600160a01b031660009081526038602052604090205490565b3480156109b157600080fd5b506104856109c0366004614dc5565b612971565b3480156109d157600080fd5b506104856129bb565b3480156109e657600080fd5b50603454610485565b3480156109fb57600080fd5b5061039b610a0a366004614e23565b6001600160a01b0391821660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c476020908152604080832093909416825291909152205460ff1690565b348015610a6357600080fd5b506103c5612ace565b348015610a7857600080fd5b50609954610ac19060ff81169061ffff610100820416906dffffffffffffffffffffffffffff630100000082048116917101000000000000000000000000000000000090041684565b6040516103a79493929190615448565b348015610add57600080fd5b5061041d610aec366004614dc5565b612adb565b6000610afc82612b68565b92915050565b60607f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c406002018054610b339061549a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5f9061549a565b8015610bac5780601f10610b8157610100808354040283529160200191610bac565b820191906000526020600020905b815481529060010190602001808311610b8f57829003601f168201915b5050505050905090565b6000610bc182612c01565b610bf7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4660205260409020546001600160a01b031690565b6098548290600160c81b900460ff168015610c5057610c5082612c67565b610c5a8484612cab565b50505050565b600080356001600160e01b0319168152609c602052604090205460ff1615610c9b5760405163b4daa8f760e01b815260040160405180910390fd5b610ca3612cb7565b609854600160c01b900460ff1615610d73576040517f110c995b0000000000000000000000000000000000000000000000000000000081523060048201527f00000000000000000000000000000000000000000000000000000000000000006024820152600060448201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063110c995b9060640160006040518083038186803b158015610d5a57600080fd5b505afa158015610d6e573d6000803e3d6000fd5b505050505b609a610d80828483615514565b505050565b6001600160a01b038116600090815260356020526040902054610e155760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f736861726573000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6000610e20826123a5565b905080600003610e985760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610e0c565b6001600160a01b03821660009081526036602052604081208054839290610ec09084906155ea565b925050819055508060346000828254610ed991906155ea565b90915550610ee990508282612d11565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05691015b60405180910390a15050565b6098548390600160c81b900460ff168015610f5e576001600160a01b0382163314610f5e57610f5e33612c67565b610f69858585612e2a565b5050505050565b600080356001600160e01b0319168152609c602052604090205460ff1615610fab5760405163b4daa8f760e01b815260040160405180910390fd5b600260995460ff166004811115610fc457610fc4615432565b14158015610fe95750600460995460ff166004811115610fe657610fe6615432565b14155b156110075760405163541cd9bb60e01b815260040160405180910390fd5b60995461103a9082907101000000000000000000000000000000000090046dffffffffffffffffffffffffffff16613133565b50565b600080356001600160e01b0319168152609c602052604090205460ff16156110785760405163b4daa8f760e01b815260040160405180910390fd5b611080612cb7565b6001600160e01b0319166000908152609c60205260409020805460ff19166001179055565b6098548390600160c81b900460ff1680156110d3576001600160a01b03821633146110d3576110d333612c67565b610f698585856132dc565b6001600160a01b0381166000908152603560205260409020546111695760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610e0c565b60006111758383612736565b9050806000036111ed5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610e0c565b6001600160a01b038084166000908152603960209081526040808320938616835292905290812080548392906112249084906155ea565b90915550506001600160a01b038316600090815260386020526040812080548392906112519084906155ea565b9091555061126290508383836132f7565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b600054600290610100900460ff161580156112cf575060005460ff8083169116105b6113415760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610e0c565b6000805461ffff191660ff83161761010017905561135d612cb7565b600061136c602087018761560a565b600481111561137d5761137d615432565b0361139b5760405163541cd9bb60e01b815260040160405180910390fd5b60008890036113bd5760405163b4b3baa960e01b815260040160405180910390fd5b61142a89898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525061337792505050565b60978890556040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156114ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d09190615627565b60000361160a576608e1bc9bf040006114ef608087016060880161565c565b6dffffffffffffffffffffffffffff16108061153057506608e1bc9bf0400061151e606087016040880161565c565b6dffffffffffffffffffffffffffff16105b15611592576115408484846133fe565b61158d5760985461158d907f00000000000000000000000000000000000000000000000000000000000000009061158890600160a01b900461ffff16652d79883d2000615679565b612d11565b61160a565b620186a061159f60335490565b1415806115ec57506113886115e97f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031660009081526035602052604090205490565b14155b1561160a5760405163b4b3baa960e01b815260040160405180910390fd5b84609961161782826156b5565b50506000805461ff001916905560405160ff821681527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050505050505050565b600080356001600160e01b0319168152609c602052604090205460ff16156116a05760405163b4daa8f760e01b815260040160405180910390fd5b6116a8612cb7565b609854600160c01b900460ff1615611778576040517f110c995b0000000000000000000000000000000000000000000000000000000081523060048201527f00000000000000000000000000000000000000000000000000000000000000006024820152600160448201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063110c995b9060640160006040518083038186803b15801561175f57600080fd5b505afa158015611773573d6000803e3d6000fd5b505050505b609880547fffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffff167a01000000000000000000000000000000000000000000000000000085151502179055609b610c5a828483615514565b60608160008167ffffffffffffffff8111156117ec576117ec6151d9565b60405190808252806020026020018201604052801561183e57816020015b60408051608081018252600080825260208083018290529282018190526060820152825260001990920191018161180a5790505b50905060005b8281146118915761186c868683818110611860576118606157e3565b90506020020135612699565b82828151811061187e5761187e6157e3565b6020908102919091010152600101611844565b50949350505050565b6118a2612cb7565b60005b60975481101561103a576118bb6104ae82611fc3565b6001016118a5565b6000610afc82613621565b60006001600160a01b038216611910576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c45602052604090205467ffffffffffffffff1690565b61195d612cb7565b6119676000613730565b565b600080356001600160e01b0319168152609c602052604090205460ff16156119a45760405163b4daa8f760e01b815260040160405180910390fd5b6119ac612cb7565b609854600160c01b900460ff166119d65760405163b4b3baa960e01b815260040160405180910390fd5b609a80546119e39061549a565b9050600003611a1e576040517f54bcc5a800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80611a57577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166385339f5a611a87565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663e99597895b6040516001600160e01b031960e083901b1681523060048201527f00000000000000000000000000000000000000000000000000000000000000006024820152604401600060405180830381600087803b158015611ae457600080fd5b505af1158015610f69573d6000803e3d6000fd5b7fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f54610100900460ff16611b51577fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f5460ff1615611b55565b303b155b611bc75760405162461bcd60e51b815260206004820152603760248201527f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460448201527f20697320616c726561647920696e697469616c697a65640000000000000000006064820152608401610e0c565b7fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f54610100900460ff16158015611c27577fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f805461ffff19166101011790555b600054610100900460ff1615808015611c475750600054600160ff909116105b80611c615750303b158015611c61575060005460ff166001145b611cd35760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610e0c565b6000805460ff191660011790558015611cf6576000805461ff0019166101001790555b612710611d0960408501602086016157f9565b61ffff161115611d2c5760405163b4b3baa960e01b815260040160405180910390fd5b611d3c60c0840160a08501615086565b8015611d535750611d536080840160608501615086565b15611d715760405163b4b3baa960e01b815260040160405180910390fd5b611de48b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8f018190048102820181019092528d815292508d91508c908190840183828082843760009201919091525061379a92505050565b611dec613840565b609b611df9878983615514565b50609a611e07858783615514565b50826098611e158282615823565b50611e28905060a0840160808501615086565b15611e3557611e356138c5565b611e3e336138e4565b8015611e84576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b508015611eb6577fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f805461ff00191690555b50505050505050505050565b60606000806000611ed2856118ce565b905060008167ffffffffffffffff811115611eef57611eef6151d9565b604051908082528060200260200182016040528015611f18578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081018290529192505b838614611fb757611f5081613999565b91508160400151611faf5781516001600160a01b031615611f7057815194505b876001600160a01b0316856001600160a01b031603611faf5780838780600101985081518110611fa257611fa26157e3565b6020026020010181815250505b600101611f40565b50909695505050505050565b600060378281548110611fd857611fd86157e3565b6000918252602090912001546001600160a01b031692915050565b600080356001600160e01b0319168152609c602052604090205460ff161561202e5760405163b4daa8f760e01b815260040160405180910390fd5b600360995460ff16600481111561204757612047615432565b1415801561206c5750600460995460ff16600481111561206957612069615432565b14155b1561208a5760405163541cd9bb60e01b815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015261212a90612124906034015b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b82613a3c565b6098546001600160a01b03908116911614612171576040517ffaa7a96b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609954612196908390630100000090046dffffffffffffffffffffffffffff16613133565b5050565b60607f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c406003018054610b339061549a565b6060818310612206576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806122317f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405490565b90508084111561223f578093505b600061224a876118ce565b9050848610156122695785850381811015612263578091505b5061226d565b5060005b60008167ffffffffffffffff811115612288576122886151d9565b6040519080825280602002602001820160405280156122b1578160200160208202803683370190505b509050816000036122c757935061237692505050565b60006122d288612699565b9050600081604001516122e3575080515b885b8881141580156122f55750848714155b1561236a5761230381613999565b925082604001516123625782516001600160a01b03161561232357825191505b8a6001600160a01b0316826001600160a01b0316036123625780848880600101995081518110612355576123556157e3565b6020026020010181815250505b6001016122e5565b50505092835250909150505b9392505050565b6098548290600160c81b900460ff16801561239b5761239b82612c67565b610c5a8484613a60565b6000806123b160345490565b6123bb90476155ea565b905061237683826123e1866001600160a01b031660009081526036602052604090205490565b613aeb565b600080356001600160e01b0319168152609c602052604090205460ff16156124215760405163b4daa8f760e01b815260040160405180910390fd5b612429612cb7565b600060995460ff16600481111561244257612442615432565b148061246b57506000612458602086018661560a565b600481111561246957612469615432565b145b156124895760405163541cd9bb60e01b815260040160405180910390fd5b6040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015612506573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252a9190615627565b15801561259657506099546608e1bc9bf04000710100000000000000000000000000000000009091046dffffffffffffffffffffffffffff161080159061259657506608e1bc9bf04000612584608086016060870161565c565b6dffffffffffffffffffffffffffff16105b806125f257506099546608e1bc9bf0400063010000009091046dffffffffffffffffffffffffffff16108015906125f257506608e1bc9bf040006125e0606086016040870161565c565b6dffffffffffffffffffffffffffff16105b1561264a576126028383836133fe565b61264a5760985461264a907f00000000000000000000000000000000000000000000000000000000000000009061158890600160a01b900461ffff16652d79883d2000615679565b83609961265782826156b5565b505050505050565b6098548490600160c81b900460ff16801561268d576001600160a01b038216331461268d5761268d33612c67565b61265786868686613b29565b6040805160808082018352600080835260208084018290528385018290526060808501839052855193840186528284529083018290529382018190529281018390529091506127067f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405490565b83106127125792915050565b61271b83613999565b905080604001511561272d5792915050565b61237683613b86565b6001600160a01b03821660009081526038602052604081205481906040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa1580156127ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d29190615627565b6127dc91906155ea565b6001600160a01b038086166000908152603960209081526040808320938816835292905220549091506128129084908390613aeb565b949350505050565b609a80546128279061549a565b80601f01602080910402602001604051908101604052809291908181526020018280546128539061549a565b80156128a05780601f10612875576101008083540402835291602001916128a0565b820191906000526020600020905b81548152906001019060200180831161288357829003601f168201915b505050505081565b6098546060907a010000000000000000000000000000000000000000000000000000900460ff166128e0576128db613bfe565b610afc565b610afc82613c0d565b600080356001600160e01b0319168152609c602052604090205460ff16156129245760405163b4daa8f760e01b815260040160405180910390fd5b61292c612cb7565b6098805482158015600160c81b027fffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffff9092169190911790915561103a5761103a6138c5565b6001600160a01b03811660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4560205260408082205467ffffffffffffffff911c16610afc565b609854600090600160c01b900460ff166129e85760405163b4b3baa960e01b815260040160405180910390fd5b6098546040517fd587bd9d0000000000000000000000000000000000000000000000000000000081523060048201527f00000000000000000000000000000000000000000000000000000000000000006024820152600160a01b90910461ffff16907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d587bd9d90604401602060405180830381865afa158015612a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612abf9190615627565b612ac99190615a42565b905090565b609b80546128279061549a565b612ae3612cb7565b6001600160a01b038116612b5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e0c565b61103a81613730565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161480612bcb57507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610afc5750506001600160e01b0319167f5b5e139f000000000000000000000000000000000000000000000000000000001490565b60007f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405482108015610afc57505060009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c446020526040902054600160e01b161590565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa612ca3573d6000803e3d6000fd5b6000603a5250565b61219682826001613ca9565b6065546001600160a01b031633146119675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0c565b80471015612d615760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e0c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612dae576040519150601f19603f3d011682016040523d82523d6000602084013e612db3565b606091505b5050905080610d805760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610e0c565b6000612e3582613621565b9050836001600160a01b0316816001600160a01b031614612e82576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c46602052604090208054338082146001600160a01b03881690911417612f43576001600160a01b03861660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c476020908152604080832033845290915290205460ff16612f43576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516612f83576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015612f8e57600082555b6001600160a01b0386811660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4560205260408082208054600019019055918716808252919020805460010190554260a01b177c02000000000000000000000000000000000000000000000000000000001760008581527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4460205260408120919091557c0200000000000000000000000000000000000000000000000000000000841690036130ed576001840160008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c44602052604081205490036130eb577f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405481146130eb5760008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c44602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612657565b33321461316c576040517f9e9bbb9100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131866dffffffffffffffffffffffffffff821683615679565b34146131be576040517ff751084200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609854600160a01b900461ffff16826131f57f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405490565b6131ff91906155ea565b1115613237576040517fe3b3defe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609954610100900461ffff1682613290336001600160a01b031660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4560205260409081902054901c67ffffffffffffffff1690565b61329a91906155ea565b11156132d2576040517f3ec54adb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121963383613ddc565b610d808383836040518060200160405280600081525061265f565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610d80908490613f89565b600054610100900460ff166133f45760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610e0c565b612196828261406e565b60008215806134aa57506040517ffecb2b64000000000000000000000000000000000000000000000000000000008152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063fecb2b6490602401602060405180830381865afa158015613486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134aa9190615a56565b156134b757506000612376565b600061354a61350e8430336040516020016120c493929190928352606091821b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000009081166020850152911b16603482015260480190565b86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613a3c92505050565b6001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161490508015612812576040517fcf422b36000000000000000000000000000000000000000000000000000000008152600481018490527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063cf422b3690602401600060405180830381600087803b15801561360157600080fd5b505af1158015613615573d6000803e3d6000fd5b50505050949350505050565b60008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c44602052604081205490600160e01b821690036136fe57806000036136f9577f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405482106136bf576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000190160008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c44602052604090205480156136bf575b919050565b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b7fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f54610100900460ff166138365760405162461bcd60e51b815260206004820152603460248201527f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460448201527f206973206e6f7420696e697469616c697a696e670000000000000000000000006064820152608401610e0c565b612196828261420d565b600054610100900460ff166138bd5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610e0c565b611967614329565b611967733cc6cdda760b79bafa08df41ecfa224f810dceb660016143af565b60985461ffff600160a01b82048116760100000000000000000000000000000000000000000000909204161115613947576040517fe3b3defe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609854760100000000000000000000000000000000000000000000900461ffff161561103a5760985461103a908290760100000000000000000000000000000000000000000000900461ffff16613ddc565b604080516080810182526000808252602082018190529181018290526060810191909152610afc7f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4060008481526004919091016020526040902054604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6000806000613a4b858561440f565b91509150613a5881614454565b509392505050565b3360008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c47602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6033546001600160a01b03841660009081526035602052604081205490918391613b159086615679565b613b1f9190615a73565b6128129190615a87565b613b34848484610f30565b6001600160a01b0383163b15610c5a57613b5084848484614640565b610c5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810191909152610afc613bb683613621565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6060609b8054610b339061549a565b6060613c1882612c01565b613c4e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000613c58613bfe565b90508051600003613c785760405180602001604052806000815250612376565b80613c8284614776565b604051602001613c93929190615a9a565b6040516020818303038152906040529392505050565b6000613cb4836118c3565b90508115613d4857336001600160a01b03821614613d48576001600160a01b03811660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c476020908152604080832033845290915290205460ff16613d48576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008381527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c46602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b7f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c40546000829003613e39576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c456020908152604080832080546801000000000000000188020190558483527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114613f2657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613eee565b5081600003613f61576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405550505050565b6000613fde826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166147ba9092919063ffffffff16565b805190915015610d805780806020019051810190613ffc9190615a56565b610d805760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610e0c565b600054610100900460ff166140eb5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610e0c565b80518251146141625760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e64207368617260448201527f6573206c656e677468206d69736d6174636800000000000000000000000000006064820152608401610e0c565b60008251116141b35760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401610e0c565b60005b8251811015610d80576141fb8382815181106141d4576141d46157e3565b60200260200101518383815181106141ee576141ee6157e3565b60200260200101516147c9565b8061420581615ac9565b9150506141b6565b7fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f54610100900460ff166142a95760405162461bcd60e51b815260206004820152603460248201527f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460448201527f206973206e6f7420696e697469616c697a696e670000000000000000000000006064820152608401610e0c565b7f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c426142d48382615ae3565b507f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c436143008282615ae3565b5060007f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c40555050565b600054610100900460ff166143a65760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610e0c565b61196733613730565b6001600160a01b0390911690637d3e3dbe816143dc57826143d55750634420e4866143dc565b5063a0af29035b8060e01b60005250306004528160245260008060446000806daaeb6d7670e522a718067333cd4e5af15060006024525050565b60008082516041036144455760208301516040840151606085015160001a614439878285856149e3565b9450945050505061444d565b506000905060025b9250929050565b600081600481111561446857614468615432565b036144705750565b600181600481111561448457614484615432565b036144d15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610e0c565b60028160048111156144e5576144e5615432565b036145325760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610e0c565b600381600481111561454657614546615432565b036145b95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610e0c565b60048160048111156145cd576145cd615432565b0361103a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610e0c565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a029061468e903390899088908890600401615ba3565b6020604051808303816000875af19250505080156146c9575060408051601f3d908101601f191682019092526146c691810190615bdf565b60015b614740573d8080156146f7576040519150601f19603f3d011682016040523d82523d6000602084013e6146fc565b606091505b508051600003614738576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806147905750819003601f19909101908152919050565b60606128128484600085614ad0565b6001600160a01b0382166148455760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201527f7a65726f206164647265737300000000000000000000000000000000000000006064820152608401610e0c565b600081116148955760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401610e0c565b6001600160a01b038216600090815260356020526040902054156149215760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201527f20686173207368617265730000000000000000000000000000000000000000006064820152608401610e0c565b60378054600181019091557f42a7b7dd785cd69714a189dffb3fd7d7174edc9ece837694ce50f7078f7c31ae0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915560009081526035602052604090208190556033546149a19082906155ea565b603355604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac9101610f24565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115614a1a5750600090506003614ac7565b8460ff16601b14158015614a3257508460ff16601c14155b15614a435750600090506004614ac7565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614a97573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614ac057600060019250925050614ac7565b9150600090505b94509492505050565b606082471015614b485760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610e0c565b6001600160a01b0385163b614b9f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e0c565b600080866001600160a01b03168587604051614bbb9190615bfc565b60006040518083038185875af1925050503d8060008114614bf8576040519150601f19603f3d011682016040523d82523d6000602084013e614bfd565b606091505b5091509150614c0d828286614c18565b979650505050505050565b60608315614c27575081612376565b825115614c375782518084602001fd5b8160405162461bcd60e51b8152600401610e0c9190614cd4565b6001600160e01b03198116811461103a57600080fd5b600060208284031215614c7957600080fd5b813561237681614c51565b60005b83811015614c9f578181015183820152602001614c87565b50506000910152565b60008151808452614cc0816020860160208601614c84565b601f01601f19169290920160200192915050565b6020815260006123766020830184614ca8565b600060208284031215614cf957600080fd5b5035919050565b6001600160a01b038116811461103a57600080fd5b60008060408385031215614d2857600080fd5b8235614d3381614d00565b946020939093013593505050565b60008083601f840112614d5357600080fd5b50813567ffffffffffffffff811115614d6b57600080fd5b60208301915083602082850101111561444d57600080fd5b60008060208385031215614d9657600080fd5b823567ffffffffffffffff811115614dad57600080fd5b614db985828601614d41565b90969095509350505050565b600060208284031215614dd757600080fd5b813561237681614d00565b600080600060608486031215614df757600080fd5b8335614e0281614d00565b92506020840135614e1281614d00565b929592945050506040919091013590565b60008060408385031215614e3657600080fd5b8235614e4181614d00565b91506020830135614e5181614d00565b809150509250929050565b60008083601f840112614e6e57600080fd5b50813567ffffffffffffffff811115614e8657600080fd5b6020830191508360208260051b850101111561444d57600080fd5b600060808284031215614eb357600080fd5b50919050565b600080600080600080600080610100898b031215614ed657600080fd5b883567ffffffffffffffff80821115614eee57600080fd5b614efa8c838d01614e5c565b909a50985060208b0135915080821115614f1357600080fd5b614f1f8c838d01614e5c565b9098509650869150614f348c60408d01614ea1565b955060c08b0135915080821115614f4a57600080fd5b50614f578b828c01614d41565b999c989b50969995989497949560e00135949350505050565b801515811461103a57600080fd5b600080600060408486031215614f9357600080fd5b8335614f9e81614f70565b9250602084013567ffffffffffffffff811115614fba57600080fd5b614fc686828701614d41565b9497909650939450505050565b60008060208385031215614fe657600080fd5b823567ffffffffffffffff811115614ffd57600080fd5b614db985828601614e5c565b6020808252825182820181905260009190848201906040850190845b81811015611fb7576150738385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b9284019260809290920191600101615025565b60006020828403121561509857600080fd5b813561237681614f70565b6000806000806000806000806000898b036101408112156150c357600080fd5b8a3567ffffffffffffffff808211156150db57600080fd5b6150e78e838f01614d41565b909c509a5060208d013591508082111561510057600080fd5b61510c8e838f01614d41565b909a50985060408d013591508082111561512557600080fd5b6151318e838f01614d41565b909850965060608d013591508082111561514a57600080fd5b506151578d828e01614d41565b90955093505060c07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff808201121561518d57600080fd5b5060808a0190509295985092959850929598565b6020808252825182820181905260009190848201906040850190845b81811015611fb7578351835292840192918401916001016151bd565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261520057600080fd5b813567ffffffffffffffff8082111561521b5761521b6151d9565b604051601f8301601f19908116603f01168101908282118183101715615243576152436151d9565b8160405283815286602085880101111561525c57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561528f57600080fd5b82359150602083013567ffffffffffffffff8111156152ad57600080fd5b6152b9858286016151ef565b9150509250929050565b6000806000606084860312156152d857600080fd5b83356152e381614d00565b95602085013595506040909401359392505050565b6000806040838503121561530b57600080fd5b823561531681614d00565b91506020830135614e5181614f70565b60008060008060c0858703121561533c57600080fd5b6153468686614ea1565b9350608085013567ffffffffffffffff81111561536257600080fd5b61536e87828801614d41565b9598909750949560a00135949350505050565b6000806000806080858703121561539757600080fd5b84356153a281614d00565b935060208501356153b281614d00565b925060408501359150606085013567ffffffffffffffff8111156153d557600080fd5b6153e1878288016151ef565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610afc565b634e487b7160e01b600052602160045260246000fd5b608081016005861061546a57634e487b7160e01b600052602160045260246000fd5b94815261ffff9390931660208401526dffffffffffffffffffffffffffff91821660408401521660609091015290565b600181811c908216806154ae57607f821691505b602082108103614eb357634e487b7160e01b600052602260045260246000fd5b601f821115610d8057600081815260208120601f850160051c810160208610156154f55750805b601f850160051c820191505b8181101561265757828155600101615501565b67ffffffffffffffff83111561552c5761552c6151d9565b6155408361553a835461549a565b836154ce565b6000601f841160018114615574576000851561555c5750838201355b600019600387901b1c1916600186901b178355610f69565b600083815260209020601f19861690835b828110156155a55786850135825560209485019460019092019101615585565b50868210156155c25760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610afc57610afc6155d4565b6005811061103a57600080fd5b60006020828403121561561c57600080fd5b8135612376816155fd565b60006020828403121561563957600080fd5b5051919050565b6dffffffffffffffffffffffffffff8116811461103a57600080fd5b60006020828403121561566e57600080fd5b813561237681615640565b6000816000190483118215151615615693576156936155d4565b500290565b61ffff8116811461103a57600080fd5b60008135610afc81615640565b81356156c0816155fd565b600581106156de57634e487b7160e01b600052602160045260246000fd5b815460ff821691508160ff19821617835560208401356156fd81615698565b62ffff008160081b16905080837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000841617178455604085013561573f81615640565b70ffffffffffffffffffffffffffff0000008160181b16847fffffffffffffffffffffffffffffff0000000000000000000000000000000000851617831717855550505050612196615793606084016156a8565b82547fff0000000000000000000000000000ffffffffffffffffffffffffffffffffff1660889190911b7effffffffffffffffffffffffffff000000000000000000000000000000000016178255565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561580b57600080fd5b813561237681615698565b60008135610afc81614f70565b813561582e81614d00565b6001600160a01b03811690508154817fffffffffffffffffffffffff00000000000000000000000000000000000000008216178355602084013561587181615698565b75ffff00000000000000000000000000000000000000008160a01b16905080837fffffffffffffffffffff0000000000000000000000000000000000000000000084161717845560408501356158c681615698565b77ffff000000000000000000000000000000000000000000008160b01b16847fffffffffffffffff00000000000000000000000000000000000000000000000085161783171785555050505061596f61592160608401615816565b8280547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff1691151560c01b78ff00000000000000000000000000000000000000000000000016919091179055565b6159cd61597e60808401615816565b8280547fffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffff1691151560c81b79ff0000000000000000000000000000000000000000000000000016919091179055565b6121966159dc60a08401615816565b8280547fffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffff1691151560d01b7aff000000000000000000000000000000000000000000000000000016919091179055565b634e487b7160e01b600052601260045260246000fd5b600082615a5157615a51615a2c565b500690565b600060208284031215615a6857600080fd5b815161237681614f70565b600082615a8257615a82615a2c565b500490565b81810381811115610afc57610afc6155d4565b60008351615aac818460208801614c84565b835190830190615ac0818360208801614c84565b01949350505050565b60006000198203615adc57615adc6155d4565b5060010190565b815167ffffffffffffffff811115615afd57615afd6151d9565b615b1181615b0b845461549a565b846154ce565b602080601f831160018114615b465760008415615b2e5750858301515b600019600386901b1c1916600185901b178555612657565b600085815260208120601f198616915b82811015615b7557888601518255948401946001909101908401615b56565b5085821015615b935787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006001600160a01b03808716835280861660208401525083604083015260806060830152615bd56080830184614ca8565b9695505050505050565b600060208284031215615bf157600080fd5b815161237681614c51565b60008251615c0e818460208701614c84565b919091019291505056fea264697066735822122062bedb1f609d7eae606e3b9c891a2fa91f44aa5cd4057705aa99b84030a1610264736f6c6343000810003300000000000000000000000093d904696a694a680e95265659223eb701587e09000000000000000000000000c80271263e1ba583708d3ea26ea831f33c82bb0a00000000000000000000000023eac2ac9c1027a47d35a2b7b5af981affbc2fc3000000000000000000000000d8e78115b09503d9624fbeff6c7b16c665a971b5000000000000000000000000ea5772efd2f32e97925cb70fc663d2a961176821
Deployed Bytecode
0x60806040526004361061032d5760003560e01c80638b83209b116101a5578063c45ac050116100ec578063dc33e68111610095578063e985e9c51161006f578063e985e9c5146109ef578063eac989f814610a57578063ed8d458114610a6c578063f2fde38b14610ad157600080fd5b8063dc33e681146109a5578063dc8c57b4146109c5578063e33b7de3146109da57600080fd5b8063ce7c2ac2116100c6578063ce7c2ac214610926578063cf4e986e1461095c578063d79779b21461096f57600080fd5b8063c45ac050146108d1578063c6ab67a3146108f1578063c87b56dd1461090657600080fd5b8063a22cb4651161014e578063b88d4fde11610128578063b88d4fde14610861578063bbadfe7614610874578063c23dc68f146108a457600080fd5b8063a22cb4651461080e578063a3f8eace1461082e578063b3e857981461084e57600080fd5b806395d89b411161017f57806395d89b41146107a35780639852595c146107b857806399a2557a146107ee57600080fd5b80638b83209b146107525780638da5cb5b1461077257806392eca5b41461079057600080fd5b806342842e0e116102745780636352211e1161021d57806379502c55116101f757806379502c55146106375780637a2a75be146106ff5780637ce3c59b146107125780638462151c1461072557600080fd5b80636352211e146105e257806370a0823114610602578063715018a61461062257600080fd5b80634c9f191e1161024e5780634c9f191e1461059a5780635bbb2177146105ad5780635be7fde8146105da57600080fd5b806342842e0e1461055457806348b75044146105675780634b615e671461058757600080fd5b806319165587116102d657806334531828116102b057806334531828146104d95780633a98ef39146104f9578063406072a91461050e57600080fd5b8063191655871461049357806323b872dd146104b35780632db11544146104c657600080fd5b8063095ea7b311610307578063095ea7b31461040a578063109695231461041f57806318160ddd1461043257600080fd5b806301ffc9a71461037b57806306fdde03146103b0578063081812fc146103d257600080fd5b36610376577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561038757600080fd5b5061039b610396366004614c67565b610af1565b60405190151581526020015b60405180910390f35b3480156103bc57600080fd5b506103c5610b02565b6040516103a79190614cd4565b3480156103de57600080fd5b506103f26103ed366004614ce7565b610bb6565b6040516001600160a01b0390911681526020016103a7565b61041d610418366004614d15565b610c32565b005b61041d61042d366004614d83565b610c60565b34801561043e57600080fd5b507f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c41547f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4054035b6040519081526020016103a7565b34801561049f57600080fd5b5061041d6104ae366004614dc5565b610d85565b61041d6104c1366004614de2565b610f30565b61041d6104d4366004614ce7565b610f70565b3480156104e557600080fd5b5061041d6104f4366004614c67565b61103d565b34801561050557600080fd5b50603354610485565b34801561051a57600080fd5b50610485610529366004614e23565b6001600160a01b03918216600090815260396020908152604080832093909416825291909152205490565b61041d610562366004614de2565b6110a5565b34801561057357600080fd5b5061041d610582366004614e23565b6110de565b61041d610595366004614eb9565b6112ad565b61041d6105a8366004614f7e565b611665565b3480156105b957600080fd5b506105cd6105c8366004614fd3565b6117ce565b6040516103a79190615009565b61041d61189a565b3480156105ee57600080fd5b506103f26105fd366004614ce7565b6118c3565b34801561060e57600080fd5b5061048561061d366004614dc5565b6118ce565b34801561062e57600080fd5b5061041d611955565b34801561064357600080fd5b506098546106ba906001600160a01b0381169061ffff600160a01b820481169176010000000000000000000000000000000000000000000081049091169060ff600160c01b8204811691600160c81b81048216917a0100000000000000000000000000000000000000000000000000009091041686565b604080516001600160a01b03909716875261ffff95861660208801529490931693850193909352151560608401529015156080830152151560a082015260c0016103a7565b61041d61070d366004615086565b611969565b61041d6107203660046150a3565b611af8565b34801561073157600080fd5b50610745610740366004614dc5565b611ec2565b6040516103a791906151a1565b34801561075e57600080fd5b506103f261076d366004614ce7565b611fc3565b34801561077e57600080fd5b506065546001600160a01b03166103f2565b61041d61079e36600461527c565b611ff3565b3480156107af57600080fd5b506103c561219a565b3480156107c457600080fd5b506104856107d3366004614dc5565b6001600160a01b031660009081526036602052604090205490565b3480156107fa57600080fd5b506107456108093660046152c3565b6121cb565b34801561081a57600080fd5b5061041d6108293660046152f8565b61237d565b34801561083a57600080fd5b50610485610849366004614dc5565b6123a5565b61041d61085c366004615326565b6123e6565b61041d61086f366004615381565b61265f565b34801561088057600080fd5b5061039b61088f366004614c67565b609c6020526000908152604090205460ff1681565b3480156108b057600080fd5b506108c46108bf366004614ce7565b612699565b6040516103a791906153ed565b3480156108dd57600080fd5b506104856108ec366004614e23565b612736565b3480156108fd57600080fd5b506103c561281a565b34801561091257600080fd5b506103c5610921366004614ce7565b6128a8565b34801561093257600080fd5b50610485610941366004614dc5565b6001600160a01b031660009081526035602052604090205490565b61041d61096a366004615086565b6128e9565b34801561097b57600080fd5b5061048561098a366004614dc5565b6001600160a01b031660009081526038602052604090205490565b3480156109b157600080fd5b506104856109c0366004614dc5565b612971565b3480156109d157600080fd5b506104856129bb565b3480156109e657600080fd5b50603454610485565b3480156109fb57600080fd5b5061039b610a0a366004614e23565b6001600160a01b0391821660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c476020908152604080832093909416825291909152205460ff1690565b348015610a6357600080fd5b506103c5612ace565b348015610a7857600080fd5b50609954610ac19060ff81169061ffff610100820416906dffffffffffffffffffffffffffff630100000082048116917101000000000000000000000000000000000090041684565b6040516103a79493929190615448565b348015610add57600080fd5b5061041d610aec366004614dc5565b612adb565b6000610afc82612b68565b92915050565b60607f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c406002018054610b339061549a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5f9061549a565b8015610bac5780601f10610b8157610100808354040283529160200191610bac565b820191906000526020600020905b815481529060010190602001808311610b8f57829003601f168201915b5050505050905090565b6000610bc182612c01565b610bf7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4660205260409020546001600160a01b031690565b6098548290600160c81b900460ff168015610c5057610c5082612c67565b610c5a8484612cab565b50505050565b600080356001600160e01b0319168152609c602052604090205460ff1615610c9b5760405163b4daa8f760e01b815260040160405180910390fd5b610ca3612cb7565b609854600160c01b900460ff1615610d73576040517f110c995b0000000000000000000000000000000000000000000000000000000081523060048201527f087dfab73d12eb85440b959f2f0fb5185cada8e05b077825c17f1207513a5ade6024820152600060448201527f000000000000000000000000ea5772efd2f32e97925cb70fc663d2a9611768216001600160a01b03169063110c995b9060640160006040518083038186803b158015610d5a57600080fd5b505afa158015610d6e573d6000803e3d6000fd5b505050505b609a610d80828483615514565b505050565b6001600160a01b038116600090815260356020526040902054610e155760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f736861726573000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6000610e20826123a5565b905080600003610e985760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610e0c565b6001600160a01b03821660009081526036602052604081208054839290610ec09084906155ea565b925050819055508060346000828254610ed991906155ea565b90915550610ee990508282612d11565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05691015b60405180910390a15050565b6098548390600160c81b900460ff168015610f5e576001600160a01b0382163314610f5e57610f5e33612c67565b610f69858585612e2a565b5050505050565b600080356001600160e01b0319168152609c602052604090205460ff1615610fab5760405163b4daa8f760e01b815260040160405180910390fd5b600260995460ff166004811115610fc457610fc4615432565b14158015610fe95750600460995460ff166004811115610fe657610fe6615432565b14155b156110075760405163541cd9bb60e01b815260040160405180910390fd5b60995461103a9082907101000000000000000000000000000000000090046dffffffffffffffffffffffffffff16613133565b50565b600080356001600160e01b0319168152609c602052604090205460ff16156110785760405163b4daa8f760e01b815260040160405180910390fd5b611080612cb7565b6001600160e01b0319166000908152609c60205260409020805460ff19166001179055565b6098548390600160c81b900460ff1680156110d3576001600160a01b03821633146110d3576110d333612c67565b610f698585856132dc565b6001600160a01b0381166000908152603560205260409020546111695760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610e0c565b60006111758383612736565b9050806000036111ed5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610e0c565b6001600160a01b038084166000908152603960209081526040808320938616835292905290812080548392906112249084906155ea565b90915550506001600160a01b038316600090815260386020526040812080548392906112519084906155ea565b9091555061126290508383836132f7565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b600054600290610100900460ff161580156112cf575060005460ff8083169116105b6113415760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610e0c565b6000805461ffff191660ff83161761010017905561135d612cb7565b600061136c602087018761560a565b600481111561137d5761137d615432565b0361139b5760405163541cd9bb60e01b815260040160405180910390fd5b60008890036113bd5760405163b4b3baa960e01b815260040160405180910390fd5b61142a89898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b91829185019084908082843760009201919091525061337792505050565b60978890556040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201527f00000000000000000000000023eac2ac9c1027a47d35a2b7b5af981affbc2fc36001600160a01b0316906370a0823190602401602060405180830381865afa1580156114ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d09190615627565b60000361160a576608e1bc9bf040006114ef608087016060880161565c565b6dffffffffffffffffffffffffffff16108061153057506608e1bc9bf0400061151e606087016040880161565c565b6dffffffffffffffffffffffffffff16105b15611592576115408484846133fe565b61158d5760985461158d907f00000000000000000000000093d904696a694a680e95265659223eb701587e099061158890600160a01b900461ffff16652d79883d2000615679565b612d11565b61160a565b620186a061159f60335490565b1415806115ec57506113886115e97f00000000000000000000000093d904696a694a680e95265659223eb701587e096001600160a01b031660009081526035602052604090205490565b14155b1561160a5760405163b4b3baa960e01b815260040160405180910390fd5b84609961161782826156b5565b50506000805461ff001916905560405160ff821681527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a1505050505050505050565b600080356001600160e01b0319168152609c602052604090205460ff16156116a05760405163b4daa8f760e01b815260040160405180910390fd5b6116a8612cb7565b609854600160c01b900460ff1615611778576040517f110c995b0000000000000000000000000000000000000000000000000000000081523060048201527f087dfab73d12eb85440b959f2f0fb5185cada8e05b077825c17f1207513a5ade6024820152600160448201527f000000000000000000000000ea5772efd2f32e97925cb70fc663d2a9611768216001600160a01b03169063110c995b9060640160006040518083038186803b15801561175f57600080fd5b505afa158015611773573d6000803e3d6000fd5b505050505b609880547fffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffff167a01000000000000000000000000000000000000000000000000000085151502179055609b610c5a828483615514565b60608160008167ffffffffffffffff8111156117ec576117ec6151d9565b60405190808252806020026020018201604052801561183e57816020015b60408051608081018252600080825260208083018290529282018190526060820152825260001990920191018161180a5790505b50905060005b8281146118915761186c868683818110611860576118606157e3565b90506020020135612699565b82828151811061187e5761187e6157e3565b6020908102919091010152600101611844565b50949350505050565b6118a2612cb7565b60005b60975481101561103a576118bb6104ae82611fc3565b6001016118a5565b6000610afc82613621565b60006001600160a01b038216611910576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c45602052604090205467ffffffffffffffff1690565b61195d612cb7565b6119676000613730565b565b600080356001600160e01b0319168152609c602052604090205460ff16156119a45760405163b4daa8f760e01b815260040160405180910390fd5b6119ac612cb7565b609854600160c01b900460ff166119d65760405163b4b3baa960e01b815260040160405180910390fd5b609a80546119e39061549a565b9050600003611a1e576040517f54bcc5a800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80611a57577f000000000000000000000000ea5772efd2f32e97925cb70fc663d2a9611768216001600160a01b03166385339f5a611a87565b7f000000000000000000000000ea5772efd2f32e97925cb70fc663d2a9611768216001600160a01b031663e99597895b6040516001600160e01b031960e083901b1681523060048201527f087dfab73d12eb85440b959f2f0fb5185cada8e05b077825c17f1207513a5ade6024820152604401600060405180830381600087803b158015611ae457600080fd5b505af1158015610f69573d6000803e3d6000fd5b7fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f54610100900460ff16611b51577fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f5460ff1615611b55565b303b155b611bc75760405162461bcd60e51b815260206004820152603760248201527f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460448201527f20697320616c726561647920696e697469616c697a65640000000000000000006064820152608401610e0c565b7fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f54610100900460ff16158015611c27577fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f805461ffff19166101011790555b600054610100900460ff1615808015611c475750600054600160ff909116105b80611c615750303b158015611c61575060005460ff166001145b611cd35760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610e0c565b6000805460ff191660011790558015611cf6576000805461ff0019166101001790555b612710611d0960408501602086016157f9565b61ffff161115611d2c5760405163b4b3baa960e01b815260040160405180910390fd5b611d3c60c0840160a08501615086565b8015611d535750611d536080840160608501615086565b15611d715760405163b4b3baa960e01b815260040160405180910390fd5b611de48b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8f018190048102820181019092528d815292508d91508c908190840183828082843760009201919091525061379a92505050565b611dec613840565b609b611df9878983615514565b50609a611e07858783615514565b50826098611e158282615823565b50611e28905060a0840160808501615086565b15611e3557611e356138c5565b611e3e336138e4565b8015611e84576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b508015611eb6577fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f805461ff00191690555b50505050505050505050565b60606000806000611ed2856118ce565b905060008167ffffffffffffffff811115611eef57611eef6151d9565b604051908082528060200260200182016040528015611f18578160200160208202803683370190505b5060408051608081018252600080825260208201819052918101829052606081018290529192505b838614611fb757611f5081613999565b91508160400151611faf5781516001600160a01b031615611f7057815194505b876001600160a01b0316856001600160a01b031603611faf5780838780600101985081518110611fa257611fa26157e3565b6020026020010181815250505b600101611f40565b50909695505050505050565b600060378281548110611fd857611fd86157e3565b6000918252602090912001546001600160a01b031692915050565b600080356001600160e01b0319168152609c602052604090205460ff161561202e5760405163b4daa8f760e01b815260040160405180910390fd5b600360995460ff16600481111561204757612047615432565b1415801561206c5750600460995460ff16600481111561206957612069615432565b14155b1561208a5760405163541cd9bb60e01b815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015261212a90612124906034015b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b82613a3c565b6098546001600160a01b03908116911614612171576040517ffaa7a96b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609954612196908390630100000090046dffffffffffffffffffffffffffff16613133565b5050565b60607f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c406003018054610b339061549a565b6060818310612206576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806122317f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405490565b90508084111561223f578093505b600061224a876118ce565b9050848610156122695785850381811015612263578091505b5061226d565b5060005b60008167ffffffffffffffff811115612288576122886151d9565b6040519080825280602002602001820160405280156122b1578160200160208202803683370190505b509050816000036122c757935061237692505050565b60006122d288612699565b9050600081604001516122e3575080515b885b8881141580156122f55750848714155b1561236a5761230381613999565b925082604001516123625782516001600160a01b03161561232357825191505b8a6001600160a01b0316826001600160a01b0316036123625780848880600101995081518110612355576123556157e3565b6020026020010181815250505b6001016122e5565b50505092835250909150505b9392505050565b6098548290600160c81b900460ff16801561239b5761239b82612c67565b610c5a8484613a60565b6000806123b160345490565b6123bb90476155ea565b905061237683826123e1866001600160a01b031660009081526036602052604090205490565b613aeb565b600080356001600160e01b0319168152609c602052604090205460ff16156124215760405163b4daa8f760e01b815260040160405180910390fd5b612429612cb7565b600060995460ff16600481111561244257612442615432565b148061246b57506000612458602086018661560a565b600481111561246957612469615432565b145b156124895760405163541cd9bb60e01b815260040160405180910390fd5b6040517f70a082310000000000000000000000000000000000000000000000000000000081523360048201527f00000000000000000000000023eac2ac9c1027a47d35a2b7b5af981affbc2fc36001600160a01b0316906370a0823190602401602060405180830381865afa158015612506573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252a9190615627565b15801561259657506099546608e1bc9bf04000710100000000000000000000000000000000009091046dffffffffffffffffffffffffffff161080159061259657506608e1bc9bf04000612584608086016060870161565c565b6dffffffffffffffffffffffffffff16105b806125f257506099546608e1bc9bf0400063010000009091046dffffffffffffffffffffffffffff16108015906125f257506608e1bc9bf040006125e0606086016040870161565c565b6dffffffffffffffffffffffffffff16105b1561264a576126028383836133fe565b61264a5760985461264a907f00000000000000000000000093d904696a694a680e95265659223eb701587e099061158890600160a01b900461ffff16652d79883d2000615679565b83609961265782826156b5565b505050505050565b6098548490600160c81b900460ff16801561268d576001600160a01b038216331461268d5761268d33612c67565b61265786868686613b29565b6040805160808082018352600080835260208084018290528385018290526060808501839052855193840186528284529083018290529382018190529281018390529091506127067f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405490565b83106127125792915050565b61271b83613999565b905080604001511561272d5792915050565b61237683613b86565b6001600160a01b03821660009081526038602052604081205481906040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b038616906370a0823190602401602060405180830381865afa1580156127ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127d29190615627565b6127dc91906155ea565b6001600160a01b038086166000908152603960209081526040808320938816835292905220549091506128129084908390613aeb565b949350505050565b609a80546128279061549a565b80601f01602080910402602001604051908101604052809291908181526020018280546128539061549a565b80156128a05780601f10612875576101008083540402835291602001916128a0565b820191906000526020600020905b81548152906001019060200180831161288357829003601f168201915b505050505081565b6098546060907a010000000000000000000000000000000000000000000000000000900460ff166128e0576128db613bfe565b610afc565b610afc82613c0d565b600080356001600160e01b0319168152609c602052604090205460ff16156129245760405163b4daa8f760e01b815260040160405180910390fd5b61292c612cb7565b6098805482158015600160c81b027fffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffff9092169190911790915561103a5761103a6138c5565b6001600160a01b03811660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4560205260408082205467ffffffffffffffff911c16610afc565b609854600090600160c01b900460ff166129e85760405163b4b3baa960e01b815260040160405180910390fd5b6098546040517fd587bd9d0000000000000000000000000000000000000000000000000000000081523060048201527f087dfab73d12eb85440b959f2f0fb5185cada8e05b077825c17f1207513a5ade6024820152600160a01b90910461ffff16907f000000000000000000000000ea5772efd2f32e97925cb70fc663d2a9611768216001600160a01b03169063d587bd9d90604401602060405180830381865afa158015612a9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612abf9190615627565b612ac99190615a42565b905090565b609b80546128279061549a565b612ae3612cb7565b6001600160a01b038116612b5f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610e0c565b61103a81613730565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b031983161480612bcb57507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610afc5750506001600160e01b0319167f5b5e139f000000000000000000000000000000000000000000000000000000001490565b60007f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405482108015610afc57505060009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c446020526040902054600160e01b161590565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa612ca3573d6000803e3d6000fd5b6000603a5250565b61219682826001613ca9565b6065546001600160a01b031633146119675760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e0c565b80471015612d615760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610e0c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612dae576040519150601f19603f3d011682016040523d82523d6000602084013e612db3565b606091505b5050905080610d805760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610e0c565b6000612e3582613621565b9050836001600160a01b0316816001600160a01b031614612e82576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c46602052604090208054338082146001600160a01b03881690911417612f43576001600160a01b03861660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c476020908152604080832033845290915290205460ff16612f43576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516612f83576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015612f8e57600082555b6001600160a01b0386811660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4560205260408082208054600019019055918716808252919020805460010190554260a01b177c02000000000000000000000000000000000000000000000000000000001760008581527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4460205260408120919091557c0200000000000000000000000000000000000000000000000000000000841690036130ed576001840160008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c44602052604081205490036130eb577f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405481146130eb5760008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c44602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612657565b33321461316c576040517f9e9bbb9100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131866dffffffffffffffffffffffffffff821683615679565b34146131be576040517ff751084200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609854600160a01b900461ffff16826131f57f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405490565b6131ff91906155ea565b1115613237576040517fe3b3defe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609954610100900461ffff1682613290336001600160a01b031660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4560205260409081902054901c67ffffffffffffffff1690565b61329a91906155ea565b11156132d2576040517f3ec54adb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121963383613ddc565b610d808383836040518060200160405280600081525061265f565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610d80908490613f89565b600054610100900460ff166133f45760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610e0c565b612196828261406e565b60008215806134aa57506040517ffecb2b64000000000000000000000000000000000000000000000000000000008152600481018390527f000000000000000000000000d8e78115b09503d9624fbeff6c7b16c665a971b56001600160a01b03169063fecb2b6490602401602060405180830381865afa158015613486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134aa9190615a56565b156134b757506000612376565b600061354a61350e8430336040516020016120c493929190928352606091821b7fffffffffffffffffffffffffffffffffffffffff0000000000000000000000009081166020850152911b16603482015260480190565b86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613a3c92505050565b6001600160a01b03167f000000000000000000000000c80271263e1ba583708d3ea26ea831f33c82bb0a6001600160a01b03161490508015612812576040517fcf422b36000000000000000000000000000000000000000000000000000000008152600481018490527f000000000000000000000000d8e78115b09503d9624fbeff6c7b16c665a971b56001600160a01b03169063cf422b3690602401600060405180830381600087803b15801561360157600080fd5b505af1158015613615573d6000803e3d6000fd5b50505050949350505050565b60008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c44602052604081205490600160e01b821690036136fe57806000036136f9577f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405482106136bf576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000190160008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c44602052604090205480156136bf575b919050565b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b7fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f54610100900460ff166138365760405162461bcd60e51b815260206004820152603460248201527f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460448201527f206973206e6f7420696e697469616c697a696e670000000000000000000000006064820152608401610e0c565b612196828261420d565b600054610100900460ff166138bd5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610e0c565b611967614329565b611967733cc6cdda760b79bafa08df41ecfa224f810dceb660016143af565b60985461ffff600160a01b82048116760100000000000000000000000000000000000000000000909204161115613947576040517fe3b3defe00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609854760100000000000000000000000000000000000000000000900461ffff161561103a5760985461103a908290760100000000000000000000000000000000000000000000900461ffff16613ddc565b604080516080810182526000808252602082018190529181018290526060810191909152610afc7f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4060008481526004919091016020526040902054604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6000806000613a4b858561440f565b91509150613a5881614454565b509392505050565b3360008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c47602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6033546001600160a01b03841660009081526035602052604081205490918391613b159086615679565b613b1f9190615a73565b6128129190615a87565b613b34848484610f30565b6001600160a01b0383163b15610c5a57613b5084848484614640565b610c5a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b604080516080810182526000808252602082018190529181018290526060810191909152610afc613bb683613621565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b6060609b8054610b339061549a565b6060613c1882612c01565b613c4e576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000613c58613bfe565b90508051600003613c785760405180602001604052806000815250612376565b80613c8284614776565b604051602001613c93929190615a9a565b6040516020818303038152906040529392505050565b6000613cb4836118c3565b90508115613d4857336001600160a01b03821614613d48576001600160a01b03811660009081527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c476020908152604080832033845290915290205460ff16613d48576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008381527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c46602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b7f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c40546000829003613e39576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c456020908152604080832080546801000000000000000188020190558483527f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c4490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b818114613f2657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101613eee565b5081600003613f61576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c405550505050565b6000613fde826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166147ba9092919063ffffffff16565b805190915015610d805780806020019051810190613ffc9190615a56565b610d805760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610e0c565b600054610100900460ff166140eb5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610e0c565b80518251146141625760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e64207368617260448201527f6573206c656e677468206d69736d6174636800000000000000000000000000006064820152608401610e0c565b60008251116141b35760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401610e0c565b60005b8251811015610d80576141fb8382815181106141d4576141d46157e3565b60200260200101518383815181106141ee576141ee6157e3565b60200260200101516147c9565b8061420581615ac9565b9150506141b6565b7fee151c8401928dc223602bb187aff91b9a56c7cae5476ef1b3287b085a16c85f54610100900460ff166142a95760405162461bcd60e51b815260206004820152603460248201527f455243373231415f5f496e697469616c697a61626c653a20636f6e747261637460448201527f206973206e6f7420696e697469616c697a696e670000000000000000000000006064820152608401610e0c565b7f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c426142d48382615ae3565b507f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c436143008282615ae3565b5060007f2569078dfb4b0305704d3008e7403993ae9601b85f7ae5e742de3de8f8011c40555050565b600054610100900460ff166143a65760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610e0c565b61196733613730565b6001600160a01b0390911690637d3e3dbe816143dc57826143d55750634420e4866143dc565b5063a0af29035b8060e01b60005250306004528160245260008060446000806daaeb6d7670e522a718067333cd4e5af15060006024525050565b60008082516041036144455760208301516040840151606085015160001a614439878285856149e3565b9450945050505061444d565b506000905060025b9250929050565b600081600481111561446857614468615432565b036144705750565b600181600481111561448457614484615432565b036144d15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610e0c565b60028160048111156144e5576144e5615432565b036145325760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610e0c565b600381600481111561454657614546615432565b036145b95760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610e0c565b60048160048111156145cd576145cd615432565b0361103a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610e0c565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a029061468e903390899088908890600401615ba3565b6020604051808303816000875af19250505080156146c9575060408051601f3d908101601f191682019092526146c691810190615bdf565b60015b614740573d8080156146f7576040519150601f19603f3d011682016040523d82523d6000602084013e6146fc565b606091505b508051600003614738576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806147905750819003601f19909101908152919050565b60606128128484600085614ad0565b6001600160a01b0382166148455760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201527f7a65726f206164647265737300000000000000000000000000000000000000006064820152608401610e0c565b600081116148955760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401610e0c565b6001600160a01b038216600090815260356020526040902054156149215760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201527f20686173207368617265730000000000000000000000000000000000000000006064820152608401610e0c565b60378054600181019091557f42a7b7dd785cd69714a189dffb3fd7d7174edc9ece837694ce50f7078f7c31ae0180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03841690811790915560009081526035602052604090208190556033546149a19082906155ea565b603355604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac9101610f24565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115614a1a5750600090506003614ac7565b8460ff16601b14158015614a3257508460ff16601c14155b15614a435750600090506004614ac7565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614a97573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116614ac057600060019250925050614ac7565b9150600090505b94509492505050565b606082471015614b485760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610e0c565b6001600160a01b0385163b614b9f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610e0c565b600080866001600160a01b03168587604051614bbb9190615bfc565b60006040518083038185875af1925050503d8060008114614bf8576040519150601f19603f3d011682016040523d82523d6000602084013e614bfd565b606091505b5091509150614c0d828286614c18565b979650505050505050565b60608315614c27575081612376565b825115614c375782518084602001fd5b8160405162461bcd60e51b8152600401610e0c9190614cd4565b6001600160e01b03198116811461103a57600080fd5b600060208284031215614c7957600080fd5b813561237681614c51565b60005b83811015614c9f578181015183820152602001614c87565b50506000910152565b60008151808452614cc0816020860160208601614c84565b601f01601f19169290920160200192915050565b6020815260006123766020830184614ca8565b600060208284031215614cf957600080fd5b5035919050565b6001600160a01b038116811461103a57600080fd5b60008060408385031215614d2857600080fd5b8235614d3381614d00565b946020939093013593505050565b60008083601f840112614d5357600080fd5b50813567ffffffffffffffff811115614d6b57600080fd5b60208301915083602082850101111561444d57600080fd5b60008060208385031215614d9657600080fd5b823567ffffffffffffffff811115614dad57600080fd5b614db985828601614d41565b90969095509350505050565b600060208284031215614dd757600080fd5b813561237681614d00565b600080600060608486031215614df757600080fd5b8335614e0281614d00565b92506020840135614e1281614d00565b929592945050506040919091013590565b60008060408385031215614e3657600080fd5b8235614e4181614d00565b91506020830135614e5181614d00565b809150509250929050565b60008083601f840112614e6e57600080fd5b50813567ffffffffffffffff811115614e8657600080fd5b6020830191508360208260051b850101111561444d57600080fd5b600060808284031215614eb357600080fd5b50919050565b600080600080600080600080610100898b031215614ed657600080fd5b883567ffffffffffffffff80821115614eee57600080fd5b614efa8c838d01614e5c565b909a50985060208b0135915080821115614f1357600080fd5b614f1f8c838d01614e5c565b9098509650869150614f348c60408d01614ea1565b955060c08b0135915080821115614f4a57600080fd5b50614f578b828c01614d41565b999c989b50969995989497949560e00135949350505050565b801515811461103a57600080fd5b600080600060408486031215614f9357600080fd5b8335614f9e81614f70565b9250602084013567ffffffffffffffff811115614fba57600080fd5b614fc686828701614d41565b9497909650939450505050565b60008060208385031215614fe657600080fd5b823567ffffffffffffffff811115614ffd57600080fd5b614db985828601614e5c565b6020808252825182820181905260009190848201906040850190845b81811015611fb7576150738385516001600160a01b03815116825267ffffffffffffffff602082015116602083015260408101511515604083015262ffffff60608201511660608301525050565b9284019260809290920191600101615025565b60006020828403121561509857600080fd5b813561237681614f70565b6000806000806000806000806000898b036101408112156150c357600080fd5b8a3567ffffffffffffffff808211156150db57600080fd5b6150e78e838f01614d41565b909c509a5060208d013591508082111561510057600080fd5b61510c8e838f01614d41565b909a50985060408d013591508082111561512557600080fd5b6151318e838f01614d41565b909850965060608d013591508082111561514a57600080fd5b506151578d828e01614d41565b90955093505060c07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff808201121561518d57600080fd5b5060808a0190509295985092959850929598565b6020808252825182820181905260009190848201906040850190845b81811015611fb7578351835292840192918401916001016151bd565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261520057600080fd5b813567ffffffffffffffff8082111561521b5761521b6151d9565b604051601f8301601f19908116603f01168101908282118183101715615243576152436151d9565b8160405283815286602085880101111561525c57600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806040838503121561528f57600080fd5b82359150602083013567ffffffffffffffff8111156152ad57600080fd5b6152b9858286016151ef565b9150509250929050565b6000806000606084860312156152d857600080fd5b83356152e381614d00565b95602085013595506040909401359392505050565b6000806040838503121561530b57600080fd5b823561531681614d00565b91506020830135614e5181614f70565b60008060008060c0858703121561533c57600080fd5b6153468686614ea1565b9350608085013567ffffffffffffffff81111561536257600080fd5b61536e87828801614d41565b9598909750949560a00135949350505050565b6000806000806080858703121561539757600080fd5b84356153a281614d00565b935060208501356153b281614d00565b925060408501359150606085013567ffffffffffffffff8111156153d557600080fd5b6153e1878288016151ef565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260608083015162ffffff169082015260808101610afc565b634e487b7160e01b600052602160045260246000fd5b608081016005861061546a57634e487b7160e01b600052602160045260246000fd5b94815261ffff9390931660208401526dffffffffffffffffffffffffffff91821660408401521660609091015290565b600181811c908216806154ae57607f821691505b602082108103614eb357634e487b7160e01b600052602260045260246000fd5b601f821115610d8057600081815260208120601f850160051c810160208610156154f55750805b601f850160051c820191505b8181101561265757828155600101615501565b67ffffffffffffffff83111561552c5761552c6151d9565b6155408361553a835461549a565b836154ce565b6000601f841160018114615574576000851561555c5750838201355b600019600387901b1c1916600186901b178355610f69565b600083815260209020601f19861690835b828110156155a55786850135825560209485019460019092019101615585565b50868210156155c25760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610afc57610afc6155d4565b6005811061103a57600080fd5b60006020828403121561561c57600080fd5b8135612376816155fd565b60006020828403121561563957600080fd5b5051919050565b6dffffffffffffffffffffffffffff8116811461103a57600080fd5b60006020828403121561566e57600080fd5b813561237681615640565b6000816000190483118215151615615693576156936155d4565b500290565b61ffff8116811461103a57600080fd5b60008135610afc81615640565b81356156c0816155fd565b600581106156de57634e487b7160e01b600052602160045260246000fd5b815460ff821691508160ff19821617835560208401356156fd81615698565b62ffff008160081b16905080837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000841617178455604085013561573f81615640565b70ffffffffffffffffffffffffffff0000008160181b16847fffffffffffffffffffffffffffffff0000000000000000000000000000000000851617831717855550505050612196615793606084016156a8565b82547fff0000000000000000000000000000ffffffffffffffffffffffffffffffffff1660889190911b7effffffffffffffffffffffffffff000000000000000000000000000000000016178255565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561580b57600080fd5b813561237681615698565b60008135610afc81614f70565b813561582e81614d00565b6001600160a01b03811690508154817fffffffffffffffffffffffff00000000000000000000000000000000000000008216178355602084013561587181615698565b75ffff00000000000000000000000000000000000000008160a01b16905080837fffffffffffffffffffff0000000000000000000000000000000000000000000084161717845560408501356158c681615698565b77ffff000000000000000000000000000000000000000000008160b01b16847fffffffffffffffff00000000000000000000000000000000000000000000000085161783171785555050505061596f61592160608401615816565b8280547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff1691151560c01b78ff00000000000000000000000000000000000000000000000016919091179055565b6159cd61597e60808401615816565b8280547fffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffff1691151560c81b79ff0000000000000000000000000000000000000000000000000016919091179055565b6121966159dc60a08401615816565b8280547fffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffff1691151560d01b7aff000000000000000000000000000000000000000000000000000016919091179055565b634e487b7160e01b600052601260045260246000fd5b600082615a5157615a51615a2c565b500690565b600060208284031215615a6857600080fd5b815161237681614f70565b600082615a8257615a82615a2c565b500490565b81810381811115610afc57610afc6155d4565b60008351615aac818460208801614c84565b835190830190615ac0818360208801614c84565b01949350505050565b60006000198203615adc57615adc6155d4565b5060010190565b815167ffffffffffffffff811115615afd57615afd6151d9565b615b1181615b0b845461549a565b846154ce565b602080601f831160018114615b465760008415615b2e5750858301515b600019600386901b1c1916600185901b178555612657565b600085815260208120601f198616915b82811015615b7557888601518255948401946001909101908401615b56565b5085821015615b935787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006001600160a01b03808716835280861660208401525083604083015260806060830152615bd56080830184614ca8565b9695505050505050565b600060208284031215615bf157600080fd5b815161237681614c51565b60008251615c0e818460208701614c84565b919091019291505056fea264697066735822122062bedb1f609d7eae606e3b9c891a2fa91f44aa5cd4057705aa99b84030a1610264736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000093d904696a694a680e95265659223eb701587e09000000000000000000000000c80271263e1ba583708d3ea26ea831f33c82bb0a00000000000000000000000023eac2ac9c1027a47d35a2b7b5af981affbc2fc3000000000000000000000000d8e78115b09503d9624fbeff6c7b16c665a971b5000000000000000000000000ea5772efd2f32e97925cb70fc663d2a961176821
-----Decoded View---------------
Arg [0] : _struct (address): 0x93d904696a694A680E95265659223Eb701587e09
Arg [1] : _receiptIssuer (address): 0xC80271263E1Ba583708D3eA26EA831F33c82BB0a
Arg [2] : _structPass (address): 0x23EAc2Ac9C1027A47d35A2B7b5af981AFfbc2fc3
Arg [3] : _nonceManager (address): 0xD8e78115B09503d9624FBefF6C7b16c665a971B5
Arg [4] : _randomnessManager (address): 0xea5772EfD2F32E97925Cb70fC663d2A961176821
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000093d904696a694a680e95265659223eb701587e09
Arg [1] : 000000000000000000000000c80271263e1ba583708d3ea26ea831f33c82bb0a
Arg [2] : 00000000000000000000000023eac2ac9c1027a47d35a2b7b5af981affbc2fc3
Arg [3] : 000000000000000000000000d8e78115b09503d9624fbeff6c7b16c665a971b5
Arg [4] : 000000000000000000000000ea5772efd2f32e97925cb70fc663d2a961176821
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.