ERC-721
Overview
Max Total Supply
194 MTOM
Holders
106
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MTOMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Meteorium
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-18 */ // SPDX-License-Identifier: MIT // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: operator-filter-registry/src/lib/Constants.sol pragma solidity ^0.8.13; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6; // File: operator-filter-registry/src/IOperatorFilterRegistry.sol pragma solidity ^0.8.13; interface IOperatorFilterRegistry { /** * @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns * true if supplied registrant address is not registered. */ function isOperatorAllowed(address registrant, address operator) external view returns (bool); /** * @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner. */ function register(address registrant) external; /** * @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes. */ function registerAndSubscribe(address registrant, address subscription) external; /** * @notice Registers an address with the registry and copies the filtered operators and codeHashes from another * address without subscribing. */ function registerAndCopyEntries(address registrant, address registrantToCopy) external; /** * @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner. * Note that this does not remove any filtered addresses or codeHashes. * Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes. */ function unregister(address addr) external; /** * @notice Update an operator address for a registered address - when filtered is true, the operator is filtered. */ function updateOperator(address registrant, address operator, bool filtered) external; /** * @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates. */ function updateOperators(address registrant, address[] calldata operators, bool filtered) external; /** * @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered. */ function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; /** * @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates. */ function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; /** * @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous * subscription if present. * Note that accounts with subscriptions may go on to subscribe to other accounts - in this case, * subscriptions will not be forwarded. Instead the former subscription's existing entries will still be * used. */ function subscribe(address registrant, address registrantToSubscribe) external; /** * @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes. */ function unsubscribe(address registrant, bool copyExistingEntries) external; /** * @notice Get the subscription address of a given registrant, if any. */ function subscriptionOf(address addr) external returns (address registrant); /** * @notice Get the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscribers(address registrant) external returns (address[] memory); /** * @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant. * Note that order is not guaranteed as updates are made. */ function subscriberAt(address registrant, uint256 index) external returns (address); /** * @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr. */ function copyEntriesOf(address registrant, address registrantToCopy) external; /** * @notice Returns true if operator is filtered by a given address or its subscription. */ function isOperatorFiltered(address registrant, address operator) external returns (bool); /** * @notice Returns true if the hash of an address's code is filtered by a given address or its subscription. */ function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); /** * @notice Returns true if a codeHash is filtered by a given address or its subscription. */ function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); /** * @notice Returns a list of filtered operators for a given address or its subscription. */ function filteredOperators(address addr) external returns (address[] memory); /** * @notice Returns the set of filtered codeHashes for a given address or its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashes(address addr) external returns (bytes32[] memory); /** * @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredOperatorAt(address registrant, uint256 index) external returns (address); /** * @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or * its subscription. * Note that order is not guaranteed as updates are made. */ function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); /** * @notice Returns true if an address has registered */ function isRegistered(address addr) external returns (bool); /** * @dev Convenience method to compute the code hash of an arbitrary contract */ function codeHashOf(address addr) external returns (bytes32); } // File: operator-filter-registry/src/OperatorFilterer.sol pragma solidity ^0.8.13; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. * Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract OperatorFilterer { /// @dev Emitted when an operator is not allowed. error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS); /// @dev The constructor that is called when the contract is being deployed. constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } /** * @dev A helper function to check if an operator is allowed. */ modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } /** * @dev A helper function to check if an operator approval is allowed. */ modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @dev A helper function to check if an operator is allowed. */ function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // under normal circumstances, this function will revert rather than return false, but inheriting contracts // may specify their own OperatorFilterRegistry implementations, which may behave differently if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } // File: operator-filter-registry/src/DefaultOperatorFilterer.sol pragma solidity ^0.8.13; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. * @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide * administration methods on the contract itself to interact with the registry otherwise the subscription * will be locked to the options set during construction. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { /// @dev The constructor that is called when the contract is being deployed. constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {} } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @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]; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/math/Math.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _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) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { 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] = _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); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @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)); } } // File: contracts/Meteorium.sol pragma solidity ^0.8.7; /** * @title Meteorium * @author 0x0 * * Meteorium is a special NFT from Meteoria NFT, it brings to its holders * special and exclusive features if burned (requires an authorization by sig). * Meteoriums can also be upgraded by locking them for a given time, * afterwhat they return to their owner in addition to a fresh new extracted * Meteorium with other special abilities. * * Note that: * - The max supply of meteoriums is set to 10k, it might be lower in the * future depending on the directions the project will take. For this we will * be able to cut down for security reasons, definitively fixing the max supply * - Creative meteoriums will only be obtained by minting 3 Meteoria NFT (main * collection) => max supply 2k decreasing with burns (aka uses). * - Others meteoriums will be unlocked and distributed in the near future, * only mintable by the mint authority. * */ contract Meteorium is ERC721A, ERC2981, DefaultOperatorFilterer, Ownable { using ECDSA for bytes32; error MaxSupplyReached(); error UnauthorizedBurn(); error MintDisabled(); error UnauthorizedMint(); uint256 private constant _MAX_SUPPLY = 10000; address public backAuthority; address public mintAuthority; // Freeze max supply in case it end up under 10k bool public mintDisabled; // Metadata data string public baseURI; event BackAuthorityUpdated(address authority); event MintAuthorityUpdated(address authority); event DisabledMint(); event BaseURIUpdated(string baseURI); event ConsumedToken(uint256 tokenId); constructor(address meteoria) payable ERC721A("Meteorium", "MTOM") { mintAuthority = meteoria; // Setting royalties to 5% _setDefaultRoyalty(meteoria, 500); } function updateMintAuthority(address authority) external onlyOwner { mintAuthority = authority; emit MintAuthorityUpdated(authority); } function updateBackAuthority(address authority) external onlyOwner { backAuthority = authority; emit BackAuthorityUpdated(authority); } function disableMint() external onlyOwner { mintDisabled = true; emit DisabledMint(); } function setBaseURI(string calldata uri) external onlyOwner { baseURI = uri; emit BaseURIUpdated(uri); } function setDefaultRoyalty( address _receiver, uint96 _feeNumerator ) external onlyOwner { _setDefaultRoyalty(_receiver, _feeNumerator); } function ownershipOf( uint256 tokenId ) external view returns (TokenOwnership memory) { return _ownershipOf(tokenId); } function supportsInterface( bytes4 interfaceId ) public view virtual override(ERC721A, ERC2981) returns (bool) { return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId); } function setApprovalForAll( address operator, bool approved ) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve( address operator, uint256 tokenId ) public payable override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public payable override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function tokenURI( uint256 _nftId ) public view override returns (string memory) { if (!_exists(_nftId)) revert URIQueryForNonexistentToken(); return string( abi.encodePacked( baseURI, _toString(_nftId), ".json" ) ); } function burn( uint256 tokenId, bytes calldata signature ) public virtual { if ( backAuthority != keccak256( abi.encodePacked(msg.sender, tokenId) ).toEthSignedMessageHash().recover(signature) ) revert UnauthorizedBurn(); _burn(tokenId, true); emit ConsumedToken(tokenId); } function mint(address to, uint256 amount) external payable { if (mintDisabled) revert MintDisabled(); if (msg.sender != mintAuthority) revert UnauthorizedMint(); if (_totalMinted() + amount > _MAX_SUPPLY) revert MaxSupplyReached(); _mint(to, amount); } function _startTokenId() internal pure override returns (uint256) { return 1; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"meteoria","type":"address"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintDisabled","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"UnauthorizedBurn","type":"error"},{"inputs":[],"name":"UnauthorizedMint","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"authority","type":"address"}],"name":"BackAuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ConsumedToken","type":"event"},{"anonymous":false,"inputs":[],"name":"DisabledMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"authority","type":"address"}],"name":"MintAuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"backAuthority","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintAuthority","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","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":"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":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"updateBackAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"authority","type":"address"}],"name":"updateMintAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405162002e0f38038062002e0f83398101604081905262000026916200037e565b733cc6cdda760b79bafa08df41ecfa224f810dceb66001604051806040016040528060098152602001684d6574656f7269756d60b81b815250604051806040016040528060048152602001634d544f4d60e01b81525081600290816200008d919062000455565b5060036200009c828262000455565b50600160005550506daaeb6d7670e522a718067333cd4e3b15620001e95780156200013757604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200011857600080fd5b505af11580156200012d573d6000803e3d6000fd5b50505050620001e9565b6001600160a01b03821615620001885760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000fd565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001cf57600080fd5b505af1158015620001e4573d6000803e3d6000fd5b505050505b50620001f790503362000227565b600c80546001600160a01b0319166001600160a01b03831617905562000220816101f462000279565b5062000521565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620002ed5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620003455760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620002e4565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6000602082840312156200039157600080fd5b81516001600160a01b0381168114620003a957600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620003db57607f821691505b602082108103620003fc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200045057600081815260208120601f850160051c810160208610156200042b5750805b601f850160051c820191505b818110156200044c5782815560010162000437565b5050505b505050565b81516001600160401b03811115620004715762000471620003b0565b6200048981620004828454620003c6565b8462000402565b602080601f831160018114620004c15760008415620004a85750858301515b600019600386901b1c1916600185901b1785556200044c565b600085815260208120601f198616915b82811015620004f257888601518255948401946001909101908401620004d1565b5085821015620005115787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6128de80620005316000396000f3fe6080604052600436106101d85760003560e01c80636352211e1161010257806395d89b4111610095578063e985e9c511610064578063e985e9c514610586578063ed2a5640146105cf578063f2fde38b146105ef578063fe9d93031461060f57600080fd5b806395d89b411461051e578063a22cb46514610533578063b88d4fde14610553578063c87b56dd1461056657600080fd5b80638da5cb5b116100d15780638da5cb5b1461048e57806391b7a37b146104ac5780639340b21e146104cc578063956feccf146104ec57600080fd5b80636352211e146104245780636c0360eb1461044457806370a0823114610459578063715018a61461047957600080fd5b806318160ddd1161017a57806340c10f191161014957806340c10f19146103bc57806341f43434146103cf57806342842e0e146103f157806355f804b31461040457600080fd5b806318160ddd1461032e57806323b872dd146103555780632a55205a1461036857806334452f38146103a757600080fd5b806306fdde03116101b657806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae578063140364a1146102c157600080fd5b80630130a33b146101dd57806301ffc9a7146101ff57806304634d8d14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612120565b61062f565b005b34801561020b57600080fd5b5061021f61021a366004612169565b6106a4565b60405190151581526020015b60405180910390f35b34801561024057600080fd5b506101fd61024f366004612186565b6106c4565b34801561026057600080fd5b506102696106da565b60405161022b919061221e565b34801561028257600080fd5b50610296610291366004612231565b61076c565b6040516001600160a01b03909116815260200161022b565b6101fd6102bc36600461224a565b6107c9565b3480156102cd57600080fd5b506102e16102dc366004612231565b6107e2565b60405161022b919081516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260609182015162ffffff169181019190915260800190565b34801561033a57600080fd5b5060015460005403600019015b60405190815260200161022b565b6101fd610363366004612274565b61080f565b34801561037457600080fd5b506103886103833660046122b0565b61083a565b604080516001600160a01b03909316835260208301919091520161022b565b3480156103b357600080fd5b506101fd610919565b6101fd6103ca36600461224a565b61098b565b3480156103db57600080fd5b506102966daaeb6d7670e522a718067333cd4e81565b6101fd6103ff366004612274565b610a81565b34801561041057600080fd5b506101fd61041f366004612314565b610aa6565b34801561043057600080fd5b5061029661043f366004612231565b610af9565b34801561045057600080fd5b50610269610b04565b34801561046557600080fd5b50610347610474366004612120565b610b92565b34801561048557600080fd5b506101fd610bfa565b34801561049a57600080fd5b50600a546001600160a01b0316610296565b3480156104b857600080fd5b506101fd6104c7366004612120565b610c0e565b3480156104d857600080fd5b50600c54610296906001600160a01b031681565b3480156104f857600080fd5b50600c5461021f9074010000000000000000000000000000000000000000900460ff1681565b34801561052a57600080fd5b50610269610c7c565b34801561053f57600080fd5b506101fd61054e366004612364565b610c8b565b6101fd6105613660046123bf565b610c9f565b34801561057257600080fd5b50610269610581366004612231565b610ccc565b34801561059257600080fd5b5061021f6105a136600461249b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105db57600080fd5b50600b54610296906001600160a01b031681565b3480156105fb57600080fd5b506101fd61060a366004612120565b610d3f565b34801561061b57600080fd5b506101fd61062a3660046124ce565b610dee565b610637610f5d565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527fed5211002d418c3740cdd64125378b666a05b449114a44ff49c4a80244b480af906020015b60405180910390a150565b60006106af82610fd1565b806106be57506106be826110b2565b92915050565b6106cc610f5d565b6106d68282611149565b5050565b6060600280546106e99061251a565b80601f01602080910402602001604051908101604052809291908181526020018280546107159061251a565b80156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b6000610777826112a8565b6107ad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816107d3816112f6565b6107dd83836113e1565b505050565b6040805160808101825260008082526020820181905291810182905260608101919091526106be826114cf565b826001600160a01b038116331461082957610829336112f6565b610834848484611560565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff169282019290925282916108db5750604080518082019091526008546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b6020810151600090612710906108ff906bffffffffffffffffffffffff168761259c565b61090991906125b3565b91519350909150505b9250929050565b610921610f5d565b600c80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040517f96786059fc12ef37dc62764d5fdd3131eeb87ad78f23b8476a8866eb7e6b57ce90600090a1565b600c5474010000000000000000000000000000000000000000900460ff16156109e0576040517f17efbd6b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c546001600160a01b03163314610a24576040517f2fe9018200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271081610a356000546000190190565b610a3f91906125ee565b1115610a77576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106d6828261179e565b826001600160a01b0381163314610a9b57610a9b336112f6565b6108348484846118cf565b610aae610f5d565b600d610abb828483612647565b507f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad8282604051610aed929190612707565b60405180910390a15050565b60006106be826118ea565b600d8054610b119061251a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3d9061251a565b8015610b8a5780601f10610b5f57610100808354040283529160200191610b8a565b820191906000526020600020905b815481529060010190602001808311610b6d57829003601f168201915b505050505081565b60006001600160a01b038216610bd4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c02610f5d565b610c0c6000611992565b565b610c16610f5d565b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527fb6395b570a08490a4946f6a15ea9c990386c715404498aa3c51e761f2c4b77fd90602001610699565b6060600380546106e99061251a565b81610c95816112f6565b6107dd83836119fc565b836001600160a01b0381163314610cb957610cb9336112f6565b610cc585858585611a86565b5050505050565b6060610cd7826112a8565b610d0d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d610d1883611ae3565b604051602001610d29929190612736565b6040516020818303038152906040529050919050565b610d47610f5d565b6001600160a01b038116610de2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610deb81611992565b50565b610ed382828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260348101889052610ecd92506054019050604051602081830303815290604052805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611b27565b600b546001600160a01b03908116911614610f1a576040517f5c241c2700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f25836001611b4b565b6040518381527fe3f89de156fecddcbcbcb74ede5af0108ddc90402524e6594b886a05428016ba9060200160405180910390a1505050565b600a546001600160a01b03163314610c0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd9565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061106457507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806106be5750507fffffffff00000000000000000000000000000000000000000000000000000000167f5b5e139f000000000000000000000000000000000000000000000000000000001490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806106be57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146106be565b6127106bffffffffffffffffffffffff821611156111e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610dd9565b6001600160a01b038216611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610dd9565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600855565b6000816001111580156112bc575060005482105b80156106be5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6daaeb6d7670e522a718067333cd4e3b15610deb576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561137c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a09190612803565b610deb576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610dd9565b60006113ec82610af9565b9050336001600160a01b0382161461145b576001600160a01b038116600090815260076020908152604080832033845290915290205460ff1661145b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6040805160808101825260008082526020820181905291810182905260608101919091526106be6114ff836118ea565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b600061156b826118ea565b9050836001600160a01b0316816001600160a01b0316146115b8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080546115e48187335b6001600160a01b039081169116811491141790565b611645576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16611645576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516611685576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b801561169057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260408120919091557c020000000000000000000000000000000000000000000000000000000084169003611754576001840160008181526004602052604081205490036117525760005481146117525760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008054908290036117dc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461188b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611853565b50816000036118c6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b6107dd83838360405180602001604052806000815250610c9f565b600081806001116119605760005481101561196057600081815260046020526040812054907c01000000000000000000000000000000000000000000000000000000008216900361195e575b80600003611957575060001901600081815260046020526040902054611936565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a9184848461080f565b6001600160a01b0383163b1561083457611aad84848484611cfd565b610834576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611afd5750819003601f19909101908152919050565b6000806000611b368585611e4b565b91509150611b4381611e8d565b509392505050565b6000611b56836118ea565b905080600080611b7486600090815260066020526040902080549091565b915091508415611bea57611b898184336115cf565b611bea576001600160a01b038316600090815260076020908152604080832033845290915290205460ff16611bea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015611bf557600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b177c0300000000000000000000000000000000000000000000000000000000176000878152600460205260408120919091557c020000000000000000000000000000000000000000000000000000000085169003611cb557600186016000818152600460205260408120549003611cb3576000548114611cb35760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611d4b903390899088908890600401612820565b6020604051808303816000875af1925050508015611d86575060408051601f3d908101601f19168201909252611d839181019061285c565b60015b611dfd573d808015611db4576040519150601f19603f3d011682016040523d82523d6000602084013e611db9565b606091505b508051600003611df5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b6000808251604103611e815760208301516040840151606085015160001a611e7587828585612040565b94509450505050610912565b50600090506002610912565b6000816004811115611ea157611ea1612879565b03611ea95750565b6001816004811115611ebd57611ebd612879565b03611f24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610dd9565b6002816004811115611f3857611f38612879565b03611f9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610dd9565b6003816004811115611fb357611fb3612879565b03610deb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610dd9565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561207757506000905060036120fb565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156120cb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166120f4576000600192509250506120fb565b9150600090505b94509492505050565b80356001600160a01b038116811461211b57600080fd5b919050565b60006020828403121561213257600080fd5b61195782612104565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610deb57600080fd5b60006020828403121561217b57600080fd5b81356119578161213b565b6000806040838503121561219957600080fd5b6121a283612104565b915060208301356bffffffffffffffffffffffff811681146121c357600080fd5b809150509250929050565b60005b838110156121e95781810151838201526020016121d1565b50506000910152565b6000815180845261220a8160208601602086016121ce565b601f01601f19169290920160200192915050565b60208152600061195760208301846121f2565b60006020828403121561224357600080fd5b5035919050565b6000806040838503121561225d57600080fd5b61226683612104565b946020939093013593505050565b60008060006060848603121561228957600080fd5b61229284612104565b92506122a060208501612104565b9150604084013590509250925092565b600080604083850312156122c357600080fd5b50508035926020909101359150565b60008083601f8401126122e457600080fd5b50813567ffffffffffffffff8111156122fc57600080fd5b60208301915083602082850101111561091257600080fd5b6000806020838503121561232757600080fd5b823567ffffffffffffffff81111561233e57600080fd5b61234a858286016122d2565b90969095509350505050565b8015158114610deb57600080fd5b6000806040838503121561237757600080fd5b61238083612104565b915060208301356121c381612356565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080608085870312156123d557600080fd5b6123de85612104565b93506123ec60208601612104565b925060408501359150606085013567ffffffffffffffff8082111561241057600080fd5b818701915087601f83011261242457600080fd5b81358181111561243657612436612390565b604051601f8201601f19908116603f0116810190838211818310171561245e5761245e612390565b816040528281528a602084870101111561247757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156124ae57600080fd5b6124b783612104565b91506124c560208401612104565b90509250929050565b6000806000604084860312156124e357600080fd5b83359250602084013567ffffffffffffffff81111561250157600080fd5b61250d868287016122d2565b9497909650939450505050565b600181811c9082168061252e57607f821691505b602082108103612567577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820281158282048414176106be576106be61256d565b6000826125e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b808201808211156106be576106be61256d565b601f8211156107dd57600081815260208120601f850160051c810160208610156126285750805b601f850160051c820191505b8181101561179657828155600101612634565b67ffffffffffffffff83111561265f5761265f612390565b6126738361266d835461251a565b83612601565b6000601f8411600181146126a7576000851561268f5750838201355b600019600387901b1c1916600186901b178355610cc5565b600083815260209020601f19861690835b828110156126d857868501358255602094850194600190920191016126b8565b50868210156126f55760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60008084546127448161251a565b6001828116801561275c576001811461278f576127be565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528215158302870194506127be565b8860005260208060002060005b858110156127b55781548a82015290840190820161279c565b50505082870194505b5050505083516127d28183602088016121ce565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006020828403121561281557600080fd5b815161195781612356565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261285260808301846121f2565b9695505050505050565b60006020828403121561286e57600080fd5b81516119578161213b565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea26469706673582212208a9aa2c6d8aafeed26eefca29dff82863f8cf8198075f1926f126f7eecc5061064736f6c6343000812003300000000000000000000000092a3181e6ea7f32cca2ceeca049a5544a2cb3e88
Deployed Bytecode
0x6080604052600436106101d85760003560e01c80636352211e1161010257806395d89b4111610095578063e985e9c511610064578063e985e9c514610586578063ed2a5640146105cf578063f2fde38b146105ef578063fe9d93031461060f57600080fd5b806395d89b411461051e578063a22cb46514610533578063b88d4fde14610553578063c87b56dd1461056657600080fd5b80638da5cb5b116100d15780638da5cb5b1461048e57806391b7a37b146104ac5780639340b21e146104cc578063956feccf146104ec57600080fd5b80636352211e146104245780636c0360eb1461044457806370a0823114610459578063715018a61461047957600080fd5b806318160ddd1161017a57806340c10f191161014957806340c10f19146103bc57806341f43434146103cf57806342842e0e146103f157806355f804b31461040457600080fd5b806318160ddd1461032e57806323b872dd146103555780632a55205a1461036857806334452f38146103a757600080fd5b806306fdde03116101b657806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae578063140364a1146102c157600080fd5b80630130a33b146101dd57806301ffc9a7146101ff57806304634d8d14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612120565b61062f565b005b34801561020b57600080fd5b5061021f61021a366004612169565b6106a4565b60405190151581526020015b60405180910390f35b34801561024057600080fd5b506101fd61024f366004612186565b6106c4565b34801561026057600080fd5b506102696106da565b60405161022b919061221e565b34801561028257600080fd5b50610296610291366004612231565b61076c565b6040516001600160a01b03909116815260200161022b565b6101fd6102bc36600461224a565b6107c9565b3480156102cd57600080fd5b506102e16102dc366004612231565b6107e2565b60405161022b919081516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260609182015162ffffff169181019190915260800190565b34801561033a57600080fd5b5060015460005403600019015b60405190815260200161022b565b6101fd610363366004612274565b61080f565b34801561037457600080fd5b506103886103833660046122b0565b61083a565b604080516001600160a01b03909316835260208301919091520161022b565b3480156103b357600080fd5b506101fd610919565b6101fd6103ca36600461224a565b61098b565b3480156103db57600080fd5b506102966daaeb6d7670e522a718067333cd4e81565b6101fd6103ff366004612274565b610a81565b34801561041057600080fd5b506101fd61041f366004612314565b610aa6565b34801561043057600080fd5b5061029661043f366004612231565b610af9565b34801561045057600080fd5b50610269610b04565b34801561046557600080fd5b50610347610474366004612120565b610b92565b34801561048557600080fd5b506101fd610bfa565b34801561049a57600080fd5b50600a546001600160a01b0316610296565b3480156104b857600080fd5b506101fd6104c7366004612120565b610c0e565b3480156104d857600080fd5b50600c54610296906001600160a01b031681565b3480156104f857600080fd5b50600c5461021f9074010000000000000000000000000000000000000000900460ff1681565b34801561052a57600080fd5b50610269610c7c565b34801561053f57600080fd5b506101fd61054e366004612364565b610c8b565b6101fd6105613660046123bf565b610c9f565b34801561057257600080fd5b50610269610581366004612231565b610ccc565b34801561059257600080fd5b5061021f6105a136600461249b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105db57600080fd5b50600b54610296906001600160a01b031681565b3480156105fb57600080fd5b506101fd61060a366004612120565b610d3f565b34801561061b57600080fd5b506101fd61062a3660046124ce565b610dee565b610637610f5d565b600c80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527fed5211002d418c3740cdd64125378b666a05b449114a44ff49c4a80244b480af906020015b60405180910390a150565b60006106af82610fd1565b806106be57506106be826110b2565b92915050565b6106cc610f5d565b6106d68282611149565b5050565b6060600280546106e99061251a565b80601f01602080910402602001604051908101604052809291908181526020018280546107159061251a565b80156107625780601f1061073757610100808354040283529160200191610762565b820191906000526020600020905b81548152906001019060200180831161074557829003601f168201915b5050505050905090565b6000610777826112a8565b6107ad576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816107d3816112f6565b6107dd83836113e1565b505050565b6040805160808101825260008082526020820181905291810182905260608101919091526106be826114cf565b826001600160a01b038116331461082957610829336112f6565b610834848484611560565b50505050565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff169282019290925282916108db5750604080518082019091526008546001600160a01b03811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b6020810151600090612710906108ff906bffffffffffffffffffffffff168761259c565b61090991906125b3565b91519350909150505b9250929050565b610921610f5d565b600c80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556040517f96786059fc12ef37dc62764d5fdd3131eeb87ad78f23b8476a8866eb7e6b57ce90600090a1565b600c5474010000000000000000000000000000000000000000900460ff16156109e0576040517f17efbd6b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c546001600160a01b03163314610a24576040517f2fe9018200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61271081610a356000546000190190565b610a3f91906125ee565b1115610a77576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6106d6828261179e565b826001600160a01b0381163314610a9b57610a9b336112f6565b6108348484846118cf565b610aae610f5d565b600d610abb828483612647565b507f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad8282604051610aed929190612707565b60405180910390a15050565b60006106be826118ea565b600d8054610b119061251a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3d9061251a565b8015610b8a5780601f10610b5f57610100808354040283529160200191610b8a565b820191906000526020600020905b815481529060010190602001808311610b6d57829003601f168201915b505050505081565b60006001600160a01b038216610bd4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610c02610f5d565b610c0c6000611992565b565b610c16610f5d565b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040519081527fb6395b570a08490a4946f6a15ea9c990386c715404498aa3c51e761f2c4b77fd90602001610699565b6060600380546106e99061251a565b81610c95816112f6565b6107dd83836119fc565b836001600160a01b0381163314610cb957610cb9336112f6565b610cc585858585611a86565b5050505050565b6060610cd7826112a8565b610d0d576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d610d1883611ae3565b604051602001610d29929190612736565b6040516020818303038152906040529050919050565b610d47610f5d565b6001600160a01b038116610de2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610deb81611992565b50565b610ed382828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b16602082015260348101889052610ecd92506054019050604051602081830303815290604052805190602001206040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b90611b27565b600b546001600160a01b03908116911614610f1a576040517f5c241c2700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f25836001611b4b565b6040518381527fe3f89de156fecddcbcbcb74ede5af0108ddc90402524e6594b886a05428016ba9060200160405180910390a1505050565b600a546001600160a01b03163314610c0c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610dd9565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061106457507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806106be5750507fffffffff00000000000000000000000000000000000000000000000000000000167f5b5e139f000000000000000000000000000000000000000000000000000000001490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806106be57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146106be565b6127106bffffffffffffffffffffffff821611156111e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c655072696365000000000000000000000000000000000000000000006064820152608401610dd9565b6001600160a01b038216611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610dd9565b604080518082019091526001600160a01b039092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600855565b6000816001111580156112bc575060005482105b80156106be5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6daaeb6d7670e522a718067333cd4e3b15610deb576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561137c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a09190612803565b610deb576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610dd9565b60006113ec82610af9565b9050336001600160a01b0382161461145b576001600160a01b038116600090815260076020908152604080832033845290915290205460ff1661145b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6040805160808101825260008082526020820181905291810182905260608101919091526106be6114ff836118ea565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c0100000000000000000000000000000000000000000000000000000000831615159181019190915260e89190911c606082015290565b600061156b826118ea565b9050836001600160a01b0316816001600160a01b0316146115b8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080546115e48187335b6001600160a01b039081169116811491141790565b611645576001600160a01b038616600090815260076020908152604080832033845290915290205460ff16611645576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516611685576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b801561169057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260408120919091557c020000000000000000000000000000000000000000000000000000000084169003611754576001840160008181526004602052604081205490036117525760005481146117525760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60008054908290036117dc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461188b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611853565b50816000036118c6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b6107dd83838360405180602001604052806000815250610c9f565b600081806001116119605760005481101561196057600081815260046020526040812054907c01000000000000000000000000000000000000000000000000000000008216900361195e575b80600003611957575060001901600081815260046020526040902054611936565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611a9184848461080f565b6001600160a01b0383163b1561083457611aad84848484611cfd565b610834576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480611afd5750819003601f19909101908152919050565b6000806000611b368585611e4b565b91509150611b4381611e8d565b509392505050565b6000611b56836118ea565b905080600080611b7486600090815260066020526040902080549091565b915091508415611bea57611b898184336115cf565b611bea576001600160a01b038316600090815260076020908152604080832033845290915290205460ff16611bea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015611bf557600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b177c0300000000000000000000000000000000000000000000000000000000176000878152600460205260408120919091557c020000000000000000000000000000000000000000000000000000000085169003611cb557600186016000818152600460205260408120549003611cb3576000548114611cb35760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611d4b903390899088908890600401612820565b6020604051808303816000875af1925050508015611d86575060408051601f3d908101601f19168201909252611d839181019061285c565b60015b611dfd573d808015611db4576040519150601f19603f3d011682016040523d82523d6000602084013e611db9565b606091505b508051600003611df5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050949350505050565b6000808251604103611e815760208301516040840151606085015160001a611e7587828585612040565b94509450505050610912565b50600090506002610912565b6000816004811115611ea157611ea1612879565b03611ea95750565b6001816004811115611ebd57611ebd612879565b03611f24576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610dd9565b6002816004811115611f3857611f38612879565b03611f9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610dd9565b6003816004811115611fb357611fb3612879565b03610deb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610dd9565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561207757506000905060036120fb565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156120cb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166120f4576000600192509250506120fb565b9150600090505b94509492505050565b80356001600160a01b038116811461211b57600080fd5b919050565b60006020828403121561213257600080fd5b61195782612104565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610deb57600080fd5b60006020828403121561217b57600080fd5b81356119578161213b565b6000806040838503121561219957600080fd5b6121a283612104565b915060208301356bffffffffffffffffffffffff811681146121c357600080fd5b809150509250929050565b60005b838110156121e95781810151838201526020016121d1565b50506000910152565b6000815180845261220a8160208601602086016121ce565b601f01601f19169290920160200192915050565b60208152600061195760208301846121f2565b60006020828403121561224357600080fd5b5035919050565b6000806040838503121561225d57600080fd5b61226683612104565b946020939093013593505050565b60008060006060848603121561228957600080fd5b61229284612104565b92506122a060208501612104565b9150604084013590509250925092565b600080604083850312156122c357600080fd5b50508035926020909101359150565b60008083601f8401126122e457600080fd5b50813567ffffffffffffffff8111156122fc57600080fd5b60208301915083602082850101111561091257600080fd5b6000806020838503121561232757600080fd5b823567ffffffffffffffff81111561233e57600080fd5b61234a858286016122d2565b90969095509350505050565b8015158114610deb57600080fd5b6000806040838503121561237757600080fd5b61238083612104565b915060208301356121c381612356565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080608085870312156123d557600080fd5b6123de85612104565b93506123ec60208601612104565b925060408501359150606085013567ffffffffffffffff8082111561241057600080fd5b818701915087601f83011261242457600080fd5b81358181111561243657612436612390565b604051601f8201601f19908116603f0116810190838211818310171561245e5761245e612390565b816040528281528a602084870101111561247757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156124ae57600080fd5b6124b783612104565b91506124c560208401612104565b90509250929050565b6000806000604084860312156124e357600080fd5b83359250602084013567ffffffffffffffff81111561250157600080fd5b61250d868287016122d2565b9497909650939450505050565b600181811c9082168061252e57607f821691505b602082108103612567577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820281158282048414176106be576106be61256d565b6000826125e9577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b808201808211156106be576106be61256d565b601f8211156107dd57600081815260208120601f850160051c810160208610156126285750805b601f850160051c820191505b8181101561179657828155600101612634565b67ffffffffffffffff83111561265f5761265f612390565b6126738361266d835461251a565b83612601565b6000601f8411600181146126a7576000851561268f5750838201355b600019600387901b1c1916600186901b178355610cc5565b600083815260209020601f19861690835b828110156126d857868501358255602094850194600190920191016126b8565b50868210156126f55760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60008084546127448161251a565b6001828116801561275c576001811461278f576127be565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00841687528215158302870194506127be565b8860005260208060002060005b858110156127b55781548a82015290840190820161279c565b50505082870194505b5050505083516127d28183602088016121ce565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006020828403121561281557600080fd5b815161195781612356565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261285260808301846121f2565b9695505050505050565b60006020828403121561286e57600080fd5b81516119578161213b565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea26469706673582212208a9aa2c6d8aafeed26eefca29dff82863f8cf8198075f1926f126f7eecc5061064736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000092a3181e6ea7f32cca2ceeca049a5544a2cb3e88
-----Decoded View---------------
Arg [0] : meteoria (address): 0x92a3181E6eA7f32CCA2cEecA049A5544A2Cb3e88
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000092a3181e6ea7f32cca2ceeca049a5544a2cb3e88
Deployed Bytecode Sourcemap
98103:4337:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99018:160;;;;;;;;;;-1:-1:-1;99018:160:0;;;;;:::i;:::-;;:::i;:::-;;99947:244;;;;;;;;;;-1:-1:-1;99947:244:0;;;;;:::i;:::-;;:::i;:::-;;;1003:14:1;;996:22;978:41;;966:2;951:18;99947:244:0;;;;;;;;99611:173;;;;;;;;;;-1:-1:-1;99611:173:0;;;;;:::i;:::-;;:::i;19339:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25830:218::-;;;;;;;;;;-1:-1:-1;25830:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2565:55:1;;;2547:74;;2535:2;2520:18;25830:218:0;2401:226:1;100408:190:0;;;;;;:::i;:::-;;:::i;99792:147::-;;;;;;;;;;-1:-1:-1;99792:147:0;;;;;:::i;:::-;;:::i;:::-;;;;;;3120:13:1;;-1:-1:-1;;;;;3116:62:1;3098:81;;3239:4;3227:17;;;3221:24;3247:18;3217:49;3195:20;;;3188:79;3337:4;3325:17;;;3319:24;3312:32;3305:40;3283:20;;;3276:70;3406:4;3394:17;;;3388:24;3414:8;3384:39;3362:20;;;3355:69;;;;3085:3;3070:19;;2891:539;15090:323:0;;;;;;;;;;-1:-1:-1;102426:1:0;15364:12;15151:7;15348:13;:28;-1:-1:-1;;15348:46:0;15090:323;;;3581:25:1;;;3569:2;3554:18;15090:323:0;3435:177:1;100606:205:0;;;;;;:::i;:::-;;:::i;67056:442::-;;;;;;;;;;-1:-1:-1;67056:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4395:55:1;;;4377:74;;4482:2;4467:18;;4460:34;;;;4350:18;67056:442:0;4203:297:1;99354:112:0;;;;;;;;;;;;;:::i;102039:295::-;;;;;;:::i;:::-;;:::i;59203:143::-;;;;;;;;;;;;51619:42;59203:143;;100819:213;;;;;;:::i;:::-;;:::i;99474:129::-;;;;;;;;;;-1:-1:-1;99474:129:0;;;;;:::i;:::-;;:::i;20732:152::-;;;;;;;;;;-1:-1:-1;20732:152:0;;;;;:::i;:::-;;:::i;98569:21::-;;;;;;;;;;;;;:::i;16274:233::-;;;;;;;;;;-1:-1:-1;16274:233:0;;;;;:::i;:::-;;:::i;72329:103::-;;;;;;;;;;;;;:::i;71681:87::-;;;;;;;;;;-1:-1:-1;71754:6:0;;-1:-1:-1;;;;;71754:6:0;71681:87;;99186:160;;;;;;;;;;-1:-1:-1;99186:160:0;;;;;:::i;:::-;;:::i;98425:28::-;;;;;;;;;;-1:-1:-1;98425:28:0;;;;-1:-1:-1;;;;;98425:28:0;;;98514:24;;;;;;;;;;-1:-1:-1;98514:24:0;;;;;;;;;;;19515:104;;;;;;;;;;;;;:::i;100199:201::-;;;;;;;;;;-1:-1:-1;100199:201:0;;;;;:::i;:::-;;:::i;101040:247::-;;;;;;:::i;:::-;;:::i;101295:343::-;;;;;;;;;;-1:-1:-1;101295:343:0;;;;;:::i;:::-;;:::i;26779:164::-;;;;;;;;;;-1:-1:-1;26779:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26900:25:0;;;26876:4;26900:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26779:164;98390:28;;;;;;;;;;-1:-1:-1;98390:28:0;;;;-1:-1:-1;;;;;98390:28:0;;;72587:201;;;;;;;;;;-1:-1:-1;72587:201:0;;;;;:::i;:::-;;:::i;101646:385::-;;;;;;;;;;-1:-1:-1;101646:385:0;;;;;:::i;:::-;;:::i;99018:160::-;71567:13;:11;:13::i;:::-;99096::::1;:25:::0;;;::::1;-1:-1:-1::0;;;;;99096:25:0;::::1;::::0;;::::1;::::0;;;99139:31:::1;::::0;2547:74:1;;;99139:31:0::1;::::0;2535:2:1;2520:18;99139:31:0::1;;;;;;;;99018:160:::0;:::o;99947:244::-;100066:4;100090:38;100116:11;100090:25;:38::i;:::-;:93;;;;100145:38;100171:11;100145:25;:38::i;:::-;100083:100;99947:244;-1:-1:-1;;99947:244:0:o;99611:173::-;71567:13;:11;:13::i;:::-;99732:44:::1;99751:9;99762:13;99732:18;:44::i;:::-;99611:173:::0;;:::o;19339:100::-;19393:13;19426:5;19419:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19339:100;:::o;25830:218::-;25906:7;25931:16;25939:7;25931;:16::i;:::-;25926:64;;25956:34;;;;;;;;;;;;;;25926:64;-1:-1:-1;26010:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26010:30:0;;25830:218::o;100408:190::-;100537:8;60985:30;61006:8;60985:20;:30::i;:::-;100558:32:::1;100572:8;100582:7;100558:13;:32::i;:::-;100408:190:::0;;;:::o;99792:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;99910:21:0;99923:7;99910:12;:21::i;100606:205::-;100749:4;-1:-1:-1;;;;;60711:18:0;;60719:10;60711:18;60707:83;;60746:32;60767:10;60746:20;:32::i;:::-;100766:37:::1;100785:4;100791:2;100795:7;100766:18;:37::i;:::-;100606:205:::0;;;;:::o;67056:442::-;67153:7;67211:27;;;:17;:27;;;;;;;;67182:56;;;;;;;;;-1:-1:-1;;;;;67182:56:0;;;;;;;;;;;;;;;;;;67153:7;;67251:92;;-1:-1:-1;67302:29:0;;;;;;;;;67312:19;67302:29;-1:-1:-1;;;;;67302:29:0;;;;;;;;;;;;;67251:92;67393:23;;;;67355:21;;67864:5;;67380:36;;67379:58;67380:36;:10;:36;:::i;:::-;67379:58;;;;:::i;:::-;67458:16;;;-1:-1:-1;67355:82:0;;-1:-1:-1;;67056:442:0;;;;;;:::o;99354:112::-;71567:13;:11;:13::i;:::-;99407:12:::1;:19:::0;;;::::1;::::0;::::1;::::0;;99444:14:::1;::::0;::::1;::::0;99407:19;;99444:14:::1;99354:112::o:0;102039:295::-;102113:12;;;;;;;102109:39;;;102134:14;;;;;;;;;;;;;;102109:39;102177:13;;-1:-1:-1;;;;;102177:13:0;102163:10;:27;102159:58;;102199:18;;;;;;;;;;;;;;102159:58;98376:5;102249:6;102232:14;15566:7;15757:13;-1:-1:-1;;15757:31:0;;15511:296;102232:14;:23;;;;:::i;:::-;:37;102228:68;;;102278:18;;;;;;;;;;;;;;102228:68;102309:17;102315:2;102319:6;102309:5;:17::i;100819:213::-;100966:4;-1:-1:-1;;;;;60711:18:0;;60719:10;60711:18;60707:83;;60746:32;60767:10;60746:20;:32::i;:::-;100983:41:::1;101006:4;101012:2;101016:7;100983:22;:41::i;99474:129::-:0;71567:13;:11;:13::i;:::-;99545:7:::1;:13;99555:3:::0;;99545:7;:13:::1;:::i;:::-;;99576:19;99591:3;;99576:19;;;;;;;:::i;:::-;;;;;;;;99474:129:::0;;:::o;20732:152::-;20804:7;20847:27;20866:7;20847:18;:27::i;98569:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16274:233::-;16346:7;-1:-1:-1;;;;;16370:19:0;;16366:60;;16398:28;;;;;;;;;;;;;;16366:60;-1:-1:-1;;;;;;16444:25:0;;;;;:18;:25;;;;;;10433:13;16444:55;;16274:233::o;72329:103::-;71567:13;:11;:13::i;:::-;72394:30:::1;72421:1;72394:18;:30::i;:::-;72329:103::o:0;99186:160::-;71567:13;:11;:13::i;:::-;99264::::1;:25:::0;;;::::1;-1:-1:-1::0;;;;;99264:25:0;::::1;::::0;;::::1;::::0;;;99307:31:::1;::::0;2547:74:1;;;99307:31:0::1;::::0;2535:2:1;2520:18;99307:31:0::1;2401:226:1::0;19515:104:0;19571:13;19604:7;19597:14;;;;;:::i;100199:201::-;100328:8;60985:30;61006:8;60985:20;:30::i;:::-;100349:43:::1;100373:8;100383;100349:23;:43::i;101040:247::-:0;101215:4;-1:-1:-1;;;;;60711:18:0;;60719:10;60711:18;60707:83;;60746:32;60767:10;60746:20;:32::i;:::-;101232:47:::1;101255:4;101261:2;101265:7;101274:4;101232:22;:47::i;:::-;101040:247:::0;;;;;:::o;101295:343::-;101375:13;101406:15;101414:6;101406:7;:15::i;:::-;101401:58;;101430:29;;;;;;;;;;;;;;101401:58;101535:7;101561:17;101571:6;101561:9;:17::i;:::-;101500:119;;;;;;;;;:::i;:::-;;;;;;;;;;;;;101472:158;;101295:343;;;:::o;72587:201::-;71567:13;:11;:13::i;:::-;-1:-1:-1;;;;;72676:22:0;::::1;72668:73;;;::::0;::::1;::::0;;13475:2:1;72668:73:0::1;::::0;::::1;13457:21:1::0;13514:2;13494:18;;;13487:30;13553:34;13533:18;;;13526:62;13624:8;13604:18;;;13597:36;13650:19;;72668:73:0::1;;;;;;;;;72752:28;72771:8;72752:18;:28::i;:::-;72587:201:::0;:::o;101646:385::-;101789:124;101903:9;;101789:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;101817:37:0;;13870:66:1;101834:10:0;13857:2:1;13853:15;13849:88;101817:37:0;;;13837:101:1;13954:12;;;13947:28;;;101789:105:0;;-1:-1:-1;13991:12:1;;;-1:-1:-1;101817:37:0;;;;;;;;;;;;101789:80;;;;;;95993:58;;15964:66:1;95993:58:0;;;15952:79:1;16047:12;;;16040:28;;;95860:7:0;;16084:12:1;;95993:58:0;;;;;;;;;;;;95983:69;;;;;;95976:76;;95791:269;;;;101789:105;:113;;:124::i;:::-;101772:13;;-1:-1:-1;;;;;101772:13:0;;;:141;;;101754:196;;101932:18;;;;;;;;;;;;;;101754:196;101963:20;101969:7;101978:4;101963:5;:20::i;:::-;102001:22;;3581:25:1;;;102001:22:0;;3569:2:1;3554:18;102001:22:0;;;;;;;101646:385;;;:::o;71846:132::-;71754:6;;-1:-1:-1;;;;;71754:6:0;70312:10;71910:23;71902:68;;;;;;;14216:2:1;71902:68:0;;;14198:21:1;;;14235:18;;;14228:30;14294:34;14274:18;;;14267:62;14346:18;;71902:68:0;14014:356:1;18437:639:0;18522:4;18846:25;;;;;;:102;;-1:-1:-1;18923:25:0;;;;;18846:102;:179;;;-1:-1:-1;;19000:25:0;;;;;18437:639::o;66786:215::-;66888:4;66912:41;;;66927:26;66912:41;;:81;;-1:-1:-1;64462:25:0;64447:40;;;;66957:36;64338:157;68148:332;67864:5;68251:33;;;;;68243:88;;;;;;;14577:2:1;68243:88:0;;;14559:21:1;14616:2;14596:18;;;14589:30;14655:34;14635:18;;;14628:62;14726:12;14706:18;;;14699:40;14756:19;;68243:88:0;14375:406:1;68243:88:0;-1:-1:-1;;;;;68350:22:0;;68342:60;;;;;;;14988:2:1;68342:60:0;;;14970:21:1;15027:2;15007:18;;;15000:30;15066:27;15046:18;;;15039:55;15111:18;;68342:60:0;14786:349:1;68342:60:0;68437:35;;;;;;;;;-1:-1:-1;;;;;68437:35:0;;;;;;;;;;;;;;;;;68415:57;;;;;:19;:57;68148:332::o;27201:282::-;27266:4;27322:7;102426:1;27303:26;;:66;;;;;27356:13;;27346:7;:23;27303:66;:153;;;;-1:-1:-1;;27407:26:0;;;;:17;:26;;;;;;11209:8;27407:44;:49;;27201:282::o;61128:647::-;51619:42;61319:45;:49;61315:453;;61618:67;;;;;61669:4;61618:67;;;15375:34:1;-1:-1:-1;;;;;15445:15:1;;15425:18;;;15418:43;51619:42:0;;61618;;15287:18:1;;61618:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;61613:144;;61713:28;;;;;-1:-1:-1;;;;;2565:55:1;;61713:28:0;;;2547:74:1;2520:18;;61713:28:0;2401:226:1;25263:408:0;25352:13;25368:16;25376:7;25368;:16::i;:::-;25352:32;-1:-1:-1;70312:10:0;-1:-1:-1;;;;;25401:28:0;;;25397:175;;-1:-1:-1;;;;;26900:25:0;;26876:4;26900:25;;;:18;:25;;;;;;;;70312:10;26900:35;;;;;;;;;;25444:128;;25521:35;;;;;;;;;;;;;;25444:128;25584:24;;;;:15;:24;;;;;;:35;;;;-1:-1:-1;;;;;25584:35:0;;;;;;;;;25635:28;;25584:24;;25635:28;;;;;;;25341:330;25263:408;;:::o;21073:166::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21184:47:0;21203:27;21222:7;21203:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;23371:41:0;;;;11092:3;23457:33;;;23423:68;;-1:-1:-1;;;23423:68:0;11209:8;23521:24;;:29;;-1:-1:-1;;;23502:48:0;;;;11613:3;23590:28;;;;-1:-1:-1;;;23561:58:0;-1:-1:-1;23261:366:0;29469:2825;29611:27;29641;29660:7;29641:18;:27::i;:::-;29611:57;;29726:4;-1:-1:-1;;;;;29685:45:0;29701:19;-1:-1:-1;;;;;29685:45:0;;29681:86;;29739:28;;;;;;;;;;;;;;29681:86;29781:27;28577:24;;;:15;:24;;;;;28805:26;;29972:68;28805:26;30014:4;70312:10;30020:19;-1:-1:-1;;;;;28051:32:0;;;27895:28;;28180:20;;28202:30;;28177:56;;27592:659;29972:68;29967:180;;-1:-1:-1;;;;;26900:25:0;;26876:4;26900:25;;;:18;:25;;;;;;;;70312:10;26900:35;;;;;;;;;;30055:92;;30112:35;;;;;;;;;;;;;;30055:92;-1:-1:-1;;;;;30164:16:0;;30160:52;;30189:23;;;;;;;;;;;;;;30160:52;30361:15;30358:160;;;30501:1;30480:19;30473:30;30358:160;-1:-1:-1;;;;;30898:24:0;;;;;;;:18;:24;;;;;;30896:26;;-1:-1:-1;;30896:26:0;;;30967:22;;;;;;;;;30965:24;;-1:-1:-1;30965:24:0;;;24121:11;24096:23;24092:41;24079:63;11489:8;24079:63;31260:26;;;;:17;:26;;;;;:175;;;;11489:8;31555:47;;:52;;31551:627;;31660:1;31650:11;;31628:19;31783:30;;;:17;:30;;;;;;:35;;31779:384;;31921:13;;31906:11;:28;31902:242;;32068:30;;;;:17;:30;;;;;:52;;;31902:242;31609:569;31551:627;32225:7;32221:2;-1:-1:-1;;;;;32206:27:0;32215:4;-1:-1:-1;;;;;32206:27:0;;;;;;;;;;;32244:42;29600:2694;;;29469:2825;;;:::o;36850:2966::-;36923:20;36946:13;;;36974;;;36970:44;;36996:18;;;;;;;;;;;;;;36970:44;-1:-1:-1;;;;;37502:22:0;;;;;;:18;:22;;;;10571:2;37502:22;;;:71;;37540:32;37528:45;;37502:71;;;37816:31;;;:17;:31;;;;;-1:-1:-1;24552:15:0;;24526:24;24522:46;24121:11;24096:23;24092:41;24089:52;24079:63;;37816:173;;38051:23;;;;37816:31;;37502:22;;38816:25;37502:22;;38669:335;39330:1;39316:12;39312:20;39270:346;39371:3;39362:7;39359:16;39270:346;;39589:7;39579:8;39576:1;39549:25;39546:1;39543;39538:59;39424:1;39411:15;39270:346;;;39274:77;39649:8;39661:1;39649:13;39645:45;;39671:19;;;;;;;;;;;;;;39645:45;39707:13;:19;-1:-1:-1;100408:190:0;;;:::o;32390:193::-;32536:39;32553:4;32559:2;32563:7;32536:39;;;;;;;;;;;;:16;:39::i;21887:1275::-;21954:7;21989;;102426:1;22038:23;22034:1061;;22091:13;;22084:4;:20;22080:1015;;;22129:14;22146:23;;;:17;:23;;;;;;;11209:8;22235:24;;:29;;22231:845;;22900:113;22907:6;22917:1;22907:11;22900:113;;-1:-1:-1;;;22978:6:0;22960:25;;;;:17;:25;;;;;;22900:113;;;23046:6;21887:1275;-1:-1:-1;;;21887:1275:0:o;22231:845::-;22106:989;22080:1015;23123:31;;;;;;;;;;;;;;72948:191;73041:6;;;-1:-1:-1;;;;;73058:17:0;;;;;;;;;;;73091:40;;73041:6;;;73058:17;73041:6;;73091:40;;73022:16;;73091:40;73011:128;72948:191;:::o;26388:234::-;70312:10;26483:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26483:49:0;;;;;;;;;;;;:60;;;;;;;;;;;;;26559:55;;978:41:1;;;26483:49:0;;70312:10;26559:55;;951:18:1;26559:55:0;;;;;;;26388:234;;:::o;33181:407::-;33356:31;33369:4;33375:2;33379:7;33356:12;:31::i;:::-;-1:-1:-1;;;;;33402:14:0;;;:19;33398:183;;33441:56;33472:4;33478:2;33482:7;33491:5;33441:30;:56::i;:::-;33436:145;;33525:40;;;;;;;;;;;;;;49716:1745;49781:17;50215:4;50208;50202:11;50198:22;50307:1;50301:4;50294:15;50382:4;50379:1;50375:12;50368:19;;;50464:1;50459:3;50452:14;50568:3;50807:5;50789:428;50855:1;50850:3;50846:11;50839:18;;51026:2;51020:4;51016:13;51012:2;51008:22;51003:3;50995:36;51120:2;51110:13;;51177:25;50789:428;51177:25;-1:-1:-1;51247:13:0;;;-1:-1:-1;;51362:14:0;;;51424:19;;;51362:14;49716:1745;-1:-1:-1;49716:1745:0:o;92101:231::-;92179:7;92200:17;92219:18;92241:27;92252:4;92258:9;92241:10;:27::i;:::-;92199:69;;;;92279:18;92291:5;92279:11;:18::i;:::-;-1:-1:-1;92315:9:0;92101:231;-1:-1:-1;;;92101:231:0:o;44038:3081::-;44118:27;44148;44167:7;44148:18;:27::i;:::-;44118:57;-1:-1:-1;44118:57:0;44188:12;;44310:35;44337:7;28466:27;28577:24;;;:15;:24;;;;;28805:26;;28577:24;;28364:485;44310:35;44253:92;;;;44362:13;44358:316;;;44483:68;44508:15;44525:4;70312:10;44531:19;70232:98;44483:68;44478:184;;-1:-1:-1;;;;;26900:25:0;;26876:4;26900:25;;;:18;:25;;;;;;;;70312:10;26900:35;;;;;;;;;;44570:92;;44627:35;;;;;;;;;;;;;;44570:92;44830:15;44827:160;;;44970:1;44949:19;44942:30;44827:160;-1:-1:-1;;;;;45589:24:0;;;;;;:18;:24;;;;;:60;;45617:32;45589:60;;;24121:11;24096:23;24092:41;24079:63;45977:43;24079:63;45887:26;;;;:17;:26;;;;;:205;;;;11489:8;46212:47;;:52;;46208:627;;46317:1;46307:11;;46285:19;46440:30;;;:17;:30;;;;;;:35;;46436:384;;46578:13;;46563:11;:28;46559:242;;46725:30;;;;:17;:30;;;;;:52;;;46559:242;46266:569;46208:627;46863:35;;46890:7;;46886:1;;-1:-1:-1;;;;;46863:35:0;;;;;46886:1;;46863:35;-1:-1:-1;;47086:12:0;:14;;;;;;-1:-1:-1;;;;44038:3081:0:o;35672:716::-;35856:88;;;;;35835:4;;-1:-1:-1;;;;;35856:45:0;;;;;:88;;70312:10;;35923:4;;35929:7;;35938:5;;35856:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35856:88:0;;;;;;;;-1:-1:-1;;35856:88:0;;;;;;;;;;;;:::i;:::-;;;35852:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36139:6;:13;36156:1;36139:18;36135:235;;36185:40;;;;;;;;;;;;;;36135:235;36328:6;36322:13;36313:6;36309:2;36305:15;36298:38;35852:529;36015:64;;36025:54;36015:64;;-1:-1:-1;35672:716:0;;;;;;:::o;90552:747::-;90633:7;90642:12;90671:9;:16;90691:2;90671:22;90667:625;;91015:4;91000:20;;90994:27;91065:4;91050:20;;91044:27;91123:4;91108:20;;91102:27;90710:9;91094:36;91166:25;91177:4;91094:36;90994:27;91044;91166:10;:25::i;:::-;91159:32;;;;;;;;;90667:625;-1:-1:-1;91240:1:0;;-1:-1:-1;91244:35:0;91224:56;;88945:521;89023:20;89014:5;:29;;;;;;;;:::i;:::-;;89010:449;;88945:521;:::o;89010:449::-;89121:29;89112:5;:38;;;;;;;;:::i;:::-;;89108:351;;89167:34;;;;;17269:2:1;89167:34:0;;;17251:21:1;17308:2;17288:18;;;17281:30;17347:26;17327:18;;;17320:54;17391:18;;89167:34:0;17067:348:1;89108:351:0;89232:35;89223:5;:44;;;;;;;;:::i;:::-;;89219:240;;89284:41;;;;;17622:2:1;89284:41:0;;;17604:21:1;17661:2;17641:18;;;17634:30;17700:33;17680:18;;;17673:61;17751:18;;89284:41:0;17420:355:1;89219:240:0;89356:30;89347:5;:39;;;;;;;;:::i;:::-;;89343:116;;89403:44;;;;;17982:2:1;89403:44:0;;;17964:21:1;18021:2;18001:18;;;17994:30;18060:34;18040:18;;;18033:62;18131:4;18111:18;;;18104:32;18153:19;;89403:44:0;17780:398:1;93553:1520:0;93684:7;;94618:66;94605:79;;94601:163;;;-1:-1:-1;94717:1:0;;-1:-1:-1;94721:30:0;94701:51;;94601:163;94878:24;;;94861:14;94878:24;;;;;;;;;18410:25:1;;;18483:4;18471:17;;18451:18;;;18444:45;;;;18505:18;;;18498:34;;;18548:18;;;18541:34;;;94878:24:0;;18382:19:1;;94878:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;94878:24:0;;-1:-1:-1;;94878:24:0;;;-1:-1:-1;;;;;;;94917:20:0;;94913:103;;94970:1;94974:29;94954:50;;;;;;;94913:103;95036:6;-1:-1:-1;95044:20:0;;-1:-1:-1;93553:1520:0;;;;;;;;:::o;14:196:1:-;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;406:177::-;491:66;484:5;480:78;473:5;470:89;460:117;;573:1;570;563:12;588:245;646:6;699:2;687:9;678:7;674:23;670:32;667:52;;;715:1;712;705:12;667:52;754:9;741:23;773:30;797:5;773:30;:::i;1030:366::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:52;;;1174:1;1171;1164:12;1126:52;1197:29;1216:9;1197:29;:::i;:::-;1187:39;;1276:2;1265:9;1261:18;1248:32;1320:26;1313:5;1309:38;1302:5;1299:49;1289:77;;1362:1;1359;1352:12;1289:77;1385:5;1375:15;;;1030:366;;;;;:::o;1401:250::-;1486:1;1496:113;1510:6;1507:1;1504:13;1496:113;;;1586:11;;;1580:18;1567:11;;;1560:39;1532:2;1525:10;1496:113;;;-1:-1:-1;;1643:1:1;1625:16;;1618:27;1401:250::o;1656:330::-;1698:3;1736:5;1730:12;1763:6;1758:3;1751:19;1779:76;1848:6;1841:4;1836:3;1832:14;1825:4;1818:5;1814:16;1779:76;:::i;:::-;1900:2;1888:15;-1:-1:-1;;1884:88:1;1875:98;;;;1975:4;1871:109;;1656:330;-1:-1:-1;;1656:330:1:o;1991:220::-;2140:2;2129:9;2122:21;2103:4;2160:45;2201:2;2190:9;2186:18;2178:6;2160:45;:::i;2216:180::-;2275:6;2328:2;2316:9;2307:7;2303:23;2299:32;2296:52;;;2344:1;2341;2334:12;2296:52;-1:-1:-1;2367:23:1;;2216:180;-1:-1:-1;2216:180:1:o;2632:254::-;2700:6;2708;2761:2;2749:9;2740:7;2736:23;2732:32;2729:52;;;2777:1;2774;2767:12;2729:52;2800:29;2819:9;2800:29;:::i;:::-;2790:39;2876:2;2861:18;;;;2848:32;;-1:-1:-1;;;2632:254:1:o;3617:328::-;3694:6;3702;3710;3763:2;3751:9;3742:7;3738:23;3734:32;3731:52;;;3779:1;3776;3769:12;3731:52;3802:29;3821:9;3802:29;:::i;:::-;3792:39;;3850:38;3884:2;3873:9;3869:18;3850:38;:::i;:::-;3840:48;;3935:2;3924:9;3920:18;3907:32;3897:42;;3617:328;;;;;:::o;3950:248::-;4018:6;4026;4079:2;4067:9;4058:7;4054:23;4050:32;4047:52;;;4095:1;4092;4085:12;4047:52;-1:-1:-1;;4118:23:1;;;4188:2;4173:18;;;4160:32;;-1:-1:-1;3950:248:1:o;4768:348::-;4820:8;4830:6;4884:3;4877:4;4869:6;4865:17;4861:27;4851:55;;4902:1;4899;4892:12;4851:55;-1:-1:-1;4925:20:1;;4968:18;4957:30;;4954:50;;;5000:1;4997;4990:12;4954:50;5037:4;5029:6;5025:17;5013:29;;5089:3;5082:4;5073:6;5065;5061:19;5057:30;5054:39;5051:59;;;5106:1;5103;5096:12;5121:411;5192:6;5200;5253:2;5241:9;5232:7;5228:23;5224:32;5221:52;;;5269:1;5266;5259:12;5221:52;5309:9;5296:23;5342:18;5334:6;5331:30;5328:50;;;5374:1;5371;5364:12;5328:50;5413:59;5464:7;5455:6;5444:9;5440:22;5413:59;:::i;:::-;5491:8;;5387:85;;-1:-1:-1;5121:411:1;-1:-1:-1;;;;5121:411:1:o;5537:118::-;5623:5;5616:13;5609:21;5602:5;5599:32;5589:60;;5645:1;5642;5635:12;5660:315;5725:6;5733;5786:2;5774:9;5765:7;5761:23;5757:32;5754:52;;;5802:1;5799;5792:12;5754:52;5825:29;5844:9;5825:29;:::i;:::-;5815:39;;5904:2;5893:9;5889:18;5876:32;5917:28;5939:5;5917:28;:::i;5980:184::-;6032:77;6029:1;6022:88;6129:4;6126:1;6119:15;6153:4;6150:1;6143:15;6169:1197;6264:6;6272;6280;6288;6341:3;6329:9;6320:7;6316:23;6312:33;6309:53;;;6358:1;6355;6348:12;6309:53;6381:29;6400:9;6381:29;:::i;:::-;6371:39;;6429:38;6463:2;6452:9;6448:18;6429:38;:::i;:::-;6419:48;;6514:2;6503:9;6499:18;6486:32;6476:42;;6569:2;6558:9;6554:18;6541:32;6592:18;6633:2;6625:6;6622:14;6619:34;;;6649:1;6646;6639:12;6619:34;6687:6;6676:9;6672:22;6662:32;;6732:7;6725:4;6721:2;6717:13;6713:27;6703:55;;6754:1;6751;6744:12;6703:55;6790:2;6777:16;6812:2;6808;6805:10;6802:36;;;6818:18;;:::i;:::-;6952:2;6946:9;7014:4;7006:13;;-1:-1:-1;;7002:22:1;;;7026:2;6998:31;6994:40;6982:53;;;7050:18;;;7070:22;;;7047:46;7044:72;;;7096:18;;:::i;:::-;7136:10;7132:2;7125:22;7171:2;7163:6;7156:18;7211:7;7206:2;7201;7197;7193:11;7189:20;7186:33;7183:53;;;7232:1;7229;7222:12;7183:53;7288:2;7283;7279;7275:11;7270:2;7262:6;7258:15;7245:46;7333:1;7328:2;7323;7315:6;7311:15;7307:24;7300:35;7354:6;7344:16;;;;;;;6169:1197;;;;;;;:::o;7371:260::-;7439:6;7447;7500:2;7488:9;7479:7;7475:23;7471:32;7468:52;;;7516:1;7513;7506:12;7468:52;7539:29;7558:9;7539:29;:::i;:::-;7529:39;;7587:38;7621:2;7610:9;7606:18;7587:38;:::i;:::-;7577:48;;7371:260;;;;;:::o;7636:478::-;7715:6;7723;7731;7784:2;7772:9;7763:7;7759:23;7755:32;7752:52;;;7800:1;7797;7790:12;7752:52;7836:9;7823:23;7813:33;;7897:2;7886:9;7882:18;7869:32;7924:18;7916:6;7913:30;7910:50;;;7956:1;7953;7946:12;7910:50;7995:59;8046:7;8037:6;8026:9;8022:22;7995:59;:::i;:::-;7636:478;;8073:8;;-1:-1:-1;7969:85:1;;-1:-1:-1;;;;7636:478:1:o;8119:437::-;8198:1;8194:12;;;;8241;;;8262:61;;8316:4;8308:6;8304:17;8294:27;;8262:61;8369:2;8361:6;8358:14;8338:18;8335:38;8332:218;;8406:77;8403:1;8396:88;8507:4;8504:1;8497:15;8535:4;8532:1;8525:15;8332:218;;8119:437;;;:::o;8561:184::-;8613:77;8610:1;8603:88;8710:4;8707:1;8700:15;8734:4;8731:1;8724:15;8750:168;8823:9;;;8854;;8871:15;;;8865:22;;8851:37;8841:71;;8892:18;;:::i;8923:274::-;8963:1;8989;8979:189;;9024:77;9021:1;9014:88;9125:4;9122:1;9115:15;9153:4;9150:1;9143:15;8979:189;-1:-1:-1;9182:9:1;;8923:274::o;9202:125::-;9267:9;;;9288:10;;;9285:36;;;9301:18;;:::i;9458:545::-;9560:2;9555:3;9552:11;9549:448;;;9596:1;9621:5;9617:2;9610:17;9666:4;9662:2;9652:19;9736:2;9724:10;9720:19;9717:1;9713:27;9707:4;9703:38;9772:4;9760:10;9757:20;9754:47;;;-1:-1:-1;9795:4:1;9754:47;9850:2;9845:3;9841:12;9838:1;9834:20;9828:4;9824:31;9814:41;;9905:82;9923:2;9916:5;9913:13;9905:82;;;9968:17;;;9949:1;9938:13;9905:82;;10239:1325;10363:18;10358:3;10355:27;10352:53;;;10385:18;;:::i;:::-;10414:94;10504:3;10464:38;10496:4;10490:11;10464:38;:::i;:::-;10458:4;10414:94;:::i;:::-;10534:1;10559:2;10554:3;10551:11;10576:1;10571:735;;;;11350:1;11367:3;11364:93;;;-1:-1:-1;11423:19:1;;;11410:33;11364:93;-1:-1:-1;;10136:1:1;10132:11;;;10128:84;10124:89;10114:100;10220:1;10216:11;;;10111:117;11470:78;;10544:1014;;10571:735;9405:1;9398:14;;;9442:4;9429:18;;-1:-1:-1;;10607:76:1;;;10767:9;10789:229;10803:7;10800:1;10797:14;10789:229;;;10892:19;;;10879:33;10864:49;;10999:4;10984:20;;;;10952:1;10940:14;;;;10819:12;10789:229;;;10793:3;11046;11037:7;11034:16;11031:219;;;-1:-1:-1;;11160:3:1;11154;11151:1;11147:11;11143:21;11139:94;11135:99;11122:9;11117:3;11113:19;11100:33;11096:139;11088:6;11081:155;11031:219;;;11293:1;11287:3;11284:1;11280:11;11276:19;11270:4;11263:33;10544:1014;;10239:1325;;;:::o;11569:449::-;11728:2;11717:9;11710:21;11767:6;11762:2;11751:9;11747:18;11740:34;11824:6;11816;11811:2;11800:9;11796:18;11783:48;11880:1;11851:22;;;11875:2;11847:31;;;11840:42;;;;11934:2;11922:15;;;-1:-1:-1;;11918:88:1;11903:104;11899:113;;11569:449;-1:-1:-1;11569:449:1:o;12023:1245::-;12300:3;12329:1;12362:6;12356:13;12392:36;12418:9;12392:36;:::i;:::-;12447:1;12464:18;;;12491:191;;;;12696:1;12691:356;;;;12457:590;;12491:191;12539:66;12528:9;12524:82;12519:3;12512:95;12662:6;12655:14;12648:22;12640:6;12636:35;12631:3;12627:45;12620:52;;12491:191;;12691:356;12722:6;12719:1;12712:17;12752:4;12797:2;12794:1;12784:16;12822:1;12836:165;12850:6;12847:1;12844:13;12836:165;;;12928:14;;12915:11;;;12908:35;12971:16;;;;12865:10;;12836:165;;;12840:3;;;13030:6;13025:3;13021:16;13014:23;;12457:590;;;;;13078:6;13072:13;13094:68;13153:8;13148:3;13141:4;13133:6;13129:17;13094:68;:::i;:::-;13225:7;13184:18;;13211:22;;;13260:1;13249:13;;12023:1245;-1:-1:-1;;;;12023:1245:1:o;15472:245::-;15539:6;15592:2;15580:9;15571:7;15567:23;15563:32;15560:52;;;15608:1;15605;15598:12;15560:52;15640:9;15634:16;15659:28;15681:5;15659:28;:::i;16107:512::-;16301:4;-1:-1:-1;;;;;16411:2:1;16403:6;16399:15;16388:9;16381:34;16463:2;16455:6;16451:15;16446:2;16435:9;16431:18;16424:43;;16503:6;16498:2;16487:9;16483:18;16476:34;16546:3;16541:2;16530:9;16526:18;16519:31;16567:46;16608:3;16597:9;16593:19;16585:6;16567:46;:::i;:::-;16559:54;16107:512;-1:-1:-1;;;;;;16107:512:1:o;16624:249::-;16693:6;16746:2;16734:9;16725:7;16721:23;16717:32;16714:52;;;16762:1;16759;16752:12;16714:52;16794:9;16788:16;16813:30;16837:5;16813:30;:::i;16878:184::-;16930:77;16927:1;16920:88;17027:4;17024:1;17017:15;17051:4;17048:1;17041:15
Swarm Source
ipfs://8a9aa2c6d8aafeed26eefca29dff82863f8cf8198075f1926f126f7eecc50610
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.