Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
0 RSRV
Holders
2,590
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ValhallaReserve
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./token/ERC1155/ERC1155.sol"; import "./utils/ERC2981.sol"; import "./utils/IERC165.sol"; import "./utils/Ownable.sol"; import "./utils/ECDSA.sol"; ///////////////////////////////////////////////////////////////////////////// // // // // // ██╗░░░██╗░█████╗░██╗░░░░░██╗░░██╗░█████╗░██╗░░░░░██╗░░░░░░█████╗░ // // ██║░░░██║██╔══██╗██║░░░░░██║░░██║██╔══██╗██║░░░░░██║░░░░░██╔══██╗ // // ╚██╗░██╔╝███████║██║░░░░░███████║███████║██║░░░░░██║░░░░░███████║ // // ░╚████╔╝░██╔══██║██║░░░░░██╔══██║██╔══██║██║░░░░░██║░░░░░██╔══██║ // // ░░╚██╔╝░░██║░░██║███████╗██║░░██║██║░░██║███████╗███████╗██║░░██║ // // ░░░╚═╝░░░╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝╚═╝░░╚═╝╚══════╝╚══════╝╚═╝░░╚═╝ // // // // // ///////////////////////////////////////////////////////////////////////////// /** * Subset of the IOperatorFilterRegistry with only the methods that the main minting contract will call. * The owner of the collection is able to manage the registry subscription on the contract's behalf */ interface IOperatorFilterRegistry { function isOperatorAllowed( address registrant, address operator ) external returns (bool); } contract ValhallaReserve is ERC1155, Ownable, ERC2981 { using ECDSA for bytes32; // ============================================================= // STRUCTS // ============================================================= // Compiler will pack this into a 256bit word. struct SaleData { // unitPrice for each token for the general sale uint96 price; // Optional value to prevent a transaction from buying too much supply uint64 txLimit; // startTime for the sale of the tokens uint48 startTimestamp; // endTime for the sale of the tokens uint48 endTimestamp; } // ============================================================= // STORAGE // ============================================================= // Address that houses the implemention to check if operators are allowed or not address public operatorFilterRegistryAddress; // Address this contract verifies with the registryAddress for allowed operators. address public filterRegistrant; // Address used for the mintSignature method address public signer; // Used to quickly invalidate batches of signatures if needed. uint256 public signatureVersion; // Mapping that shows if a tier is active or not mapping(uint256 => mapping(string => bool)) public isTierActive; mapping(bytes32 => bool) public signatureUsed; // For tokens that are open to a general sale. mapping(uint256 => SaleData) public generalSaleData; // Mapping of owner-approved contracts that can burn the user's tokens during a transaction mapping(address => mapping(uint256 => bool)) public approvedBurners; // ============================================================= // Events // ============================================================= event MintOpen( uint256 indexed tokenId, uint256 startTimestamp, uint256 endTimestamp, uint256 price, uint256 txLimit ); event MintClosed(uint256 indexed tokenId); // ============================================================= // Constructor // ============================================================= constructor () { _setName("ValhallaReserve"); _setSymbol("RSRV"); } // ============================================================= // 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(ERC1155, ERC2981) 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 ERC1155.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } /** * @dev Allows the owner to set a new name for the collection. */ function setName(string memory name) external onlyOwner { _setName(name); } /** * @dev Allows the owner to set a new symbol for the collection. */ function setSymbol(string memory symbol) external onlyOwner { _setSymbol(symbol); } /** * @dev Allows the owner to add a new tokenId if it does not already exist. * * @param tokenId TokenId that will get created * @param tokenMintLimit Token Supply for the tokenId. If 0, the supply is capped at uint64 max. * @param uri link pointing to the token metadata */ function addTokenId(uint256 tokenId, uint64 tokenMintLimit, string calldata uri) external onlyOwner { _addTokenId(tokenId, tokenMintLimit, uri); } /** * @dev Allows the owner to set a new token URI for a single tokenId. * * This tokenId must have already been added by `addTokenId` */ function updateTokenURI(uint256 tokenId, string calldata uri) external onlyOwner { _updateMetadata(tokenId, uri); } /** * @dev Token supply can be set, but can ONLY BE LOWERED. It also cannot be lower than the current supply. * * This logic is gauranteed by the {_setTokenMintLimit} method */ function setTokenMintLimit(uint256 tokenId, uint64 tokenMintLimit) external onlyOwner { _setTokenMintLimit(tokenId, tokenMintLimit); } // ============================================================= // IERC2981 // ============================================================= /** * @notice Allows the owner to set default royalties following EIP-2981 royalty standard. */ function setDefaultRoyalty( address receiver, uint96 feeNumerator ) external onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } // ============================================================= // Operator Filter Registry // ============================================================= /** * @dev Stops operators from being added as an approved address to transfer. * @param operator the address a wallet is trying to grant approval to. */ function _beforeApproval(address operator) internal virtual override { if (operatorFilterRegistryAddress.code.length > 0) { if ( !IOperatorFilterRegistry(operatorFilterRegistryAddress) .isOperatorAllowed(filterRegistrant, operator) ) { revert OperatorNotAllowed(); } } super._beforeApproval(operator); } /** * @dev Stops operators that are not approved from doing transfers. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { if (operatorFilterRegistryAddress.code.length > 0) { if ( !IOperatorFilterRegistry(operatorFilterRegistryAddress) .isOperatorAllowed(filterRegistrant, msg.sender) ) { revert OperatorNotAllowed(); } } super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } /** * @notice Allows the owner to set a new registrant contract. */ function setOperatorFilterRegistryAddress( address registryAddress ) external onlyOwner { operatorFilterRegistryAddress = registryAddress; } /** * @notice Allows the owner to set a new registrant address. */ function setFilterRegistrant(address newRegistrant) external onlyOwner { filterRegistrant = newRegistrant; } // ============================================================= // Token Minting // ============================================================= /** * @dev This function does a best effort to Owner mint. If a given tokenId is * over the token supply amount, it will mint as many are available and stop at the limit. * This is necessary so that a given transaction does not fail if another public mint * transaction happens to take place just before this one that would cause the amount of * minted tokens to go over a token limit. */ function mintDev( address[] calldata receivers, uint256[] calldata tokenIds, uint256[] calldata amounts ) external onlyOwner { if ( receivers.length != tokenIds.length || receivers.length != amounts.length ) { revert ArrayLengthMismatch(); } for (uint256 i = 0; i < receivers.length; ) { uint256 buyLimit = _remainingSupply(tokenIds[i]); if (buyLimit != 0) { if (amounts[i] > buyLimit) { _mint(receivers[i], tokenIds[i], buyLimit, ""); } else { _mint(receivers[i], tokenIds[i], amounts[i], ""); } } unchecked { ++i; } } } /** * @notice Allows the owner to change the active version of their signatures, this also * allows a simple invalidation of all signatures they have created on old versions. */ function setSigner(address signer_) external onlyOwner { signer = signer_; } /** * @notice Allows the owner to change the active version of their signatures, this also * allows a simple invalidation of all signatures they have created on old versions. */ function setSignatureVersion(uint256 version) external onlyOwner { signatureVersion = version; } /** * @notice Allows owner to sets if a certain tier is active or not. */ function setIsTierActive( uint256 tokenId, string memory tier, bool active ) external onlyOwner { isTierActive[tokenId][tier] = active; } /** * @dev With the correct hash signed by the owner, a wallet can mint at * a unit price up to the quantity specified. */ function mintSignature( string memory tier, uint256 tokenId, uint256 unitPrice, uint256 version, uint256 nonce, uint256 amount, uint256 buyAmount, bytes memory sig ) external payable { _verifyTokenMintLimit(tokenId, buyAmount); if (!isTierActive[tokenId][tier]) revert TierNotActive(); if (buyAmount > amount || buyAmount == 0) revert InvalidSignatureBuyAmount(); if (version != signatureVersion) revert InvalidSignatureVersion(); uint256 totalPrice = unitPrice * buyAmount; if (msg.value != totalPrice) revert IncorrectMsgValue(); bytes32 hash = ECDSA.toEthSignedMessageHash( keccak256( abi.encode( tier, address(this), tokenId, unitPrice, version, nonce, amount, msg.sender ) ) ); if (signatureUsed[hash]) revert SignatureAlreadyUsed(); signatureUsed[hash] = true; if (hash.recover(sig) != signer) revert InvalidSignature(); _mint(_msgSender(), tokenId, buyAmount, ""); } /** * @dev Allows the owner to open the {mint} method for a certain tokenId * this method is to allow buyers to save gas on minting by not requiring a signature. */ function openMint( uint256 tokenId, uint96 price, uint48 startTimestamp, uint48 endTimestamp, uint64 txLimit ) external onlyOwner { if(!exists(tokenId)) revert NonExistentToken(); generalSaleData[tokenId].price = price; generalSaleData[tokenId].startTimestamp = startTimestamp; generalSaleData[tokenId].endTimestamp = endTimestamp; generalSaleData[tokenId].txLimit = txLimit; emit MintOpen( tokenId, startTimestamp, endTimestamp, price, txLimit ); } /** * @dev Allows the owner to close the {generalMint} method to the public for a certain tokenId. */ function closeMint(uint256 tokenId) external onlyOwner { delete generalSaleData[tokenId]; emit MintClosed(tokenId); } /** * @dev Allows any user to buy a certain tokenId. This buy transaction is still limited by the * wallet mint limit, token supply limit, and transaction limit set for the tokenId. These are * all considered primary sales and will be split according to the withdrawal splits defined in the contract. */ function mint(uint256 tokenId, uint256 buyAmount) external payable { _verifyTokenMintLimit(tokenId, buyAmount); if (block.timestamp < generalSaleData[tokenId].startTimestamp) revert MintNotActive(); if (block.timestamp > generalSaleData[tokenId].endTimestamp) revert MintNotActive(); if ( generalSaleData[tokenId].txLimit != 0 && buyAmount > generalSaleData[tokenId].txLimit ) { revert OverTransactionLimit(); } if (msg.value != generalSaleData[tokenId].price * buyAmount) revert IncorrectMsgValue(); _mint(_msgSender(), tokenId, buyAmount, ""); } // ============================================================= // Token Burning // ============================================================= /** * @dev Owner can allow or pause holders from burning tokens of a certain * tokenId on without an intermediary contract. */ function setBurnable(uint256 tokenId, bool burnable) external onlyOwner { _setBurnable(tokenId, burnable); } /** * @dev Allows token owners to burn tokens if self-burn is enabled for that token. */ function burn(uint256 tokenId, uint256 amount) external { if(!_isSelfBurnable(tokenId)) revert NotSelfBurnable(); _burn(msg.sender, tokenId, amount); } /** * @dev Owner can allow for certain contract addresses to burn tokens for users. * * If this is an EOA, the approvedBurn transaction will revert. */ function setApprovedBurner( address burner, uint256 tokenId, bool approved ) external onlyOwner { approvedBurners[burner][tokenId] = approved; } /** * @dev Allows token owners to burn their tokens through owner-approved burner contracts. */ function approvedBurn(address spender, uint256 tokenId, uint256 amount) external { if (!approvedBurners[msg.sender][tokenId]) revert SenderNotApprovedBurner(); if (tx.origin == msg.sender) revert NotContractAccount(); _burn(spender, tokenId, amount); } // ============================================================= // Miscellaneous // ============================================================= /** * @notice Allows owner to withdraw a specified amount of ETH to a specified address. */ function withdraw( address withdrawAddress, uint256 amount ) external onlyOwner { unchecked { if (amount > address(this).balance) { amount = address(this).balance; } } if (!_transferETH(withdrawAddress, amount)) revert WithdrawFailed(); } /** * @notice Internal function to transfer ETH to a specified address. */ function _transferETH(address to, uint256 value) internal returns (bool) { (bool success, ) = to.call{ value: value, gas: 30000 }(new bytes(0)); return success; } error IncorrectMsgValue(); error InvalidSignature(); error InvalidSignatureBuyAmount(); error InvalidSignatureVersion(); error MintNotActive(); error NotContractAccount(); error NotSelfBurnable(); error OperatorNotAllowed(); error OverTransactionLimit(); error SenderNotApprovedBurner(); error SignatureAlreadyUsed(); error TierNotActive(); error WithdrawFailed(); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Strings.sol"; import "../../utils/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * There are some modifications compared to the originial OpenZepplin implementation * that give the collection owner mint limits for their tokenIds. It also has been * adjusted to have a max supply of uint64 of any tokenId for gas optimization. * * _Available since v3.1._ */ contract ERC1155 is IERC1155 { using Address for address; using Strings for uint256; // ============================================================= // STRUCTS // ============================================================= // Compiler will pack this into a single 256bit word. struct TokenAddressData { // Limited to uint64 to save gas fees. uint64 balance; // Keeps track of mint count for a user of a tokenId. uint64 numMinted; // Keeps track of burn count for a user of a tokenId. uint64 numBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // Compiler will pack this into a single 256bit word. struct TokenSupplyData { // Keeps track of mint count of a tokenId. uint64 numMinted; // Keeps track of burn count of a tokenId. uint64 numBurned; // Keeps track of maximum supply of a tokenId. uint64 tokenMintLimit; // If the token is self-burnable or not bool burnable; } // ============================================================= // Constants // ============================================================= uint64 public MAX_TOKEN_SUPPLY = (1 << 64) - 1; // ============================================================= // STORAGE // ============================================================= // Used to enable the uri method mapping(uint256 => string) public tokenMetadata; // Saves all the token mint/burn data and mint limitations. mapping(uint256 => TokenSupplyData) private _tokenData; // Mapping from token ID to account balances, mints, and burns mapping(uint256 => mapping(address => TokenAddressData)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Token name string private _name; // Token symbol string private _symbol; // ============================================================= // EVENTS // ============================================================= event NewTokenAdded( uint256 indexed tokenId, uint256 tokenMintLimit, string tokenURI ); event TokenURIChanged(uint256 tokenId, string newTokenURI); event TokenMintLimitChanged(uint256 tokenId, uint64 newMintLimit); event NameChanged(string name); event SymbolChanged(string symbol); // ============================================================= // CONSTRUCTOR // ============================================================= constructor() {} // ============================================================= // IERC165 // ============================================================= /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165) returns (bool) { return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0xd9b67a26 || // ERC165 interface ID for ERC1155. interfaceId == 0x0e89341c; // ERC165 interface ID for ERC1155MetadatURI. } // ============================================================= // IERC1155MetadataURI // ============================================================= /** * @dev See {IERC721Metadata-symbol}. */ function name() public view returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev updates the name of the collection */ function _setName(string memory _newName) internal { _name = _newName; emit NameChanged(_newName); } /** * @dev updates the symbol of the collection */ function _setSymbol(string memory _newSymbol) internal { _symbol = _newSymbol; emit SymbolChanged(_newSymbol); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256 tokenId) public view returns (string memory) { if (!exists(tokenId)) revert NonExistentToken(); return tokenMetadata[tokenId]; } /** * @dev Allows the owner to change the metadata for a tokenId but NOT the mint limits. * * Requirements: * * - `tokenId` must have already been added. * - `metadata` must not be length 0. */ function _updateMetadata(uint256 tokenId, string calldata metadata) internal { if (!exists(tokenId)) revert NonExistentToken(); if (bytes(metadata).length == 0) revert InvalidMetadata(); tokenMetadata[tokenId] = metadata; emit TokenURIChanged(tokenId, metadata); } // ============================================================= // IERC1155 // ============================================================= /** * @dev Returns if a tokenId has been added to the collection yet. */ function exists(uint256 tokenId) public view returns (bool) { return bytes(tokenMetadata[tokenId]).length > 0; } /** * @dev Allows the owner to add a tokenId to the collection with the specificed * metadata and mint limits. MintLimit of 0 will be treated as uint64 max. * * NOTE: MINT LIMITS CANNOT BE INCREASED * * Requirements: * * - `tokenId` must not have been added yet. * - `metadata` must not be length 0. * * @param tokenId of the new addition to the colleciton * @param tokenMintLimit the most amount of tokens that can ever be minted * @param metadata for the new collection when calling uri */ function _addTokenId( uint256 tokenId, uint64 tokenMintLimit, string calldata metadata ) internal { if (exists(tokenId)) revert TokenAlreadyExists(); if (bytes(metadata).length == 0) revert InvalidMetadata(); tokenMetadata[tokenId] = metadata; _tokenData[tokenId].tokenMintLimit = tokenMintLimit; if (tokenMintLimit == 0) { _tokenData[tokenId].tokenMintLimit = MAX_TOKEN_SUPPLY; } emit NewTokenAdded(tokenId, tokenMintLimit, metadata); } /** * @dev Token supply can be set, but can ONLY BE LOWERED. Cannot be lower than the current supply. */ function _setTokenMintLimit( uint256 tokenId, uint64 tokenMintLimit ) internal { if (_tokenData[tokenId].numMinted > tokenMintLimit) revert InvalidMintLimit(); if (tokenMintLimit == 0) revert InvalidMintLimit(); _tokenData[tokenId].tokenMintLimit = tokenMintLimit; emit TokenMintLimitChanged(tokenId, tokenMintLimit); } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { if (account == address(0)) revert BalanceQueryForZeroAddress(); return _balances[id][account].balance; } /** * @dev returns the total amount of tokens of a certain tokenId are in circulation. */ function totalSupply(uint256 tokenId) public view virtual returns (uint256) { if (!exists(tokenId)) revert NonExistentToken(); return _tokenData[tokenId].numMinted - _tokenData[tokenId].numBurned; } /** * @dev returns the total amount of tokens of a certain tokenId that were ever minted. */ function totalMinted(uint256 tokenId) public view virtual returns (uint256) { if (!exists(tokenId)) revert NonExistentToken(); return _tokenData[tokenId].numMinted; } /** * @dev returns the total amount of tokens of a certain tokenId that have gotten burned. */ function totalBurned(uint256 tokenId) public view virtual returns (uint256) { if (!exists(tokenId)) revert NonExistentToken(); return _tokenData[tokenId].numBurned; } /** * @dev Returns how much an address has minted of a certain id * * Requirements: * * - `account` cannot be the zero address. */ function totalMintedByAddress(address account, uint256 id) public view virtual returns (uint256) { if (account == address(0)) revert BalanceQueryForZeroAddress(); return _balances[id][account].numMinted; } /** * @dev Returns how much an address has minted of a certain id * * Requirements: * * - `account` cannot be the zero address. */ function totalBurnedByAddress(address account, uint256 id) public view virtual returns (uint256) { if (account == address(0)) revert BalanceQueryForZeroAddress(); return _balances[id][account].numBurned; } /** * @dev Returns how many tokens are still available to mint * * Requirements: * * - `tokenId` must already exist. */ function remainingSupply(uint256 tokenId) public view virtual returns (uint256) { if (!exists(tokenId)) revert NonExistentToken(); return _remainingSupply(tokenId); } /** * @dev Returns how many tokens are still available to mint */ function _remainingSupply(uint256 tokenId) internal view returns (uint256) { return _tokenData[tokenId].tokenMintLimit - _tokenData[tokenId].numMinted; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) public view virtual override returns (uint256[] memory) { if (accounts.length != ids.length) revert ArrayLengthMismatch(); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSenderERC1155(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev Verifies if a certain tokenId can still mint `buyAmount` more tokens of a certain id. */ function _verifyTokenMintLimit(uint256 tokenId, uint256 buyAmount) internal view { if ( _tokenData[tokenId].numMinted + buyAmount > _tokenData[tokenId].tokenMintLimit ) { revert OverTokenLimit(); } } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { if (from != _msgSenderERC1155() && !isApprovedForAll(from, _msgSenderERC1155())) { revert NotOwnerOrApproved(); } _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes memory data ) public virtual override { if (from != _msgSenderERC1155() && !isApprovedForAll(from, _msgSenderERC1155())) { revert NotOwnerOrApproved(); } _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { if (to == address(0)) revert TransferToZeroAddress(); address operator = _msgSenderERC1155(); _beforeTokenTransfer( operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data ); if (_balances[id][from].balance < amount) { revert InsufficientTokenBalance(); } // to balance can never overflow because there is a cap on minting unchecked { _balances[id][from].balance -= uint64(amount); _balances[id][to].balance += uint64(amount); } emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes memory data ) internal virtual { if (ids.length != amounts.length) revert ArrayLengthMismatch(); if (to == address(0)) revert TransferToZeroAddress(); address operator = _msgSenderERC1155(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ) { uint256 id = ids[i]; uint256 amount = amounts[i]; if (_balances[id][from].balance < amount) { revert InsufficientTokenBalance(); } // to balance can never overflow because there is a cap on minting unchecked { _balances[id][from].balance -= uint64(amount); _balances[id][to].balance += uint64(amount); ++i; } } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck( operator, from, to, ids, amounts, data ); } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * NOTE: In order to save gas fees when there are many transactions nearing the mint limit of a tokenId, * we do NOT call `_verifyTokenMintLimit` and instead leave it to the external method to do this check. * This allows the queued transactions that were too late to mint the token to error as cheaply as possible. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { if (to == address(0)) revert MintToZeroAddress(); if (!exists(id)) revert NonExistentToken(); address operator = _msgSenderERC1155(); _beforeTokenTransfer( operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data ); unchecked { _tokenData[id].numMinted += uint64(amount); _balances[id][to].balance += uint64(amount); _balances[id][to].numMinted += uint64(amount); } emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck( operator, address(0), to, id, amount, data ); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) internal virtual { if (to == address(0)) revert MintToZeroAddress(); if (ids.length != amounts.length) revert ArrayLengthMismatch(); address operator = _msgSenderERC1155(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ) { _verifyTokenMintLimit(ids[i], amounts[i]); // The token mint limit verification prevents potential overflow/underflow unchecked { _tokenData[ids[i]].numMinted += uint64(amounts[i]); _balances[ids[i]][to].balance += uint64(amounts[i]); _balances[ids[i]][to].numMinted += uint64(amounts[i]); ++i; } } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck( operator, address(0), to, ids, amounts, data ); } /** * @dev Allow or stop holders from self-burning tokens of a certain tokenId. */ function _setBurnable(uint256 tokenId, bool burnable) internal { _tokenData[tokenId].burnable = burnable; } /** * @dev returns if a tokenId is self-burnable. */ function _isSelfBurnable(uint256 tokenId) internal view returns (bool) { return _tokenData[tokenId].burnable; } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { if (from == address(0)) revert BurnFromZeroAddress(); address operator = _msgSenderERC1155(); _beforeTokenTransfer( operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "" ); uint256 fromBalance = _balances[id][from].balance; if (fromBalance < amount) revert InsufficientTokenBalance(); unchecked { _balances[id][from].numBurned += uint64(amount); _balances[id][from].balance = uint64(fromBalance - amount); } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] calldata ids, uint256[] calldata amounts ) internal virtual { if (from == address(0)) revert BurnFromZeroAddress(); if (ids.length != amounts.length) revert ArrayLengthMismatch(); address operator = _msgSenderERC1155(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; ) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from].balance; if (fromBalance < amount) revert InsufficientTokenBalance(); unchecked { _balances[id][from].numBurned += uint64(amount); _balances[id][from].balance = uint64(fromBalance - amount); ++i; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { _beforeApproval(operator); if (owner == operator) revert ApprovalToCurrentOwner(); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any approval for a token or wallet * * `approvedAddr` - the address a wallet is trying to grant approval to. */ function _beforeApproval(address approvedAddr) internal virtual {} /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received( operator, from, id, amount, data ) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert TransferToNonERC721ReceiverImplementer(); } } catch Error(string memory reason) { revert(reason); } catch { revert TransferToNonERC721ReceiverImplementer(); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived( operator, from, ids, amounts, data ) returns (bytes4 response) { if ( response != IERC1155Receiver.onERC1155BatchReceived.selector ) { revert TransferToNonERC721ReceiverImplementer(); } } catch Error(string memory reason) { revert(reason); } catch { revert TransferToNonERC721ReceiverImplementer(); } } } /** * @dev helper method to turn a uint256 variable into a 1-length array we can pass into uint256[] variables */ function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC1155() internal view virtual returns (address) { return msg.sender; } error ApprovalToCurrentOwner(); error ArrayLengthMismatch(); error BalanceQueryForZeroAddress(); error BurnFromZeroAddress(); error InsufficientTokenBalance(); error InvalidMetadata(); error InvalidMintLimit(); error MintToZeroAddress(); error NonExistentToken(); error NotOwnerOrApproved(); error OverTokenLimit(); error TokenAlreadyExists(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle( address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value ); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll( address indexed account, address indexed operator, bool approved ); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// 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 Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "./Strings.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 ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } 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"); } } /** * @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 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", Strings.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 v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "./IERC2981.sol"; import "./ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * ERC165 bytes to add to interface array - set in parent contract * implementing this standard * * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a * bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a; * _registerInterface(_INTERFACE_ID_ERC2981); */ /** * @notice Called with the sale price to determine how much royalty * is owed and to whom. * @param _tokenId - the NFT asset queried for royalty information * @param _salePrice - the sale price of the NFT asset specified by _tokenId * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for _salePrice */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; error CallerNotOwner(); error OwnerNotZero(); /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address internal _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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 { if (owner() != _msgSender()) revert CallerNotOwner(); } /** * @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 { if (newOwner == address(0)) revert OwnerNotZero(); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { 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); } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ArrayLengthMismatch","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"BurnFromZeroAddress","type":"error"},{"inputs":[],"name":"CallerNotOwner","type":"error"},{"inputs":[],"name":"IncorrectMsgValue","type":"error"},{"inputs":[],"name":"InsufficientTokenBalance","type":"error"},{"inputs":[],"name":"InvalidMetadata","type":"error"},{"inputs":[],"name":"InvalidMintLimit","type":"error"},{"inputs":[],"name":"InvalidSignature","type":"error"},{"inputs":[],"name":"InvalidSignatureBuyAmount","type":"error"},{"inputs":[],"name":"InvalidSignatureVersion","type":"error"},{"inputs":[],"name":"MintNotActive","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"NonExistentToken","type":"error"},{"inputs":[],"name":"NotContractAccount","type":"error"},{"inputs":[],"name":"NotOwnerOrApproved","type":"error"},{"inputs":[],"name":"NotSelfBurnable","type":"error"},{"inputs":[],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OverTokenLimit","type":"error"},{"inputs":[],"name":"OverTransactionLimit","type":"error"},{"inputs":[],"name":"OwnerNotZero","type":"error"},{"inputs":[],"name":"SenderNotApprovedBurner","type":"error"},{"inputs":[],"name":"SignatureAlreadyUsed","type":"error"},{"inputs":[],"name":"TierNotActive","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"tokenId","type":"uint256"}],"name":"MintClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTimestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"txLimit","type":"uint256"}],"name":"MintOpen","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenMintLimit","type":"uint256"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"}],"name":"NewTokenAdded","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":"string","name":"symbol","type":"string"}],"name":"SymbolChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"newMintLimit","type":"uint64"}],"name":"TokenMintLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"newTokenURI","type":"string"}],"name":"TokenURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"MAX_TOKEN_SUPPLY","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint64","name":"tokenMintLimit","type":"uint64"},{"internalType":"string","name":"uri","type":"string"}],"name":"addTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approvedBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"approvedBurners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"closeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"filterRegistrant","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"generalSaleData","outputs":[{"internalType":"uint96","name":"price","type":"uint96"},{"internalType":"uint64","name":"txLimit","type":"uint64"},{"internalType":"uint48","name":"startTimestamp","type":"uint48"},{"internalType":"uint48","name":"endTimestamp","type":"uint48"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"string","name":"","type":"string"}],"name":"isTierActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"buyAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"tier","type":"string"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"unitPrice","type":"uint256"},{"internalType":"uint256","name":"version","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"buyAmount","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"mintSignature","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint96","name":"price","type":"uint96"},{"internalType":"uint48","name":"startTimestamp","type":"uint48"},{"internalType":"uint48","name":"endTimestamp","type":"uint48"},{"internalType":"uint64","name":"txLimit","type":"uint64"}],"name":"openMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operatorFilterRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burner","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovedBurner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"burnable","type":"bool"}],"name":"setBurnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRegistrant","type":"address"}],"name":"setFilterRegistrant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tier","type":"string"},{"internalType":"bool","name":"active","type":"bool"}],"name":"setIsTierActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"registryAddress","type":"address"}],"name":"setOperatorFilterRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"version","type":"uint256"}],"name":"setSignatureVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer_","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"symbol","type":"string"}],"name":"setSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint64","name":"tokenMintLimit","type":"uint64"}],"name":"setTokenMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"signatureUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"signatureVersion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalBurnedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalMintedByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"updateTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"withdrawAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600080546001600160401b0319166001600160401b031790553480156200002a57600080fd5b50620000363362000093565b60408051808201909152600f81526e56616c68616c6c615265736572766560881b60208201526200006790620000e5565b6040805180820190915260048152632929a92b60e11b60208201526200008d9062000137565b620002b8565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8051620000fa9060059060208401906200017e565b507f4737457377f528cc8afd815f73ecb8b05df80d047dbffc41c17750a4033592bc816040516200012c919062000224565b60405180910390a150565b80516200014c9060069060208401906200017e565b507f57c940aa14b51ea5f96b7a2bea757ce355d996e2c5d7a3c68aff1c75a326269b816040516200012c919062000224565b8280546200018c906200027c565b90600052602060002090601f016020900481019282620001b05760008555620001fb565b82601f10620001cb57805160ff1916838001178555620001fb565b82800160010185558215620001fb579182015b82811115620001fb578251825591602001919060010190620001de565b50620002099291506200020d565b5090565b5b808211156200020957600081556001016200020e565b600060208083528351808285015260005b81811015620002535785810183015185820160400152820162000235565b8181111562000266576000604083870101525b50601f01601f1916929092016040019392505050565b600181811c908216806200029157607f821691505b602082108103620002b257634e487b7160e01b600052602260045260246000fd5b50919050565b613efe80620002c86000396000f3fe60806040526004361061033e5760003560e01c8063715018a6116101b0578063bd57c425116100ec578063e87ce00311610095578063f2fde38b1161006f578063f2fde38b14610a19578063f3fef3a314610a39578063f94b910414610a59578063fdacbf9314610a6c57600080fd5b8063e87ce00314610990578063e985e9c5146109b0578063f242432a146109f957600080fd5b8063c68ac6b0116100c6578063c68ac6b014610906578063e307fb3114610926578063e489d5101461095657600080fd5b8063bd57c425146108a6578063bd85b039146108c6578063c47f0027146108e657600080fd5b80639d7f4ebf11610159578063b390c0ab11610133578063b390c0ab14610826578063b69c5a2314610846578063b84c824614610866578063baf3ff601461088657600080fd5b80639d7f4ebf146107d0578063a22cb465146107f0578063adc1ebcc1461081057600080fd5b80638da5cb5b1161018a5780638da5cb5b14610762578063927c01171461078057806395d89b41146107bb57600080fd5b8063715018a61461070d57806380703cf4146107225780638c6eafde1461074257600080fd5b80633ae1cc631161027f5780634f558e79116102285780635e8c07b8116102025780635e8c07b81461068d5780636914db60146106ad5780636c19e783146106cd5780636ef82ecc146106ed57600080fd5b80634f558e79146106015780634fe78e7414610621578063501045f31461066d57600080fd5b806344c404d91161025957806344c404d91461059457806347fda41a146105b45780634e1273f4146105d457600080fd5b80633ae1cc63146105345780633e456076146105545780633f85c7551461057457600080fd5b806318e97fd1116102ec5780632a55205a116102c65780632a55205a146104955780632eb2c2d6146104d457806333699624146104f45780633962c10a1461051457600080fd5b806318e97fd11461042a5780631b2ef1ca1461044a578063238ac9331461045d57600080fd5b806304634d8d1161031d57806304634d8d146103c857806306fdde03146103e85780630e89341c1461040a57600080fd5b8062fdd58e1461034357806301ffc9a7146103765780630260e6b5146103a6575b600080fd5b34801561034f57600080fd5b5061036361035e3660046131f5565b610b1a565b6040519081526020015b60405180910390f35b34801561038257600080fd5b50610396610391366004613235565b610b75565b604051901515815260200161036d565b3480156103b257600080fd5b506103c66103c136600461329e565b610b95565b005b3480156103d457600080fd5b506103c66103e3366004613354565b610d01565b3480156103f457600080fd5b506103fd610d17565b60405161036d91906133df565b34801561041657600080fd5b506103fd6104253660046133f2565b610da9565b34801561043657600080fd5b506103c661044536600461344d565b610e6f565b6103c6610458366004613499565b610e87565b34801561046957600080fd5b50600c5461047d906001600160a01b031681565b6040516001600160a01b03909116815260200161036d565b3480156104a157600080fd5b506104b56104b0366004613499565b610ff2565b604080516001600160a01b03909316835260208301919091520161036d565b3480156104e057600080fd5b506103c66104ef366004613572565b6110af565b34801561050057600080fd5b506103c661050f366004613635565b6110fc565b34801561052057600080fd5b50600b5461047d906001600160a01b031681565b34801561054057600080fd5b50600a5461047d906001600160a01b031681565b34801561056057600080fd5b5061036361056f3660046131f5565b611146565b34801561058057600080fd5b5061036361058f3660046131f5565b6111a8565b3480156105a057600080fd5b506103c66105af366004613665565b61120f565b3480156105c057600080fd5b506103636105cf3660046133f2565b61125e565b3480156105e057600080fd5b506105f46105ef3660046136c0565b61128f565b60405161036d919061372c565b34801561060d57600080fd5b5061039661061c3660046133f2565b611382565b34801561062d57600080fd5b5061039661063c366004613770565b600e602090815260009283526040909220815180830184018051928152908401929093019190912091525460ff1681565b34801561067957600080fd5b506103c66106883660046137e5565b6113a8565b34801561069957600080fd5b506103c66106a8366004613843565b6114e7565b3480156106b957600080fd5b506103fd6106c83660046133f2565b611501565b3480156106d957600080fd5b506103c66106e8366004613891565b61159b565b3480156106f957600080fd5b506103636107083660046133f2565b6115d2565b34801561071957600080fd5b506103c6611623565b34801561072e57600080fd5b506103c661073d366004613891565b611637565b34801561074e57600080fd5b506103c661075d3660046138ac565b61166e565b34801561076e57600080fd5b506007546001600160a01b031661047d565b34801561078c57600080fd5b5061039661079b3660046131f5565b601160209081526000928352604080842090915290825290205460ff1681565b3480156107c757600080fd5b506103fd611706565b3480156107dc57600080fd5b506103636107eb3660046133f2565b611715565b3480156107fc57600080fd5b506103c661080b3660046138df565b61175a565b34801561081c57600080fd5b50610363600d5481565b34801561083257600080fd5b506103c6610841366004613499565b611765565b34801561085257600080fd5b506103c661086136600461390b565b6117bf565b34801561087257600080fd5b506103c6610881366004613940565b6117fc565b34801561089257600080fd5b506103c66108a1366004613891565b611810565b3480156108b257600080fd5b506103c66108c136600461397d565b611847565b3480156108d257600080fd5b506103636108e13660046133f2565b611859565b3480156108f257600080fd5b506103c6610901366004613940565b6118c2565b34801561091257600080fd5b506103c66109213660046133f2565b6118d3565b34801561093257600080fd5b506103966109413660046133f2565b600f6020526000908152604090205460ff1681565b34801561096257600080fd5b506000546109779067ffffffffffffffff1681565b60405167ffffffffffffffff909116815260200161036d565b34801561099c57600080fd5b506103c66109ab3660046133f2565b611916565b3480156109bc57600080fd5b506103966109cb3660046139a0565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b348015610a0557600080fd5b506103c6610a143660046139ca565b611923565b348015610a2557600080fd5b506103c6610a34366004613891565b611975565b348015610a4557600080fd5b506103c6610a543660046131f5565b6119c6565b6103c6610a67366004613a3c565b611a19565b348015610a7857600080fd5b50610ad4610a873660046133f2565b6010602052600090815260409020546bffffffffffffffffffffffff81169067ffffffffffffffff600160601b8204169065ffffffffffff600160a01b8204811691600160d01b90041684565b604080516bffffffffffffffffffffffff909516855267ffffffffffffffff909316602085015265ffffffffffff9182169284019290925216606082015260800161036d565b60006001600160a01b038316610b43576040516323d3ad8160e21b815260040160405180910390fd5b5060009081526003602090815260408083206001600160a01b03949094168352929052205467ffffffffffffffff1690565b6000610b8082611c9b565b80610b8f5750610b8f82611d1b565b92915050565b610b9d611d69565b8483141580610bac5750848114155b15610bca5760405163512509d360e11b815260040160405180910390fd5b60005b85811015610cf8576000610bf8868684818110610bec57610bec613ada565b90506020020135611dad565b90508015610cef5780848484818110610c1357610c13613ada565b905060200201351115610c7e57610c79888884818110610c3557610c35613ada565b9050602002016020810190610c4a9190613891565b878785818110610c5c57610c5c613ada565b905060200201358360405180602001604052806000815250611dda565b610cef565b610cef888884818110610c9357610c93613ada565b9050602002016020810190610ca89190613891565b878785818110610cba57610cba613ada565b90506020020135868686818110610cd357610cd3613ada565b9050602002013560405180602001604052806000815250611dda565b50600101610bcd565b50505050505050565b610d09611d69565b610d138282611f4c565b5050565b606060058054610d2690613af0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5290613af0565b8015610d9f5780601f10610d7457610100808354040283529160200191610d9f565b820191906000526020600020905b815481529060010190602001808311610d8257829003601f168201915b5050505050905090565b6060610db482611382565b610dd157604051634a1850bf60e11b815260040160405180910390fd5b60008281526001602052604090208054610dea90613af0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1690613af0565b8015610e635780601f10610e3857610100808354040283529160200191610e63565b820191906000526020600020905b815481529060010190602001808311610e4657829003601f168201915b50505050509050919050565b610e77611d69565b610e8283838361206b565b505050565b610e91828261210d565b600082815260106020526040902054600160a01b900465ffffffffffff16421015610ecf5760405163914edb0f60e01b815260040160405180910390fd5b600082815260106020526040902054600160d01b900465ffffffffffff16421115610f0d5760405163914edb0f60e01b815260040160405180910390fd5b600082815260106020526040902054600160601b900467ffffffffffffffff1615801590610f595750600082815260106020526040902054600160601b900467ffffffffffffffff1681115b15610f90576040517fa07057eb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260106020526040902054610fb89082906bffffffffffffffffffffffff16613b40565b3414610fd7576040516326ea953d60e01b815260040160405180910390fd5b610d1333838360405180602001604052806000815250611dda565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff169282019290925282916110715750604080518082019091526008546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090611095906bffffffffffffffffffffffff1687613b40565b61109f9190613b5f565b91519350909150505b9250929050565b6001600160a01b03871633148015906110cf57506110cd87336109cb565b155b156110ed57604051636d8a29e760e11b815260040160405180910390fd5b610cf887878787878787612173565b611104611d69565b600082815260026020526040902080547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b831515021790555050565b60006001600160a01b03831661116f576040516323d3ad8160e21b815260040160405180910390fd5b5060009081526003602090815260408083206001600160a01b039490941683529290522054600160801b900467ffffffffffffffff1690565b60006001600160a01b0383166111d1576040516323d3ad8160e21b815260040160405180910390fd5b5060009081526003602090815260408083206001600160a01b03949094168352929052205468010000000000000000900467ffffffffffffffff1690565b611217611d69565b80600e6000858152602001908152602001600020836040516112399190613b81565b908152604051908190036020019020805491151560ff19909216919091179055505050565b600061126982611382565b61128657604051634a1850bf60e11b815260040160405180910390fd5b610b8f82611dad565b60608382146112b15760405163512509d360e11b815260040160405180910390fd5b60008467ffffffffffffffff8111156112cc576112cc6134bb565b6040519080825280602002602001820160405280156112f5578160200160208202803683370190505b50905060005b858110156113785761134b87878381811061131857611318613ada565b905060200201602081019061132d9190613891565b86868481811061133f5761133f613ada565b90506020020135610b1a565b82828151811061135d5761135d613ada565b602090810291909101015261137181613b9d565b90506112fb565b5095945050505050565b6000818152600160205260408120805482919061139e90613af0565b9050119050919050565b6113b0611d69565b6113b985611382565b6113d657604051634a1850bf60e11b815260040160405180910390fd5b60008581526010602090815260409182902080546bffffffffffffffffffffffff88167fffffffffffff000000000000ffffffffffffffff0000000000000000000000009091168117600160a01b65ffffffffffff8981169182029290921779ffffffffffff0000000000000000ffffffffffffffffffffffff16600160d01b9289169283027fffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffff1617600160601b67ffffffffffffffff89169081029190911790945585519081529384015292820192909252606081019190915285907fbebf72a2239de401784c9e1251f4f7fbf3b330b2e661499fe9960bba6c4ab5159060800160405180910390a25050505050565b6114ef611d69565b6114fb848484846123ca565b50505050565b6001602052600090815260409020805461151a90613af0565b80601f016020809104026020016040519081016040528092919081815260200182805461154690613af0565b80156115935780601f1061156857610100808354040283529160200191611593565b820191906000526020600020905b81548152906001019060200180831161157657829003601f168201915b505050505081565b6115a3611d69565b600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006115dd82611382565b6115fa57604051634a1850bf60e11b815260040160405180910390fd5b5060009081526002602052604090205468010000000000000000900467ffffffffffffffff1690565b61162b611d69565b6116356000612500565b565b61163f611d69565b600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b33600090815260116020908152604080832085845290915290205460ff166116c2576040517f2ed6c2d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3332036116fb576040517f3d04de6d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e8283838361255f565b606060068054610d2690613af0565b600061172082611382565b61173d57604051634a1850bf60e11b815260040160405180910390fd5b5060009081526002602052604090205467ffffffffffffffff1690565b610d133383836126db565b600082815260026020526040902054600160c01b900460ff166117b4576040517fd99f604e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d1333838361255f565b6117c7611d69565b6001600160a01b0392909216600090815260116020908152604080832093835292905220805460ff1916911515919091179055565b611804611d69565b61180d8161279c565b50565b611818611d69565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61184f611d69565b610d1382826127ea565b600061186482611382565b61188157604051634a1850bf60e11b815260040160405180910390fd5b6000828152600260205260409020546118b29067ffffffffffffffff68010000000000000000820481169116613bb6565b67ffffffffffffffff1692915050565b6118ca611d69565b61180d816128c5565b6118db611d69565b6000818152601060205260408082208290555182917fab2d6ba4812a1af0240b9d5a7e01408185c9953346a8d92ea4c8e4cd300b358c91a250565b61191e611d69565b600d55565b6001600160a01b0385163314801590611943575061194185336109cb565b155b1561196157604051636d8a29e760e11b815260040160405180910390fd5b61196e8585858585612908565b5050505050565b61197d611d69565b6001600160a01b0381166119bd576040517fa2604f6a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61180d81612500565b6119ce611d69565b478111156119d95750475b6119e38282612a44565b610d13576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a23878361210d565b6000878152600e6020526040908190209051611a40908a90613b81565b9081526040519081900360200190205460ff16611a89576040517f402b7a2600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82821180611a95575081155b15611acc576040517ff3037b8a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d548514611b07576040517ff8f60a7500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b138388613b40565b9050803414611b35576040516326ea953d60e01b815260040160405180910390fd5b6000611bb98a308b8b8b8b8b33604051602001611b59989796959493929190613bdf565b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b6000818152600f602052604090205490915060ff1615611c05576040517f900bb2c900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000818152600f60205260409020805460ff19166001179055600c546001600160a01b0316611c348285612ac2565b6001600160a01b031614611c74576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8f338a8660405180602001604052806000815250611dda565b50505050505050505050565b60006301ffc9a760e01b6001600160e01b031983161480611ce557507fd9b67a26000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610b8f5750506001600160e01b0319167f0e89341c000000000000000000000000000000000000000000000000000000001490565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610b8f57506301ffc9a760e01b6001600160e01b0319831614610b8f565b6007546001600160a01b03163314611635576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000818152600260205260408120546118b29067ffffffffffffffff80821691600160801b900416613bb6565b6001600160a01b038416611e1a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e2383611382565b611e4057604051634a1850bf60e11b815260040160405180910390fd5b33611e6081600087611e5188612ae6565b611e5a88612ae6565b87612b31565b6000848152600260209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff9283168a01831617909255600384528285206001600160a01b038b811680885291865284872080547fffffffffffffffffffffffffffffffff0000000000000000000000000000000081168186168d01861690811768010000000000000000929097161781900485168c019094169093029390931790915582518981529384018890529392908516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461196e81600087878787612bdd565b6127106bffffffffffffffffffffffff82161115611fd75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c6550726963650000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6001600160a01b03821661202d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611fce565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600855565b61207483611382565b61209157604051634a1850bf60e11b815260040160405180910390fd5b60008190036120b357604051635e765b2560e11b815260040160405180910390fd5b60008381526001602052604090206120cc9083836130cc565b507f483621391b5e72d74eb03c7b5715531c486e326fb115ab3bcf34b133041854ce83838360405161210093929190613c63565b60405180910390a1505050565b60008281526002602052604090205467ffffffffffffffff600160801b820481169161213b91849116613c86565b1115610d13576040517f5aab8d9000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8382146121935760405163512509d360e11b815260040160405180910390fd5b6001600160a01b0386166121ba57604051633a954ecd60e21b815260040160405180910390fd5b600033905061223181898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b9182918501908490808284376000920191909152508a9250612b31915050565b60005b8581101561235457600087878381811061225057612250613ada565b905060200201359050600086868481811061226d5761226d613ada565b905060200201359050806003600084815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1610156122ee57604051637222ae5760e11b815260040160405180910390fd5b60009182526003602090815260408084206001600160a01b038e811686529252808420805467ffffffffffffffff808216869003811667ffffffffffffffff1992831617909255928d168552932080548085169093019093169116179055600101612234565b50866001600160a01b0316886001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898989896040516123a89493929190613ced565b60405180910390a46123c08189898989898989612ced565b5050505050505050565b6123d384611382565b1561240a576040517fc991cbb100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081900361242c57604051635e765b2560e11b815260040160405180910390fd5b60008481526001602052604090206124459083836130cc565b506000848152600260205260408120805467ffffffffffffffff60801b1916600160801b67ffffffffffffffff87169081029190911790915590036124be576000805485825260026020526040909120805467ffffffffffffffff60801b191667ffffffffffffffff909216600160801b029190911790555b837f98b506663bcacca05c69559053f211f6d1b8fbc2fa45395814f5d60ca618acf98484846040516124f293929190613d1f565b60405180910390a250505050565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661259f576040517fb817eee700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336125ce818560006125b087612ae6565b6125b987612ae6565b60405180602001604052806000815250612b31565b60008381526003602090815260408083206001600160a01b038816845290915290205467ffffffffffffffff168281101561261c57604051637222ae5760e11b815260040160405180910390fd5b60008481526003602090815260408083206001600160a01b0389811680865291845282852080547fffffffffffffffff0000000000000000ffffffffffffffff00000000000000008116600160801b9182900467ffffffffffffffff9081168c01811690920267ffffffffffffffff1916178a89039190911617905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6126e482612db8565b816001600160a01b0316836001600160a01b03160361272f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03838116600081815260046020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b80516127af906006906020840190613150565b507f57c940aa14b51ea5f96b7a2bea757ce355d996e2c5d7a3c68aff1c75a326269b816040516127df91906133df565b60405180910390a150565b60008281526002602052604090205467ffffffffffffffff8083169116111561282657604051637a89e56b60e01b815260040160405180910390fd5b8067ffffffffffffffff1660000361285157604051637a89e56b60e01b815260040160405180910390fd5b600082815260026020908152604091829020805467ffffffffffffffff60801b1916600160801b67ffffffffffffffff8616908102919091179091558251858152918201527feb3ccb1c6cb22e09e64f0d1fa507c59485b60f19910fd349babd4289ef2798a5910160405180910390a15050565b80516128d8906005906020840190613150565b507f4737457377f528cc8afd815f73ecb8b05df80d047dbffc41c17750a4033592bc816040516127df91906133df565b6001600160a01b03841661292f57604051633a954ecd60e21b815260040160405180910390fd5b3361293f818787611e5188612ae6565b60008481526003602090815260408083206001600160a01b038a16845290915290205467ffffffffffffffff1683111561298c57604051637222ae5760e11b815260040160405180910390fd5b60008481526003602090815260408083206001600160a01b038a8116808652918452828520805467ffffffffffffffff1980821667ffffffffffffffff9283168c90038316179092558b83168088529685902080549283169282168b0190911691909117905582518981529384018890529092908516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612a3c818787878787612bdd565b505050505050565b6040805160008082526020820190925281906001600160a01b03851690617530908590604051612a749190613b81565b600060405180830381858888f193505050503d8060008114612ab2576040519150601f19603f3d011682016040523d82523d6000602084013e612ab7565b606091505b509095945050505050565b6000806000612ad18585612e61565b91509150612ade81612ea3565b509392505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612b2057612b20613ada565b602090810291909101015292915050565b600a546001600160a01b03163b15612bd857600a54600b54604051633185c44d60e21b81526001600160a01b03918216600482015233602482015291169063c6171134906044016020604051808303816000875af1158015612b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bbb9190613d43565b612bd857604051638a10919360e01b815260040160405180910390fd5b612a3c565b6001600160a01b0384163b15612a3c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612c219089908990889088908890600401613d60565b6020604051808303816000875af1925050508015612c5c575060408051601f3d908101601f19168201909252612c5991810190613d98565b60015b612cbc57612c68613db5565b806308c379a003612ca15750612c7c613dd1565b80612c875750612ca3565b8060405162461bcd60e51b8152600401611fce91906133df565b505b6040516368d2bf6b60e11b815260040160405180910390fd5b6001600160e01b0319811663f23a6e6160e01b14610cf8576040516368d2bf6b60e11b815260040160405180910390fd5b6001600160a01b0386163b156123c05760405163bc197c8160e01b81526001600160a01b0387169063bc197c8190612d35908b908b908a908a908a908a908a90600401613e50565b6020604051808303816000875af1925050508015612d70575060408051601f3d908101601f19168201909252612d6d91810190613d98565b60015b612d7c57612c68613db5565b6001600160e01b0319811663bc197c8160e01b14612dad576040516368d2bf6b60e11b815260040160405180910390fd5b505050505050505050565b600a546001600160a01b03163b1561180d57600a54600b54604051633185c44d60e21b81526001600160a01b039182166004820152838216602482015291169063c6171134906044016020604051808303816000875af1158015612e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e449190613d43565b61180d57604051638a10919360e01b815260040160405180910390fd5b6000808251604103612e975760208301516040840151606085015160001a612e8b87828585613008565b945094505050506110a8565b506000905060026110a8565b6000816004811115612eb757612eb7613eb2565b03612ebf5750565b6001816004811115612ed357612ed3613eb2565b03612f205760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401611fce565b6002816004811115612f3457612f34613eb2565b03612f815760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401611fce565b6003816004811115612f9557612f95613eb2565b0361180d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401611fce565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561303f57506000905060036130c3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613093573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166130bc576000600192509250506130c3565b9150600090505b94509492505050565b8280546130d890613af0565b90600052602060002090601f0160209004810192826130fa5760008555613140565b82601f106131135782800160ff19823516178555613140565b82800160010185558215613140579182015b82811115613140578235825591602001919060010190613125565b5061314c9291506131c4565b5090565b82805461315c90613af0565b90600052602060002090601f01602090048101928261317e5760008555613140565b82601f1061319757805160ff1916838001178555613140565b82800160010185558215613140579182015b828111156131405782518255916020019190600101906131a9565b5b8082111561314c57600081556001016131c5565b80356001600160a01b03811681146131f057600080fd5b919050565b6000806040838503121561320857600080fd5b613211836131d9565b946020939093013593505050565b6001600160e01b03198116811461180d57600080fd5b60006020828403121561324757600080fd5b81356132528161321f565b9392505050565b60008083601f84011261326b57600080fd5b50813567ffffffffffffffff81111561328357600080fd5b6020830191508360208260051b85010111156110a857600080fd5b600080600080600080606087890312156132b757600080fd5b863567ffffffffffffffff808211156132cf57600080fd5b6132db8a838b01613259565b909850965060208901359150808211156132f457600080fd5b6133008a838b01613259565b9096509450604089013591508082111561331957600080fd5b5061332689828a01613259565b979a9699509497509295939492505050565b80356bffffffffffffffffffffffff811681146131f057600080fd5b6000806040838503121561336757600080fd5b613370836131d9565b915061337e60208401613338565b90509250929050565b60005b838110156133a257818101518382015260200161338a565b838111156114fb5750506000910152565b600081518084526133cb816020860160208601613387565b601f01601f19169290920160200192915050565b60208152600061325260208301846133b3565b60006020828403121561340457600080fd5b5035919050565b60008083601f84011261341d57600080fd5b50813567ffffffffffffffff81111561343557600080fd5b6020830191508360208285010111156110a857600080fd5b60008060006040848603121561346257600080fd5b83359250602084013567ffffffffffffffff81111561348057600080fd5b61348c8682870161340b565b9497909650939450505050565b600080604083850312156134ac57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156134f7576134f76134bb565b6040525050565b600082601f83011261350f57600080fd5b813567ffffffffffffffff811115613529576135296134bb565b604051613540601f8301601f1916602001826134d1565b81815284602083860101111561355557600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600080600060a0888a03121561358d57600080fd5b613596886131d9565b96506135a4602089016131d9565b9550604088013567ffffffffffffffff808211156135c157600080fd5b6135cd8b838c01613259565b909750955060608a01359150808211156135e657600080fd5b6135f28b838c01613259565b909550935060808a013591508082111561360b57600080fd5b506136188a828b016134fe565b91505092959891949750929550565b801515811461180d57600080fd5b6000806040838503121561364857600080fd5b82359150602083013561365a81613627565b809150509250929050565b60008060006060848603121561367a57600080fd5b83359250602084013567ffffffffffffffff81111561369857600080fd5b6136a4868287016134fe565b92505060408401356136b581613627565b809150509250925092565b600080600080604085870312156136d657600080fd5b843567ffffffffffffffff808211156136ee57600080fd5b6136fa88838901613259565b9096509450602087013591508082111561371357600080fd5b5061372087828801613259565b95989497509550505050565b6020808252825182820181905260009190848201906040850190845b8181101561376457835183529284019291840191600101613748565b50909695505050505050565b6000806040838503121561378357600080fd5b82359150602083013567ffffffffffffffff8111156137a157600080fd5b6137ad858286016134fe565b9150509250929050565b803565ffffffffffff811681146131f057600080fd5b803567ffffffffffffffff811681146131f057600080fd5b600080600080600060a086880312156137fd57600080fd5b8535945061380d60208701613338565b935061381b604087016137b7565b9250613829606087016137b7565b9150613837608087016137cd565b90509295509295909350565b6000806000806060858703121561385957600080fd5b84359350613869602086016137cd565b9250604085013567ffffffffffffffff81111561388557600080fd5b6137208782880161340b565b6000602082840312156138a357600080fd5b613252826131d9565b6000806000606084860312156138c157600080fd5b6138ca846131d9565b95602085013595506040909401359392505050565b600080604083850312156138f257600080fd5b6138fb836131d9565b9150602083013561365a81613627565b60008060006060848603121561392057600080fd5b613929846131d9565b92506020840135915060408401356136b581613627565b60006020828403121561395257600080fd5b813567ffffffffffffffff81111561396957600080fd5b613975848285016134fe565b949350505050565b6000806040838503121561399057600080fd5b8235915061337e602084016137cd565b600080604083850312156139b357600080fd5b6139bc836131d9565b915061337e602084016131d9565b600080600080600060a086880312156139e257600080fd5b6139eb866131d9565b94506139f9602087016131d9565b93506040860135925060608601359150608086013567ffffffffffffffff811115613a2357600080fd5b613a2f888289016134fe565b9150509295509295909350565b600080600080600080600080610100898b031215613a5957600080fd5b883567ffffffffffffffff80821115613a7157600080fd5b613a7d8c838d016134fe565b995060208b0135985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b0135935060e08b0135915080821115613abd57600080fd5b50613aca8b828c016134fe565b9150509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b600181811c90821680613b0457607f821691505b602082108103613b2457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613b5a57613b5a613b2a565b500290565b600082613b7c57634e487b7160e01b600052601260045260246000fd5b500490565b60008251613b93818460208701613387565b9190910192915050565b600060018201613baf57613baf613b2a565b5060010190565b600067ffffffffffffffff83811690831681811015613bd757613bd7613b2a565b039392505050565b6000610100808352613bf38184018c6133b3565b9150506001600160a01b03808a1660208401528860408401528760608401528660808401528560a08401528460c084015280841660e0840152509998505050505050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b838152604060208201526000613c7d604083018486613c3a565b95945050505050565b60008219821115613c9957613c99613b2a565b500190565b81835260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115613cd057600080fd5b8260051b8083602087013760009401602001938452509192915050565b604081526000613d01604083018688613c9e565b8281036020840152613d14818587613c9e565b979650505050505050565b67ffffffffffffffff84168152604060208201526000613c7d604083018486613c3a565b600060208284031215613d5557600080fd5b815161325281613627565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152613d1460a08301846133b3565b600060208284031215613daa57600080fd5b81516132528161321f565b600060033d1115613dce5760046000803e5060005160e01c5b90565b600060443d1015613ddf5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715613e0f57505050505090565b8285019150815181811115613e275750505050505090565b843d8701016020828501011115613e415750505050505090565b612ab7602082860101876134d1565b60006001600160a01b03808a16835280891660208401525060a06040830152613e7d60a083018789613c9e565b8281036060840152613e90818688613c9e565b90508281036080840152613ea481856133b3565b9a9950505050505050505050565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220090242388177449eb8da05afcef84bff5d809f0b88902a2a3ee68d3fbc843cd364736f6c634300080d0033
Deployed Bytecode
0x60806040526004361061033e5760003560e01c8063715018a6116101b0578063bd57c425116100ec578063e87ce00311610095578063f2fde38b1161006f578063f2fde38b14610a19578063f3fef3a314610a39578063f94b910414610a59578063fdacbf9314610a6c57600080fd5b8063e87ce00314610990578063e985e9c5146109b0578063f242432a146109f957600080fd5b8063c68ac6b0116100c6578063c68ac6b014610906578063e307fb3114610926578063e489d5101461095657600080fd5b8063bd57c425146108a6578063bd85b039146108c6578063c47f0027146108e657600080fd5b80639d7f4ebf11610159578063b390c0ab11610133578063b390c0ab14610826578063b69c5a2314610846578063b84c824614610866578063baf3ff601461088657600080fd5b80639d7f4ebf146107d0578063a22cb465146107f0578063adc1ebcc1461081057600080fd5b80638da5cb5b1161018a5780638da5cb5b14610762578063927c01171461078057806395d89b41146107bb57600080fd5b8063715018a61461070d57806380703cf4146107225780638c6eafde1461074257600080fd5b80633ae1cc631161027f5780634f558e79116102285780635e8c07b8116102025780635e8c07b81461068d5780636914db60146106ad5780636c19e783146106cd5780636ef82ecc146106ed57600080fd5b80634f558e79146106015780634fe78e7414610621578063501045f31461066d57600080fd5b806344c404d91161025957806344c404d91461059457806347fda41a146105b45780634e1273f4146105d457600080fd5b80633ae1cc63146105345780633e456076146105545780633f85c7551461057457600080fd5b806318e97fd1116102ec5780632a55205a116102c65780632a55205a146104955780632eb2c2d6146104d457806333699624146104f45780633962c10a1461051457600080fd5b806318e97fd11461042a5780631b2ef1ca1461044a578063238ac9331461045d57600080fd5b806304634d8d1161031d57806304634d8d146103c857806306fdde03146103e85780630e89341c1461040a57600080fd5b8062fdd58e1461034357806301ffc9a7146103765780630260e6b5146103a6575b600080fd5b34801561034f57600080fd5b5061036361035e3660046131f5565b610b1a565b6040519081526020015b60405180910390f35b34801561038257600080fd5b50610396610391366004613235565b610b75565b604051901515815260200161036d565b3480156103b257600080fd5b506103c66103c136600461329e565b610b95565b005b3480156103d457600080fd5b506103c66103e3366004613354565b610d01565b3480156103f457600080fd5b506103fd610d17565b60405161036d91906133df565b34801561041657600080fd5b506103fd6104253660046133f2565b610da9565b34801561043657600080fd5b506103c661044536600461344d565b610e6f565b6103c6610458366004613499565b610e87565b34801561046957600080fd5b50600c5461047d906001600160a01b031681565b6040516001600160a01b03909116815260200161036d565b3480156104a157600080fd5b506104b56104b0366004613499565b610ff2565b604080516001600160a01b03909316835260208301919091520161036d565b3480156104e057600080fd5b506103c66104ef366004613572565b6110af565b34801561050057600080fd5b506103c661050f366004613635565b6110fc565b34801561052057600080fd5b50600b5461047d906001600160a01b031681565b34801561054057600080fd5b50600a5461047d906001600160a01b031681565b34801561056057600080fd5b5061036361056f3660046131f5565b611146565b34801561058057600080fd5b5061036361058f3660046131f5565b6111a8565b3480156105a057600080fd5b506103c66105af366004613665565b61120f565b3480156105c057600080fd5b506103636105cf3660046133f2565b61125e565b3480156105e057600080fd5b506105f46105ef3660046136c0565b61128f565b60405161036d919061372c565b34801561060d57600080fd5b5061039661061c3660046133f2565b611382565b34801561062d57600080fd5b5061039661063c366004613770565b600e602090815260009283526040909220815180830184018051928152908401929093019190912091525460ff1681565b34801561067957600080fd5b506103c66106883660046137e5565b6113a8565b34801561069957600080fd5b506103c66106a8366004613843565b6114e7565b3480156106b957600080fd5b506103fd6106c83660046133f2565b611501565b3480156106d957600080fd5b506103c66106e8366004613891565b61159b565b3480156106f957600080fd5b506103636107083660046133f2565b6115d2565b34801561071957600080fd5b506103c6611623565b34801561072e57600080fd5b506103c661073d366004613891565b611637565b34801561074e57600080fd5b506103c661075d3660046138ac565b61166e565b34801561076e57600080fd5b506007546001600160a01b031661047d565b34801561078c57600080fd5b5061039661079b3660046131f5565b601160209081526000928352604080842090915290825290205460ff1681565b3480156107c757600080fd5b506103fd611706565b3480156107dc57600080fd5b506103636107eb3660046133f2565b611715565b3480156107fc57600080fd5b506103c661080b3660046138df565b61175a565b34801561081c57600080fd5b50610363600d5481565b34801561083257600080fd5b506103c6610841366004613499565b611765565b34801561085257600080fd5b506103c661086136600461390b565b6117bf565b34801561087257600080fd5b506103c6610881366004613940565b6117fc565b34801561089257600080fd5b506103c66108a1366004613891565b611810565b3480156108b257600080fd5b506103c66108c136600461397d565b611847565b3480156108d257600080fd5b506103636108e13660046133f2565b611859565b3480156108f257600080fd5b506103c6610901366004613940565b6118c2565b34801561091257600080fd5b506103c66109213660046133f2565b6118d3565b34801561093257600080fd5b506103966109413660046133f2565b600f6020526000908152604090205460ff1681565b34801561096257600080fd5b506000546109779067ffffffffffffffff1681565b60405167ffffffffffffffff909116815260200161036d565b34801561099c57600080fd5b506103c66109ab3660046133f2565b611916565b3480156109bc57600080fd5b506103966109cb3660046139a0565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b348015610a0557600080fd5b506103c6610a143660046139ca565b611923565b348015610a2557600080fd5b506103c6610a34366004613891565b611975565b348015610a4557600080fd5b506103c6610a543660046131f5565b6119c6565b6103c6610a67366004613a3c565b611a19565b348015610a7857600080fd5b50610ad4610a873660046133f2565b6010602052600090815260409020546bffffffffffffffffffffffff81169067ffffffffffffffff600160601b8204169065ffffffffffff600160a01b8204811691600160d01b90041684565b604080516bffffffffffffffffffffffff909516855267ffffffffffffffff909316602085015265ffffffffffff9182169284019290925216606082015260800161036d565b60006001600160a01b038316610b43576040516323d3ad8160e21b815260040160405180910390fd5b5060009081526003602090815260408083206001600160a01b03949094168352929052205467ffffffffffffffff1690565b6000610b8082611c9b565b80610b8f5750610b8f82611d1b565b92915050565b610b9d611d69565b8483141580610bac5750848114155b15610bca5760405163512509d360e11b815260040160405180910390fd5b60005b85811015610cf8576000610bf8868684818110610bec57610bec613ada565b90506020020135611dad565b90508015610cef5780848484818110610c1357610c13613ada565b905060200201351115610c7e57610c79888884818110610c3557610c35613ada565b9050602002016020810190610c4a9190613891565b878785818110610c5c57610c5c613ada565b905060200201358360405180602001604052806000815250611dda565b610cef565b610cef888884818110610c9357610c93613ada565b9050602002016020810190610ca89190613891565b878785818110610cba57610cba613ada565b90506020020135868686818110610cd357610cd3613ada565b9050602002013560405180602001604052806000815250611dda565b50600101610bcd565b50505050505050565b610d09611d69565b610d138282611f4c565b5050565b606060058054610d2690613af0565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5290613af0565b8015610d9f5780601f10610d7457610100808354040283529160200191610d9f565b820191906000526020600020905b815481529060010190602001808311610d8257829003601f168201915b5050505050905090565b6060610db482611382565b610dd157604051634a1850bf60e11b815260040160405180910390fd5b60008281526001602052604090208054610dea90613af0565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1690613af0565b8015610e635780601f10610e3857610100808354040283529160200191610e63565b820191906000526020600020905b815481529060010190602001808311610e4657829003601f168201915b50505050509050919050565b610e77611d69565b610e8283838361206b565b505050565b610e91828261210d565b600082815260106020526040902054600160a01b900465ffffffffffff16421015610ecf5760405163914edb0f60e01b815260040160405180910390fd5b600082815260106020526040902054600160d01b900465ffffffffffff16421115610f0d5760405163914edb0f60e01b815260040160405180910390fd5b600082815260106020526040902054600160601b900467ffffffffffffffff1615801590610f595750600082815260106020526040902054600160601b900467ffffffffffffffff1681115b15610f90576040517fa07057eb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260106020526040902054610fb89082906bffffffffffffffffffffffff16613b40565b3414610fd7576040516326ea953d60e01b815260040160405180910390fd5b610d1333838360405180602001604052806000815250611dda565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff169282019290925282916110715750604080518082019091526008546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b602081015160009061271090611095906bffffffffffffffffffffffff1687613b40565b61109f9190613b5f565b91519350909150505b9250929050565b6001600160a01b03871633148015906110cf57506110cd87336109cb565b155b156110ed57604051636d8a29e760e11b815260040160405180910390fd5b610cf887878787878787612173565b611104611d69565b600082815260026020526040902080547fffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b831515021790555050565b60006001600160a01b03831661116f576040516323d3ad8160e21b815260040160405180910390fd5b5060009081526003602090815260408083206001600160a01b039490941683529290522054600160801b900467ffffffffffffffff1690565b60006001600160a01b0383166111d1576040516323d3ad8160e21b815260040160405180910390fd5b5060009081526003602090815260408083206001600160a01b03949094168352929052205468010000000000000000900467ffffffffffffffff1690565b611217611d69565b80600e6000858152602001908152602001600020836040516112399190613b81565b908152604051908190036020019020805491151560ff19909216919091179055505050565b600061126982611382565b61128657604051634a1850bf60e11b815260040160405180910390fd5b610b8f82611dad565b60608382146112b15760405163512509d360e11b815260040160405180910390fd5b60008467ffffffffffffffff8111156112cc576112cc6134bb565b6040519080825280602002602001820160405280156112f5578160200160208202803683370190505b50905060005b858110156113785761134b87878381811061131857611318613ada565b905060200201602081019061132d9190613891565b86868481811061133f5761133f613ada565b90506020020135610b1a565b82828151811061135d5761135d613ada565b602090810291909101015261137181613b9d565b90506112fb565b5095945050505050565b6000818152600160205260408120805482919061139e90613af0565b9050119050919050565b6113b0611d69565b6113b985611382565b6113d657604051634a1850bf60e11b815260040160405180910390fd5b60008581526010602090815260409182902080546bffffffffffffffffffffffff88167fffffffffffff000000000000ffffffffffffffff0000000000000000000000009091168117600160a01b65ffffffffffff8981169182029290921779ffffffffffff0000000000000000ffffffffffffffffffffffff16600160d01b9289169283027fffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffff1617600160601b67ffffffffffffffff89169081029190911790945585519081529384015292820192909252606081019190915285907fbebf72a2239de401784c9e1251f4f7fbf3b330b2e661499fe9960bba6c4ab5159060800160405180910390a25050505050565b6114ef611d69565b6114fb848484846123ca565b50505050565b6001602052600090815260409020805461151a90613af0565b80601f016020809104026020016040519081016040528092919081815260200182805461154690613af0565b80156115935780601f1061156857610100808354040283529160200191611593565b820191906000526020600020905b81548152906001019060200180831161157657829003601f168201915b505050505081565b6115a3611d69565b600c805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b60006115dd82611382565b6115fa57604051634a1850bf60e11b815260040160405180910390fd5b5060009081526002602052604090205468010000000000000000900467ffffffffffffffff1690565b61162b611d69565b6116356000612500565b565b61163f611d69565b600b805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b33600090815260116020908152604080832085845290915290205460ff166116c2576040517f2ed6c2d100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3332036116fb576040517f3d04de6d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e8283838361255f565b606060068054610d2690613af0565b600061172082611382565b61173d57604051634a1850bf60e11b815260040160405180910390fd5b5060009081526002602052604090205467ffffffffffffffff1690565b610d133383836126db565b600082815260026020526040902054600160c01b900460ff166117b4576040517fd99f604e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d1333838361255f565b6117c7611d69565b6001600160a01b0392909216600090815260116020908152604080832093835292905220805460ff1916911515919091179055565b611804611d69565b61180d8161279c565b50565b611818611d69565b600a805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b61184f611d69565b610d1382826127ea565b600061186482611382565b61188157604051634a1850bf60e11b815260040160405180910390fd5b6000828152600260205260409020546118b29067ffffffffffffffff68010000000000000000820481169116613bb6565b67ffffffffffffffff1692915050565b6118ca611d69565b61180d816128c5565b6118db611d69565b6000818152601060205260408082208290555182917fab2d6ba4812a1af0240b9d5a7e01408185c9953346a8d92ea4c8e4cd300b358c91a250565b61191e611d69565b600d55565b6001600160a01b0385163314801590611943575061194185336109cb565b155b1561196157604051636d8a29e760e11b815260040160405180910390fd5b61196e8585858585612908565b5050505050565b61197d611d69565b6001600160a01b0381166119bd576040517fa2604f6a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61180d81612500565b6119ce611d69565b478111156119d95750475b6119e38282612a44565b610d13576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a23878361210d565b6000878152600e6020526040908190209051611a40908a90613b81565b9081526040519081900360200190205460ff16611a89576040517f402b7a2600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82821180611a95575081155b15611acc576040517ff3037b8a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d548514611b07576040517ff8f60a7500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b138388613b40565b9050803414611b35576040516326ea953d60e01b815260040160405180910390fd5b6000611bb98a308b8b8b8b8b33604051602001611b59989796959493929190613bdf565b60408051601f1981840301815282825280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000084830152603c8085019190915282518085039091018152605c909301909152815191012090565b6000818152600f602052604090205490915060ff1615611c05576040517f900bb2c900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000818152600f60205260409020805460ff19166001179055600c546001600160a01b0316611c348285612ac2565b6001600160a01b031614611c74576040517f8baa579f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c8f338a8660405180602001604052806000815250611dda565b50505050505050505050565b60006301ffc9a760e01b6001600160e01b031983161480611ce557507fd9b67a26000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b80610b8f5750506001600160e01b0319167f0e89341c000000000000000000000000000000000000000000000000000000001490565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610b8f57506301ffc9a760e01b6001600160e01b0319831614610b8f565b6007546001600160a01b03163314611635576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000818152600260205260408120546118b29067ffffffffffffffff80821691600160801b900416613bb6565b6001600160a01b038416611e1a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e2383611382565b611e4057604051634a1850bf60e11b815260040160405180910390fd5b33611e6081600087611e5188612ae6565b611e5a88612ae6565b87612b31565b6000848152600260209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff9283168a01831617909255600384528285206001600160a01b038b811680885291865284872080547fffffffffffffffffffffffffffffffff0000000000000000000000000000000081168186168d01861690811768010000000000000000929097161781900485168c019094169093029390931790915582518981529384018890529392908516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461196e81600087878787612bdd565b6127106bffffffffffffffffffffffff82161115611fd75760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c6550726963650000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6001600160a01b03821661202d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401611fce565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff9091166020909201829052600160a01b90910217600855565b61207483611382565b61209157604051634a1850bf60e11b815260040160405180910390fd5b60008190036120b357604051635e765b2560e11b815260040160405180910390fd5b60008381526001602052604090206120cc9083836130cc565b507f483621391b5e72d74eb03c7b5715531c486e326fb115ab3bcf34b133041854ce83838360405161210093929190613c63565b60405180910390a1505050565b60008281526002602052604090205467ffffffffffffffff600160801b820481169161213b91849116613c86565b1115610d13576040517f5aab8d9000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8382146121935760405163512509d360e11b815260040160405180910390fd5b6001600160a01b0386166121ba57604051633a954ecd60e21b815260040160405180910390fd5b600033905061223181898989898080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808d0282810182019093528c82529093508c92508b9182918501908490808284376000920191909152508a9250612b31915050565b60005b8581101561235457600087878381811061225057612250613ada565b905060200201359050600086868481811061226d5761226d613ada565b905060200201359050806003600084815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1610156122ee57604051637222ae5760e11b815260040160405180910390fd5b60009182526003602090815260408084206001600160a01b038e811686529252808420805467ffffffffffffffff808216869003811667ffffffffffffffff1992831617909255928d168552932080548085169093019093169116179055600101612234565b50866001600160a01b0316886001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb898989896040516123a89493929190613ced565b60405180910390a46123c08189898989898989612ced565b5050505050505050565b6123d384611382565b1561240a576040517fc991cbb100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081900361242c57604051635e765b2560e11b815260040160405180910390fd5b60008481526001602052604090206124459083836130cc565b506000848152600260205260408120805467ffffffffffffffff60801b1916600160801b67ffffffffffffffff87169081029190911790915590036124be576000805485825260026020526040909120805467ffffffffffffffff60801b191667ffffffffffffffff909216600160801b029190911790555b837f98b506663bcacca05c69559053f211f6d1b8fbc2fa45395814f5d60ca618acf98484846040516124f293929190613d1f565b60405180910390a250505050565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661259f576040517fb817eee700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336125ce818560006125b087612ae6565b6125b987612ae6565b60405180602001604052806000815250612b31565b60008381526003602090815260408083206001600160a01b038816845290915290205467ffffffffffffffff168281101561261c57604051637222ae5760e11b815260040160405180910390fd5b60008481526003602090815260408083206001600160a01b0389811680865291845282852080547fffffffffffffffff0000000000000000ffffffffffffffff00000000000000008116600160801b9182900467ffffffffffffffff9081168c01811690920267ffffffffffffffff1916178a89039190911617905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b6126e482612db8565b816001600160a01b0316836001600160a01b03160361272f576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03838116600081815260046020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b80516127af906006906020840190613150565b507f57c940aa14b51ea5f96b7a2bea757ce355d996e2c5d7a3c68aff1c75a326269b816040516127df91906133df565b60405180910390a150565b60008281526002602052604090205467ffffffffffffffff8083169116111561282657604051637a89e56b60e01b815260040160405180910390fd5b8067ffffffffffffffff1660000361285157604051637a89e56b60e01b815260040160405180910390fd5b600082815260026020908152604091829020805467ffffffffffffffff60801b1916600160801b67ffffffffffffffff8616908102919091179091558251858152918201527feb3ccb1c6cb22e09e64f0d1fa507c59485b60f19910fd349babd4289ef2798a5910160405180910390a15050565b80516128d8906005906020840190613150565b507f4737457377f528cc8afd815f73ecb8b05df80d047dbffc41c17750a4033592bc816040516127df91906133df565b6001600160a01b03841661292f57604051633a954ecd60e21b815260040160405180910390fd5b3361293f818787611e5188612ae6565b60008481526003602090815260408083206001600160a01b038a16845290915290205467ffffffffffffffff1683111561298c57604051637222ae5760e11b815260040160405180910390fd5b60008481526003602090815260408083206001600160a01b038a8116808652918452828520805467ffffffffffffffff1980821667ffffffffffffffff9283168c90038316179092558b83168088529685902080549283169282168b0190911691909117905582518981529384018890529092908516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612a3c818787878787612bdd565b505050505050565b6040805160008082526020820190925281906001600160a01b03851690617530908590604051612a749190613b81565b600060405180830381858888f193505050503d8060008114612ab2576040519150601f19603f3d011682016040523d82523d6000602084013e612ab7565b606091505b509095945050505050565b6000806000612ad18585612e61565b91509150612ade81612ea3565b509392505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612b2057612b20613ada565b602090810291909101015292915050565b600a546001600160a01b03163b15612bd857600a54600b54604051633185c44d60e21b81526001600160a01b03918216600482015233602482015291169063c6171134906044016020604051808303816000875af1158015612b97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bbb9190613d43565b612bd857604051638a10919360e01b815260040160405180910390fd5b612a3c565b6001600160a01b0384163b15612a3c5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190612c219089908990889088908890600401613d60565b6020604051808303816000875af1925050508015612c5c575060408051601f3d908101601f19168201909252612c5991810190613d98565b60015b612cbc57612c68613db5565b806308c379a003612ca15750612c7c613dd1565b80612c875750612ca3565b8060405162461bcd60e51b8152600401611fce91906133df565b505b6040516368d2bf6b60e11b815260040160405180910390fd5b6001600160e01b0319811663f23a6e6160e01b14610cf8576040516368d2bf6b60e11b815260040160405180910390fd5b6001600160a01b0386163b156123c05760405163bc197c8160e01b81526001600160a01b0387169063bc197c8190612d35908b908b908a908a908a908a908a90600401613e50565b6020604051808303816000875af1925050508015612d70575060408051601f3d908101601f19168201909252612d6d91810190613d98565b60015b612d7c57612c68613db5565b6001600160e01b0319811663bc197c8160e01b14612dad576040516368d2bf6b60e11b815260040160405180910390fd5b505050505050505050565b600a546001600160a01b03163b1561180d57600a54600b54604051633185c44d60e21b81526001600160a01b039182166004820152838216602482015291169063c6171134906044016020604051808303816000875af1158015612e20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e449190613d43565b61180d57604051638a10919360e01b815260040160405180910390fd5b6000808251604103612e975760208301516040840151606085015160001a612e8b87828585613008565b945094505050506110a8565b506000905060026110a8565b6000816004811115612eb757612eb7613eb2565b03612ebf5750565b6001816004811115612ed357612ed3613eb2565b03612f205760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401611fce565b6002816004811115612f3457612f34613eb2565b03612f815760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401611fce565b6003816004811115612f9557612f95613eb2565b0361180d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401611fce565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561303f57506000905060036130c3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015613093573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166130bc576000600192509250506130c3565b9150600090505b94509492505050565b8280546130d890613af0565b90600052602060002090601f0160209004810192826130fa5760008555613140565b82601f106131135782800160ff19823516178555613140565b82800160010185558215613140579182015b82811115613140578235825591602001919060010190613125565b5061314c9291506131c4565b5090565b82805461315c90613af0565b90600052602060002090601f01602090048101928261317e5760008555613140565b82601f1061319757805160ff1916838001178555613140565b82800160010185558215613140579182015b828111156131405782518255916020019190600101906131a9565b5b8082111561314c57600081556001016131c5565b80356001600160a01b03811681146131f057600080fd5b919050565b6000806040838503121561320857600080fd5b613211836131d9565b946020939093013593505050565b6001600160e01b03198116811461180d57600080fd5b60006020828403121561324757600080fd5b81356132528161321f565b9392505050565b60008083601f84011261326b57600080fd5b50813567ffffffffffffffff81111561328357600080fd5b6020830191508360208260051b85010111156110a857600080fd5b600080600080600080606087890312156132b757600080fd5b863567ffffffffffffffff808211156132cf57600080fd5b6132db8a838b01613259565b909850965060208901359150808211156132f457600080fd5b6133008a838b01613259565b9096509450604089013591508082111561331957600080fd5b5061332689828a01613259565b979a9699509497509295939492505050565b80356bffffffffffffffffffffffff811681146131f057600080fd5b6000806040838503121561336757600080fd5b613370836131d9565b915061337e60208401613338565b90509250929050565b60005b838110156133a257818101518382015260200161338a565b838111156114fb5750506000910152565b600081518084526133cb816020860160208601613387565b601f01601f19169290920160200192915050565b60208152600061325260208301846133b3565b60006020828403121561340457600080fd5b5035919050565b60008083601f84011261341d57600080fd5b50813567ffffffffffffffff81111561343557600080fd5b6020830191508360208285010111156110a857600080fd5b60008060006040848603121561346257600080fd5b83359250602084013567ffffffffffffffff81111561348057600080fd5b61348c8682870161340b565b9497909650939450505050565b600080604083850312156134ac57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff811182821017156134f7576134f76134bb565b6040525050565b600082601f83011261350f57600080fd5b813567ffffffffffffffff811115613529576135296134bb565b604051613540601f8301601f1916602001826134d1565b81815284602083860101111561355557600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600080600060a0888a03121561358d57600080fd5b613596886131d9565b96506135a4602089016131d9565b9550604088013567ffffffffffffffff808211156135c157600080fd5b6135cd8b838c01613259565b909750955060608a01359150808211156135e657600080fd5b6135f28b838c01613259565b909550935060808a013591508082111561360b57600080fd5b506136188a828b016134fe565b91505092959891949750929550565b801515811461180d57600080fd5b6000806040838503121561364857600080fd5b82359150602083013561365a81613627565b809150509250929050565b60008060006060848603121561367a57600080fd5b83359250602084013567ffffffffffffffff81111561369857600080fd5b6136a4868287016134fe565b92505060408401356136b581613627565b809150509250925092565b600080600080604085870312156136d657600080fd5b843567ffffffffffffffff808211156136ee57600080fd5b6136fa88838901613259565b9096509450602087013591508082111561371357600080fd5b5061372087828801613259565b95989497509550505050565b6020808252825182820181905260009190848201906040850190845b8181101561376457835183529284019291840191600101613748565b50909695505050505050565b6000806040838503121561378357600080fd5b82359150602083013567ffffffffffffffff8111156137a157600080fd5b6137ad858286016134fe565b9150509250929050565b803565ffffffffffff811681146131f057600080fd5b803567ffffffffffffffff811681146131f057600080fd5b600080600080600060a086880312156137fd57600080fd5b8535945061380d60208701613338565b935061381b604087016137b7565b9250613829606087016137b7565b9150613837608087016137cd565b90509295509295909350565b6000806000806060858703121561385957600080fd5b84359350613869602086016137cd565b9250604085013567ffffffffffffffff81111561388557600080fd5b6137208782880161340b565b6000602082840312156138a357600080fd5b613252826131d9565b6000806000606084860312156138c157600080fd5b6138ca846131d9565b95602085013595506040909401359392505050565b600080604083850312156138f257600080fd5b6138fb836131d9565b9150602083013561365a81613627565b60008060006060848603121561392057600080fd5b613929846131d9565b92506020840135915060408401356136b581613627565b60006020828403121561395257600080fd5b813567ffffffffffffffff81111561396957600080fd5b613975848285016134fe565b949350505050565b6000806040838503121561399057600080fd5b8235915061337e602084016137cd565b600080604083850312156139b357600080fd5b6139bc836131d9565b915061337e602084016131d9565b600080600080600060a086880312156139e257600080fd5b6139eb866131d9565b94506139f9602087016131d9565b93506040860135925060608601359150608086013567ffffffffffffffff811115613a2357600080fd5b613a2f888289016134fe565b9150509295509295909350565b600080600080600080600080610100898b031215613a5957600080fd5b883567ffffffffffffffff80821115613a7157600080fd5b613a7d8c838d016134fe565b995060208b0135985060408b0135975060608b0135965060808b0135955060a08b0135945060c08b0135935060e08b0135915080821115613abd57600080fd5b50613aca8b828c016134fe565b9150509295985092959890939650565b634e487b7160e01b600052603260045260246000fd5b600181811c90821680613b0457607f821691505b602082108103613b2457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615613b5a57613b5a613b2a565b500290565b600082613b7c57634e487b7160e01b600052601260045260246000fd5b500490565b60008251613b93818460208701613387565b9190910192915050565b600060018201613baf57613baf613b2a565b5060010190565b600067ffffffffffffffff83811690831681811015613bd757613bd7613b2a565b039392505050565b6000610100808352613bf38184018c6133b3565b9150506001600160a01b03808a1660208401528860408401528760608401528660808401528560a08401528460c084015280841660e0840152509998505050505050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b838152604060208201526000613c7d604083018486613c3a565b95945050505050565b60008219821115613c9957613c99613b2a565b500190565b81835260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115613cd057600080fd5b8260051b8083602087013760009401602001938452509192915050565b604081526000613d01604083018688613c9e565b8281036020840152613d14818587613c9e565b979650505050505050565b67ffffffffffffffff84168152604060208201526000613c7d604083018486613c3a565b600060208284031215613d5557600080fd5b815161325281613627565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152613d1460a08301846133b3565b600060208284031215613daa57600080fd5b81516132528161321f565b600060033d1115613dce5760046000803e5060005160e01c5b90565b600060443d1015613ddf5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715613e0f57505050505090565b8285019150815181811115613e275750505050505090565b843d8701016020828501011115613e415750505050505090565b612ab7602082860101876134d1565b60006001600160a01b03808a16835280891660208401525060a06040830152613e7d60a083018789613c9e565b8281036060840152613e90818688613c9e565b90508281036080840152613ea481856133b3565b9a9950505050505050505050565b634e487b7160e01b600052602160045260246000fdfea2646970667358221220090242388177449eb8da05afcef84bff5d809f0b88902a2a3ee68d3fbc843cd364736f6c634300080d0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.