Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
52 HOD
Holders
30
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HODLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HOD
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-17 */ // // ......... // .................... // ...... ..'.. // .,. ..'. // ', .......''. // .;. .....................', // .,. . ..... ', // ., ... .,. // ,. ..... ', // .,. ........ .......;. // .,. . ... '' // '. :#--~--#' .#--#. .' // ', ..;-*-*-*-. ,-*-*: ', // ,. . . ..... .,. // .;. .. .,. .' // .,. '' .'' '' // .,. .,. ...,;. .;. .,. // '. .,. .,' ... . .,. .,. // '. .',. ........ ',. // ,. ....'. ........ ., // ., .. .'''. . .,. // ,. .''. .',. // ,, .. .............. // .,. .,'. ....'::. // ....',. .. . ............. // ..... ... .. . // ..... // 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); } 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) } } } pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } 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; } } 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); } } pragma solidity ^0.8.13; contract HOD is ERC721A, ReentrancyGuard, Ownable{ string public baseURI; bool public mintingActive = false; bool public burningActive = false; bool public allowlistActive = false; uint256 public allowListMintPrice = 0.069 ether; uint256 public publicMintPrice = 0.096 ether; uint64 public maxSupply = 420; uint64 public maxMintsPerAddress = 2; bytes32 public allowlistMerkleRoot = ''; address payable hodDeployerAddress; address admin; constructor(string memory name_, string memory symbol_, string memory baseURI_, bytes32 merkleRoot_, address hodDeployerAddress_) ERC721A(name_, symbol_) { require(_msgSenderERC721A() != hodDeployerAddress_, "Error msgSender address is the same as deployer address"); admin = _msgSenderERC721A(); baseURI = baseURI_; allowlistMerkleRoot = merkleRoot_; hodDeployerAddress = payable(hodDeployerAddress_); } function setAllowListActive(bool active) public { require(_msgSenderERC721A() == admin, "Not Authorized"); allowlistActive = active; } function setMintingActive(bool active) public { require(_msgSenderERC721A() == admin, "Not Authorized"); mintingActive = active; } function setBurningActive(bool active) public { require(_msgSenderERC721A() == admin, "Not Authorized"); burningActive = active; } function setBaseTokenURI(string memory baseURI_) public { require(_msgSenderERC721A() == admin, "Not Authorized"); baseURI = baseURI_; } function setMaxSupply(uint64 maxSupply_) public { require(_msgSenderERC721A() == admin, "Not Authorized"); maxSupply= maxSupply_; } function setPublicMintPrice(uint256 mintPrice_) public { require(_msgSenderERC721A() == admin, "Not Authorized"); publicMintPrice = mintPrice_; } function setAllowListMintPrice(uint256 mintPrice_) public { require(_msgSenderERC721A() == admin, "Not Authorized"); allowListMintPrice = mintPrice_; } function setMaxMintsPerAddress(uint64 maxMintsPerAddress_) public { require(_msgSenderERC721A() == admin, "Not Authorized"); maxMintsPerAddress = maxMintsPerAddress_; } function setAllowList(bytes32 merkleRoot) public { require(_msgSenderERC721A() == admin, "Not Authorized"); allowlistMerkleRoot = merkleRoot; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Token does not exist"); return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")); } function sendRemainingToTheHouse(uint256 _qty) external onlyOwner { require(burningActive, "Burning is not enabled"); require(totalSupply() + _qty <= maxSupply, "Degen Pass: Total Supply Minted"); _safeMint(0x0Bd8e94E780C4D913D0B0C4869402DaDEd927DAe, _qty); } function _startTokenId() internal pure override returns (uint256) { return 1; } function allowlistMint(bytes32[] calldata merkleProof, uint16 amount) external payable nonReentrant() { // @notice using Checks-Effects-Interactions require(allowlistActive, "Allow list minting not enabled"); require(msg.value == allowListMintPrice * amount, "Incorrect amount of ether sent"); require(_totalMinted() + amount <= maxSupply, "Can not mint that many"); uint64 mintCountBySender = _getAux(_msgSenderERC721A()) + amount; require(mintCountBySender <= maxMintsPerAddress, "Exceeds allowed mints"); require( MerkleProof.verify( merkleProof, allowlistMerkleRoot, keccak256(abi.encodePacked(_msgSenderERC721A())) ), "Address not in allowlist" ); hodDeployerAddress.transfer(msg.value); _mint(_msgSenderERC721A(), amount); _setAux(_msgSenderERC721A(), mintCountBySender); } function publicMint(uint16 amount) external payable nonReentrant() { // @notice using Checks-Effects-Interactions require(mintingActive, "Minting not enabled"); require(msg.value == publicMintPrice * amount, "Incorrect amount of ether sent"); require(_totalMinted() + amount <= maxSupply, "Can not mint that many"); uint64 mintCountBySender = _getAux(_msgSenderERC721A()) + amount; require(mintCountBySender <= maxMintsPerAddress, "Exceeds allowed mints"); require(balanceOf(_msgSenderERC721A()) + amount <= maxMintsPerAddress, "Exceeds maximum allowed mints"); hodDeployerAddress.transfer(msg.value); _mint(_msgSenderERC721A(), amount); _setAux(_msgSenderERC721A(), mintCountBySender); } function burn(uint256 tokenId) public { require(burningActive, "Burning is not enabled"); _burn(tokenId, true); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"address","name":"hodDeployerAddress_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"allowListMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowlistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"amount","type":"uint16"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burningActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerAddress","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingActive","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":"uint16","name":"amount","type":"uint16"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"sendRemainingToTheHouse","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"name":"setAllowListMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setBurningActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"maxMintsPerAddress_","type":"uint64"}],"name":"setMaxMintsPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"maxSupply_","type":"uint64"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setMintingActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"name":"setPublicMintPrice","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":"tokenId","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"}]
Contract Creation Code
6080604052600b805462ffffff1916905566f5232269808000600c556701550f7dca700000600d55600e80546001600160801b031916680200000000000001a41790556000600f553480156200005457600080fd5b50604051620029dd380380620029dd833981016040819052620000779162000298565b84846002620000878382620003e6565b506003620000968282620003e6565b50600160005550506001600855620000ae3362000181565b6001600160a01b0381163303620001315760405162461bcd60e51b815260206004820152603760248201527f4572726f72206d736753656e646572206164647265737320697320746865207360448201527f616d65206173206465706c6f7965722061646472657373000000000000000000606482015260840160405180910390fd5b601180546001600160a01b03191633179055600a620001518482620003e6565b50600f91909155601080546001600160a01b0319166001600160a01b0390921691909117905550620004b2915050565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001fb57600080fd5b81516001600160401b0380821115620002185762000218620001d3565b604051601f8301601f19908116603f01168101908282118183101715620002435762000243620001d3565b816040528381526020925086838588010111156200026057600080fd5b600091505b8382101562000284578582018301518183018401529082019062000265565b600093810190920192909252949350505050565b600080600080600060a08688031215620002b157600080fd5b85516001600160401b0380821115620002c957600080fd5b620002d789838a01620001e9565b96506020880151915080821115620002ee57600080fd5b620002fc89838a01620001e9565b955060408801519150808211156200031357600080fd5b506200032288828901620001e9565b60608801516080890151919550935090506001600160a01b03811681146200034957600080fd5b809150509295509295909350565b600181811c908216806200036c57607f821691505b6020821081036200038d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003e157600081815260208120601f850160051c81016020861015620003bc5750805b601f850160051c820191505b81811015620003dd57828155600101620003c8565b5050505b505050565b81516001600160401b03811115620004025762000402620001d3565b6200041a8162000413845462000357565b8462000393565b602080601f831160018114620004525760008415620004395750858301515b600019600386901b1c1916600185901b178555620003dd565b600085815260208120601f198616915b82811015620004835788860151825594840194600190910190840162000462565b5085821015620004a25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61251b80620004c26000396000f3fe6080604052600436106102305760003560e01c8063715018a61161012e578063c3e32a1e116100ab578063d7f8260f1161006f578063d7f8260f1461064d578063dc53fd921461066d578063e985e9c514610683578063f2fde38b146106a3578063f607cc4c146106c357600080fd5b8063c3e32a1e146105ba578063c87b56dd146105da578063cca694f0146105fa578063d04ef2851461060d578063d5abeb011461062d57600080fd5b806395d89b41116100f257806395d89b41146105135780639c4f3d0a14610528578063a22cb46514610548578063ae6a80d514610568578063b88d4fde146105a757600080fd5b8063715018a61461048057806384584d071461049557806385284573146104b55780638b076b9b146104d55780638da5cb5b146104f557600080fd5b806330176e13116101bc5780635d82cf6e116101805780635d82cf6e146103f55780636352211e1461041557806368855b64146104355780636c0360eb1461044b57806370a082311461046057600080fd5b806330176e131461036857806331f9c919146103885780633a73c58d146103a257806342842e0e146103c257806342966c68146103d557600080fd5b8063145e442211610203578063145e4422146102d957806318160ddd146102f95780631c7c25981461032057806323b872dd1461033f578063293108e01461035257600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611da1565b6106d6565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610728565b6040516102619190611e0e565b34801561029857600080fd5b506102ac6102a7366004611e21565b6107ba565b6040516001600160a01b039091168152602001610261565b6102d76102d2366004611e56565b6107fe565b005b3480156102e557600080fd5b506102d76102f4366004611e80565b61089e565b34801561030557600080fd5b5060015460005403600019015b604051908152602001610261565b34801561032c57600080fd5b50600b5461025590610100900460ff1681565b6102d761034d366004611ea9565b61090c565b34801561035e57600080fd5b50610312600f5481565b34801561037457600080fd5b506102d7610383366004611f70565b610a9d565b34801561039457600080fd5b50600b546102559060ff1681565b3480156103ae57600080fd5b506102d76103bd366004611fc8565b610ae0565b6102d76103d0366004611ea9565b610b2f565b3480156103e157600080fd5b506102d76103f0366004611e21565b610b4f565b34801561040157600080fd5b506102d7610410366004611e21565b610bad565b34801561042157600080fd5b506102ac610430366004611e21565b610be5565b34801561044157600080fd5b50610312600c5481565b34801561045757600080fd5b5061027f610bf0565b34801561046c57600080fd5b5061031261047b366004611fe3565b610c7e565b34801561048c57600080fd5b506102d7610ccc565b3480156104a157600080fd5b506102d76104b0366004611e21565b610ce0565b3480156104c157600080fd5b506102d76104d0366004611e21565b610d18565b3480156104e157600080fd5b50600b546102559062010000900460ff1681565b34801561050157600080fd5b506009546001600160a01b03166102ac565b34801561051f57600080fd5b5061027f610d50565b34801561053457600080fd5b506102d7610543366004611e80565b610d5f565b34801561055457600080fd5b506102d7610563366004611ffe565b610db5565b34801561057457600080fd5b50600e5461058f90600160401b90046001600160401b031681565b6040516001600160401b039091168152602001610261565b6102d76105b5366004612031565b610e21565b3480156105c657600080fd5b506102d76105d5366004611fc8565b610e6b565b3480156105e657600080fd5b5061027f6105f5366004611e21565b610eb8565b6102d76106083660046120be565b610f38565b34801561061957600080fd5b506102d7610628366004611fc8565b611291565b34801561063957600080fd5b50600e5461058f906001600160401b031681565b34801561065957600080fd5b506102d7610668366004611e21565b6112d7565b34801561067957600080fd5b50610312600d5481565b34801561068f57600080fd5b5061025561069e366004612141565b6113c5565b3480156106af57600080fd5b506102d76106be366004611fe3565b6113f3565b6102d76106d136600461216b565b611469565b60006301ffc9a760e01b6001600160e01b03198316148061070757506380ac58cd60e01b6001600160e01b03198316145b806107225750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461073790612186565b80601f016020809104026020016040519081016040528092919081815260200182805461076390612186565b80156107b05780601f10610785576101008083540402835291602001916107b0565b820191906000526020600020905b81548152906001019060200180831161079357829003601f168201915b5050505050905090565b60006107c582611720565b6107e2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061080982610be5565b9050336001600160a01b038216146108425761082581336113c5565b610842576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6011546001600160a01b0316336001600160a01b0316146108da5760405162461bcd60e51b81526004016108d1906121c0565b60405180910390fd5b600e80546001600160401b03909216600160401b026fffffffffffffffff000000000000000019909216919091179055565b600061091782611755565b9050836001600160a01b0316816001600160a01b03161461094a5760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546109768187335b6001600160a01b039081169116811491141790565b6109a15761098486336113c5565b6109a157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109c857604051633a954ecd60e21b815260040160405180910390fd5b80156109d357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a6557600184016000818152600460205260408120549003610a63576000548114610a635760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03166000805160206124c683398151915260405160405180910390a45b505050505050565b6011546001600160a01b0316336001600160a01b031614610ad05760405162461bcd60e51b81526004016108d1906121c0565b600a610adc828261222e565b5050565b6011546001600160a01b0316336001600160a01b031614610b135760405162461bcd60e51b81526004016108d1906121c0565b600b8054911515620100000262ff000019909216919091179055565b610b4a83838360405180602001604052806000815250610e21565b505050565b600b54610100900460ff16610b9f5760405162461bcd60e51b8152602060048201526016602482015275109d5c9b9a5b99c81a5cc81b9bdd08195b98589b195960521b60448201526064016108d1565b610baa8160016117cb565b50565b6011546001600160a01b0316336001600160a01b031614610be05760405162461bcd60e51b81526004016108d1906121c0565b600d55565b600061072282611755565b600a8054610bfd90612186565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2990612186565b8015610c765780601f10610c4b57610100808354040283529160200191610c76565b820191906000526020600020905b815481529060010190602001808311610c5957829003601f168201915b505050505081565b60006001600160a01b038216610ca7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610cd4611903565b610cde600061195d565b565b6011546001600160a01b0316336001600160a01b031614610d135760405162461bcd60e51b81526004016108d1906121c0565b600f55565b6011546001600160a01b0316336001600160a01b031614610d4b5760405162461bcd60e51b81526004016108d1906121c0565b600c55565b60606003805461073790612186565b6011546001600160a01b0316336001600160a01b031614610d925760405162461bcd60e51b81526004016108d1906121c0565b600e805467ffffffffffffffff19166001600160401b0392909216919091179055565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e2c84848461090c565b6001600160a01b0383163b15610e6557610e48848484846119af565b610e65576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6011546001600160a01b0316336001600160a01b031614610e9e5760405162461bcd60e51b81526004016108d1906121c0565b600b80549115156101000261ff0019909216919091179055565b6060610ec382611720565b610f065760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016108d1565b600a610f1183611a9b565b604051602001610f229291906122ed565b6040516020818303038152906040529050919050565b600260085403610f8a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108d1565b6002600855600b5462010000900460ff16610fe75760405162461bcd60e51b815260206004820152601e60248201527f416c6c6f77206c697374206d696e74696e67206e6f7420656e61626c6564000060448201526064016108d1565b8061ffff16600c54610ff9919061239a565b34146110475760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016108d1565b600e546001600160401b031661ffff82166110656000546000190190565b61106f91906123b1565b11156110b65760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686174206d616e7960501b60448201526064016108d1565b600061ffff82166110e0335b6001600160a01b031660009081526005602052604090205460c01c90565b6110ea91906123c4565b600e549091506001600160401b03600160401b9091048116908216111561114b5760405162461bcd60e51b81526020600482015260156024820152744578636565647320616c6c6f776564206d696e747360581b60448201526064016108d1565b6111c084848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611b9b565b61120c5760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420696e20616c6c6f776c697374000000000000000060448201526064016108d1565b6010546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611245573d6000803e3d6000fd5b50611255335b8361ffff16611bb1565b611286335b6001600160a01b0316600090815260056020526040902080546001600160c01b031660c084901b179055565b505060016008555050565b6011546001600160a01b0316336001600160a01b0316146112c45760405162461bcd60e51b81526004016108d1906121c0565b600b805460ff1916911515919091179055565b6112df611903565b600b54610100900460ff1661132f5760405162461bcd60e51b8152602060048201526016602482015275109d5c9b9a5b99c81a5cc81b9bdd08195b98589b195960521b60448201526064016108d1565b600e546001600160401b03168161134f6001546000546000199190030190565b61135991906123b1565b11156113a75760405162461bcd60e51b815260206004820152601f60248201527f446567656e20506173733a20546f74616c20537570706c79204d696e7465640060448201526064016108d1565b610baa730bd8e94e780c4d913d0b0c4869402daded927dae82611c8b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6113fb611903565b6001600160a01b0381166114605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d1565b610baa8161195d565b6002600854036114bb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108d1565b6002600855600b5460ff166115085760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b60448201526064016108d1565b8061ffff16600d5461151a919061239a565b34146115685760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016108d1565b600e546001600160401b031661ffff82166115866000546000190190565b61159091906123b1565b11156115d75760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686174206d616e7960501b60448201526064016108d1565b600061ffff82166115e7336110c2565b6115f191906123c4565b600e549091506001600160401b03600160401b909104811690821611156116525760405162461bcd60e51b81526020600482015260156024820152744578636565647320616c6c6f776564206d696e747360581b60448201526064016108d1565b600e54600160401b90046001600160401b031661ffff831661167333610c7e565b61167d91906123b1565b11156116cb5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d20616c6c6f776564206d696e747300000060448201526064016108d1565b6010546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611704573d6000803e3d6000fd5b5061170e3361124b565b6117173361125a565b50506001600855565b600081600111158015611734575060005482105b8015610722575050600090815260046020526040902054600160e01b161590565b600081806001116117b2576000548110156117b25760008181526004602052604081205490600160e01b821690036117b0575b806000036117a9575060001901600081815260046020526040902054611788565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006117d683611755565b9050806000806117f486600090815260066020526040902080549091565b91509150841561183457611809818433610961565b6118345761181783336113c5565b61183457604051632ce44b5f60e11b815260040160405180910390fd5b801561183f57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b851690036118cd576001860160008181526004602052604081205490036118cb5760005481146118cb5760008181526004602052604090208590555b505b60405186906000906001600160a01b038616906000805160206124c6833981519152908390a45050600180548101905550505050565b6009546001600160a01b03163314610cde5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d1565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119e49033908990889088906004016123eb565b6020604051808303816000875af1925050508015611a1f575060408051601f3d908101601f19168201909252611a1c91810190612428565b60015b611a7d573d808015611a4d576040519150601f19603f3d011682016040523d82523d6000602084013e611a52565b606091505b508051600003611a75576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611ac25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aec5780611ad681612445565b9150611ae59050600a83612474565b9150611ac6565b6000816001600160401b03811115611b0657611b06611ee5565b6040519080825280601f01601f191660200182016040528015611b30576020820181803683370190505b5090505b8415611a9357611b45600183612488565b9150611b52600a8661249b565b611b5d9060306123b1565b60f81b818381518110611b7257611b726124af565b60200101906001600160f81b031916908160001a905350611b94600a86612474565b9450611b34565b600082611ba88584611ca5565b14949350505050565b6000805490829003611bd65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206124c68339815191528180a4600183015b818114611c6157808360006000805160206124c6833981519152600080a4600101611c3b565b5081600003611c8257604051622e076360e81b815260040160405180910390fd5b60005550505050565b610adc828260405180602001604052806000815250611cf2565b600081815b8451811015611cea57611cd682868381518110611cc957611cc96124af565b6020026020010151611d5f565b915080611ce281612445565b915050611caa565b509392505050565b611cfc8383611bb1565b6001600160a01b0383163b15610b4a576000548281035b611d2660008683806001019450866119af565b611d43576040516368d2bf6b60e11b815260040160405180910390fd5b818110611d13578160005414611d5857600080fd5b5050505050565b6000818310611d7b5760008281526020849052604090206117a9565b5060009182526020526040902090565b6001600160e01b031981168114610baa57600080fd5b600060208284031215611db357600080fd5b81356117a981611d8b565b60005b83811015611dd9578181015183820152602001611dc1565b50506000910152565b60008151808452611dfa816020860160208601611dbe565b601f01601f19169290920160200192915050565b6020815260006117a96020830184611de2565b600060208284031215611e3357600080fd5b5035919050565b80356001600160a01b0381168114611e5157600080fd5b919050565b60008060408385031215611e6957600080fd5b611e7283611e3a565b946020939093013593505050565b600060208284031215611e9257600080fd5b81356001600160401b03811681146117a957600080fd5b600080600060608486031215611ebe57600080fd5b611ec784611e3a565b9250611ed560208501611e3a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f1557611f15611ee5565b604051601f8501601f19908116603f01168101908282118183101715611f3d57611f3d611ee5565b81604052809350858152868686011115611f5657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f8257600080fd5b81356001600160401b03811115611f9857600080fd5b8201601f81018413611fa957600080fd5b611a9384823560208401611efb565b80358015158114611e5157600080fd5b600060208284031215611fda57600080fd5b6117a982611fb8565b600060208284031215611ff557600080fd5b6117a982611e3a565b6000806040838503121561201157600080fd5b61201a83611e3a565b915061202860208401611fb8565b90509250929050565b6000806000806080858703121561204757600080fd5b61205085611e3a565b935061205e60208601611e3a565b92506040850135915060608501356001600160401b0381111561208057600080fd5b8501601f8101871361209157600080fd5b6120a087823560208401611efb565b91505092959194509250565b803561ffff81168114611e5157600080fd5b6000806000604084860312156120d357600080fd5b83356001600160401b03808211156120ea57600080fd5b818601915086601f8301126120fe57600080fd5b81358181111561210d57600080fd5b8760208260051b850101111561212257600080fd5b60209283019550935061213891860190506120ac565b90509250925092565b6000806040838503121561215457600080fd5b61215d83611e3a565b915061202860208401611e3a565b60006020828403121561217d57600080fd5b6117a9826120ac565b600181811c9082168061219a57607f821691505b6020821081036121ba57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600e908201526d139bdd08105d5d1a1bdc9a5e995960921b604082015260600190565b601f821115610b4a57600081815260208120601f850160051c8101602086101561220f5750805b601f850160051c820191505b81811015610a955782815560010161221b565b81516001600160401b0381111561224757612247611ee5565b61225b816122558454612186565b846121e8565b602080601f83116001811461229057600084156122785750858301515b600019600386901b1c1916600185901b178555610a95565b600085815260208120601f198616915b828110156122bf578886015182559484019460019091019084016122a0565b50858210156122dd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008084546122fb81612186565b60018281168015612313576001811461232857612357565b60ff1984168752821515830287019450612357565b8860005260208060002060005b8581101561234e5781548a820152908401908201612335565b50505082870194505b50505050835161236b818360208801611dbe565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761072257610722612384565b8082018082111561072257610722612384565b6001600160401b038181168382160190808211156123e4576123e4612384565b5092915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241e90830184611de2565b9695505050505050565b60006020828403121561243a57600080fd5b81516117a981611d8b565b60006001820161245757612457612384565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124835761248361245e565b500490565b8181038181111561072257610722612384565b6000826124aa576124aa61245e565b500690565b634e487b7160e01b600052603260045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200043a160edb8b92579d8316f8ddbe6a6cb21a46dcbc7bb7b7cd1ebc76348fcc164736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001205bcc2be3c8afb64de237ff1f2d1bfe2123cfeaf888ad14b4de16d505fd330a880000000000000000000000000bd8e94e780c4d913d0b0c4869402daded927dae000000000000000000000000000000000000000000000000000000000000000f486f757365206f6620446567656e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003484f4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d624756507169754872743245737a57665142426f6e6a3270776467546153397168375958583445656d3659502f00000000000000000000
Deployed Bytecode
0x6080604052600436106102305760003560e01c8063715018a61161012e578063c3e32a1e116100ab578063d7f8260f1161006f578063d7f8260f1461064d578063dc53fd921461066d578063e985e9c514610683578063f2fde38b146106a3578063f607cc4c146106c357600080fd5b8063c3e32a1e146105ba578063c87b56dd146105da578063cca694f0146105fa578063d04ef2851461060d578063d5abeb011461062d57600080fd5b806395d89b41116100f257806395d89b41146105135780639c4f3d0a14610528578063a22cb46514610548578063ae6a80d514610568578063b88d4fde146105a757600080fd5b8063715018a61461048057806384584d071461049557806385284573146104b55780638b076b9b146104d55780638da5cb5b146104f557600080fd5b806330176e13116101bc5780635d82cf6e116101805780635d82cf6e146103f55780636352211e1461041557806368855b64146104355780636c0360eb1461044b57806370a082311461046057600080fd5b806330176e131461036857806331f9c919146103885780633a73c58d146103a257806342842e0e146103c257806342966c68146103d557600080fd5b8063145e442211610203578063145e4422146102d957806318160ddd146102f95780631c7c25981461032057806323b872dd1461033f578063293108e01461035257600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004611da1565b6106d6565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610728565b6040516102619190611e0e565b34801561029857600080fd5b506102ac6102a7366004611e21565b6107ba565b6040516001600160a01b039091168152602001610261565b6102d76102d2366004611e56565b6107fe565b005b3480156102e557600080fd5b506102d76102f4366004611e80565b61089e565b34801561030557600080fd5b5060015460005403600019015b604051908152602001610261565b34801561032c57600080fd5b50600b5461025590610100900460ff1681565b6102d761034d366004611ea9565b61090c565b34801561035e57600080fd5b50610312600f5481565b34801561037457600080fd5b506102d7610383366004611f70565b610a9d565b34801561039457600080fd5b50600b546102559060ff1681565b3480156103ae57600080fd5b506102d76103bd366004611fc8565b610ae0565b6102d76103d0366004611ea9565b610b2f565b3480156103e157600080fd5b506102d76103f0366004611e21565b610b4f565b34801561040157600080fd5b506102d7610410366004611e21565b610bad565b34801561042157600080fd5b506102ac610430366004611e21565b610be5565b34801561044157600080fd5b50610312600c5481565b34801561045757600080fd5b5061027f610bf0565b34801561046c57600080fd5b5061031261047b366004611fe3565b610c7e565b34801561048c57600080fd5b506102d7610ccc565b3480156104a157600080fd5b506102d76104b0366004611e21565b610ce0565b3480156104c157600080fd5b506102d76104d0366004611e21565b610d18565b3480156104e157600080fd5b50600b546102559062010000900460ff1681565b34801561050157600080fd5b506009546001600160a01b03166102ac565b34801561051f57600080fd5b5061027f610d50565b34801561053457600080fd5b506102d7610543366004611e80565b610d5f565b34801561055457600080fd5b506102d7610563366004611ffe565b610db5565b34801561057457600080fd5b50600e5461058f90600160401b90046001600160401b031681565b6040516001600160401b039091168152602001610261565b6102d76105b5366004612031565b610e21565b3480156105c657600080fd5b506102d76105d5366004611fc8565b610e6b565b3480156105e657600080fd5b5061027f6105f5366004611e21565b610eb8565b6102d76106083660046120be565b610f38565b34801561061957600080fd5b506102d7610628366004611fc8565b611291565b34801561063957600080fd5b50600e5461058f906001600160401b031681565b34801561065957600080fd5b506102d7610668366004611e21565b6112d7565b34801561067957600080fd5b50610312600d5481565b34801561068f57600080fd5b5061025561069e366004612141565b6113c5565b3480156106af57600080fd5b506102d76106be366004611fe3565b6113f3565b6102d76106d136600461216b565b611469565b60006301ffc9a760e01b6001600160e01b03198316148061070757506380ac58cd60e01b6001600160e01b03198316145b806107225750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461073790612186565b80601f016020809104026020016040519081016040528092919081815260200182805461076390612186565b80156107b05780601f10610785576101008083540402835291602001916107b0565b820191906000526020600020905b81548152906001019060200180831161079357829003601f168201915b5050505050905090565b60006107c582611720565b6107e2576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061080982610be5565b9050336001600160a01b038216146108425761082581336113c5565b610842576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6011546001600160a01b0316336001600160a01b0316146108da5760405162461bcd60e51b81526004016108d1906121c0565b60405180910390fd5b600e80546001600160401b03909216600160401b026fffffffffffffffff000000000000000019909216919091179055565b600061091782611755565b9050836001600160a01b0316816001600160a01b03161461094a5760405162a1148160e81b815260040160405180910390fd5b600082815260066020526040902080546109768187335b6001600160a01b039081169116811491141790565b6109a15761098486336113c5565b6109a157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109c857604051633a954ecd60e21b815260040160405180910390fd5b80156109d357600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003610a6557600184016000818152600460205260408120549003610a63576000548114610a635760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03166000805160206124c683398151915260405160405180910390a45b505050505050565b6011546001600160a01b0316336001600160a01b031614610ad05760405162461bcd60e51b81526004016108d1906121c0565b600a610adc828261222e565b5050565b6011546001600160a01b0316336001600160a01b031614610b135760405162461bcd60e51b81526004016108d1906121c0565b600b8054911515620100000262ff000019909216919091179055565b610b4a83838360405180602001604052806000815250610e21565b505050565b600b54610100900460ff16610b9f5760405162461bcd60e51b8152602060048201526016602482015275109d5c9b9a5b99c81a5cc81b9bdd08195b98589b195960521b60448201526064016108d1565b610baa8160016117cb565b50565b6011546001600160a01b0316336001600160a01b031614610be05760405162461bcd60e51b81526004016108d1906121c0565b600d55565b600061072282611755565b600a8054610bfd90612186565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2990612186565b8015610c765780601f10610c4b57610100808354040283529160200191610c76565b820191906000526020600020905b815481529060010190602001808311610c5957829003601f168201915b505050505081565b60006001600160a01b038216610ca7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610cd4611903565b610cde600061195d565b565b6011546001600160a01b0316336001600160a01b031614610d135760405162461bcd60e51b81526004016108d1906121c0565b600f55565b6011546001600160a01b0316336001600160a01b031614610d4b5760405162461bcd60e51b81526004016108d1906121c0565b600c55565b60606003805461073790612186565b6011546001600160a01b0316336001600160a01b031614610d925760405162461bcd60e51b81526004016108d1906121c0565b600e805467ffffffffffffffff19166001600160401b0392909216919091179055565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e2c84848461090c565b6001600160a01b0383163b15610e6557610e48848484846119af565b610e65576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6011546001600160a01b0316336001600160a01b031614610e9e5760405162461bcd60e51b81526004016108d1906121c0565b600b80549115156101000261ff0019909216919091179055565b6060610ec382611720565b610f065760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016108d1565b600a610f1183611a9b565b604051602001610f229291906122ed565b6040516020818303038152906040529050919050565b600260085403610f8a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108d1565b6002600855600b5462010000900460ff16610fe75760405162461bcd60e51b815260206004820152601e60248201527f416c6c6f77206c697374206d696e74696e67206e6f7420656e61626c6564000060448201526064016108d1565b8061ffff16600c54610ff9919061239a565b34146110475760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016108d1565b600e546001600160401b031661ffff82166110656000546000190190565b61106f91906123b1565b11156110b65760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686174206d616e7960501b60448201526064016108d1565b600061ffff82166110e0335b6001600160a01b031660009081526005602052604090205460c01c90565b6110ea91906123c4565b600e549091506001600160401b03600160401b9091048116908216111561114b5760405162461bcd60e51b81526020600482015260156024820152744578636565647320616c6c6f776564206d696e747360581b60448201526064016108d1565b6111c084848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611b9b565b61120c5760405162461bcd60e51b815260206004820152601860248201527f41646472657373206e6f7420696e20616c6c6f776c697374000000000000000060448201526064016108d1565b6010546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611245573d6000803e3d6000fd5b50611255335b8361ffff16611bb1565b611286335b6001600160a01b0316600090815260056020526040902080546001600160c01b031660c084901b179055565b505060016008555050565b6011546001600160a01b0316336001600160a01b0316146112c45760405162461bcd60e51b81526004016108d1906121c0565b600b805460ff1916911515919091179055565b6112df611903565b600b54610100900460ff1661132f5760405162461bcd60e51b8152602060048201526016602482015275109d5c9b9a5b99c81a5cc81b9bdd08195b98589b195960521b60448201526064016108d1565b600e546001600160401b03168161134f6001546000546000199190030190565b61135991906123b1565b11156113a75760405162461bcd60e51b815260206004820152601f60248201527f446567656e20506173733a20546f74616c20537570706c79204d696e7465640060448201526064016108d1565b610baa730bd8e94e780c4d913d0b0c4869402daded927dae82611c8b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6113fb611903565b6001600160a01b0381166114605760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d1565b610baa8161195d565b6002600854036114bb5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108d1565b6002600855600b5460ff166115085760405162461bcd60e51b8152602060048201526013602482015272135a5b9d1a5b99c81b9bdd08195b98589b1959606a1b60448201526064016108d1565b8061ffff16600d5461151a919061239a565b34146115685760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016108d1565b600e546001600160401b031661ffff82166115866000546000190190565b61159091906123b1565b11156115d75760405162461bcd60e51b815260206004820152601660248201527543616e206e6f74206d696e742074686174206d616e7960501b60448201526064016108d1565b600061ffff82166115e7336110c2565b6115f191906123c4565b600e549091506001600160401b03600160401b909104811690821611156116525760405162461bcd60e51b81526020600482015260156024820152744578636565647320616c6c6f776564206d696e747360581b60448201526064016108d1565b600e54600160401b90046001600160401b031661ffff831661167333610c7e565b61167d91906123b1565b11156116cb5760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d20616c6c6f776564206d696e747300000060448201526064016108d1565b6010546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611704573d6000803e3d6000fd5b5061170e3361124b565b6117173361125a565b50506001600855565b600081600111158015611734575060005482105b8015610722575050600090815260046020526040902054600160e01b161590565b600081806001116117b2576000548110156117b25760008181526004602052604081205490600160e01b821690036117b0575b806000036117a9575060001901600081815260046020526040902054611788565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b60006117d683611755565b9050806000806117f486600090815260066020526040902080549091565b91509150841561183457611809818433610961565b6118345761181783336113c5565b61183457604051632ce44b5f60e11b815260040160405180910390fd5b801561183f57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040812091909155600160e11b851690036118cd576001860160008181526004602052604081205490036118cb5760005481146118cb5760008181526004602052604090208590555b505b60405186906000906001600160a01b038616906000805160206124c6833981519152908390a45050600180548101905550505050565b6009546001600160a01b03163314610cde5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108d1565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119e49033908990889088906004016123eb565b6020604051808303816000875af1925050508015611a1f575060408051601f3d908101601f19168201909252611a1c91810190612428565b60015b611a7d573d808015611a4d576040519150601f19603f3d011682016040523d82523d6000602084013e611a52565b606091505b508051600003611a75576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611ac25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aec5780611ad681612445565b9150611ae59050600a83612474565b9150611ac6565b6000816001600160401b03811115611b0657611b06611ee5565b6040519080825280601f01601f191660200182016040528015611b30576020820181803683370190505b5090505b8415611a9357611b45600183612488565b9150611b52600a8661249b565b611b5d9060306123b1565b60f81b818381518110611b7257611b726124af565b60200101906001600160f81b031916908160001a905350611b94600a86612474565b9450611b34565b600082611ba88584611ca5565b14949350505050565b6000805490829003611bd65760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083906000805160206124c68339815191528180a4600183015b818114611c6157808360006000805160206124c6833981519152600080a4600101611c3b565b5081600003611c8257604051622e076360e81b815260040160405180910390fd5b60005550505050565b610adc828260405180602001604052806000815250611cf2565b600081815b8451811015611cea57611cd682868381518110611cc957611cc96124af565b6020026020010151611d5f565b915080611ce281612445565b915050611caa565b509392505050565b611cfc8383611bb1565b6001600160a01b0383163b15610b4a576000548281035b611d2660008683806001019450866119af565b611d43576040516368d2bf6b60e11b815260040160405180910390fd5b818110611d13578160005414611d5857600080fd5b5050505050565b6000818310611d7b5760008281526020849052604090206117a9565b5060009182526020526040902090565b6001600160e01b031981168114610baa57600080fd5b600060208284031215611db357600080fd5b81356117a981611d8b565b60005b83811015611dd9578181015183820152602001611dc1565b50506000910152565b60008151808452611dfa816020860160208601611dbe565b601f01601f19169290920160200192915050565b6020815260006117a96020830184611de2565b600060208284031215611e3357600080fd5b5035919050565b80356001600160a01b0381168114611e5157600080fd5b919050565b60008060408385031215611e6957600080fd5b611e7283611e3a565b946020939093013593505050565b600060208284031215611e9257600080fd5b81356001600160401b03811681146117a957600080fd5b600080600060608486031215611ebe57600080fd5b611ec784611e3a565b9250611ed560208501611e3a565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611f1557611f15611ee5565b604051601f8501601f19908116603f01168101908282118183101715611f3d57611f3d611ee5565b81604052809350858152868686011115611f5657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f8257600080fd5b81356001600160401b03811115611f9857600080fd5b8201601f81018413611fa957600080fd5b611a9384823560208401611efb565b80358015158114611e5157600080fd5b600060208284031215611fda57600080fd5b6117a982611fb8565b600060208284031215611ff557600080fd5b6117a982611e3a565b6000806040838503121561201157600080fd5b61201a83611e3a565b915061202860208401611fb8565b90509250929050565b6000806000806080858703121561204757600080fd5b61205085611e3a565b935061205e60208601611e3a565b92506040850135915060608501356001600160401b0381111561208057600080fd5b8501601f8101871361209157600080fd5b6120a087823560208401611efb565b91505092959194509250565b803561ffff81168114611e5157600080fd5b6000806000604084860312156120d357600080fd5b83356001600160401b03808211156120ea57600080fd5b818601915086601f8301126120fe57600080fd5b81358181111561210d57600080fd5b8760208260051b850101111561212257600080fd5b60209283019550935061213891860190506120ac565b90509250925092565b6000806040838503121561215457600080fd5b61215d83611e3a565b915061202860208401611e3a565b60006020828403121561217d57600080fd5b6117a9826120ac565b600181811c9082168061219a57607f821691505b6020821081036121ba57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600e908201526d139bdd08105d5d1a1bdc9a5e995960921b604082015260600190565b601f821115610b4a57600081815260208120601f850160051c8101602086101561220f5750805b601f850160051c820191505b81811015610a955782815560010161221b565b81516001600160401b0381111561224757612247611ee5565b61225b816122558454612186565b846121e8565b602080601f83116001811461229057600084156122785750858301515b600019600386901b1c1916600185901b178555610a95565b600085815260208120601f198616915b828110156122bf578886015182559484019460019091019084016122a0565b50858210156122dd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008084546122fb81612186565b60018281168015612313576001811461232857612357565b60ff1984168752821515830287019450612357565b8860005260208060002060005b8581101561234e5781548a820152908401908201612335565b50505082870194505b50505050835161236b818360208801611dbe565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761072257610722612384565b8082018082111561072257610722612384565b6001600160401b038181168382160190808211156123e4576123e4612384565b5092915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061241e90830184611de2565b9695505050505050565b60006020828403121561243a57600080fd5b81516117a981611d8b565b60006001820161245757612457612384565b5060010190565b634e487b7160e01b600052601260045260246000fd5b6000826124835761248361245e565b500490565b8181038181111561072257610722612384565b6000826124aa576124aa61245e565b500690565b634e487b7160e01b600052603260045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212200043a160edb8b92579d8316f8ddbe6a6cb21a46dcbc7bb7b7cd1ebc76348fcc164736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001205bcc2be3c8afb64de237ff1f2d1bfe2123cfeaf888ad14b4de16d505fd330a880000000000000000000000000bd8e94e780c4d913d0b0c4869402daded927dae000000000000000000000000000000000000000000000000000000000000000f486f757365206f6620446567656e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003484f4400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d624756507169754872743245737a57665142426f6e6a3270776467546153397168375958583445656d3659502f00000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): House of Degens
Arg [1] : symbol_ (string): HOD
Arg [2] : baseURI_ (string): ipfs://QmbGVPqiuHrt2EszWfQBBonj2pwdgTaS9qh7YXX4Eem6YP/
Arg [3] : merkleRoot_ (bytes32): 0x5bcc2be3c8afb64de237ff1f2d1bfe2123cfeaf888ad14b4de16d505fd330a88
Arg [4] : hodDeployerAddress_ (address): 0x0Bd8e94E780C4D913D0B0C4869402DaDEd927DAe
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 5bcc2be3c8afb64de237ff1f2d1bfe2123cfeaf888ad14b4de16d505fd330a88
Arg [4] : 0000000000000000000000000bd8e94e780c4d913d0b0c4869402daded927dae
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 486f757365206f6620446567656e730000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 484f440000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d624756507169754872743245737a57665142426f6e6a32
Arg [11] : 70776467546153397168375958583445656d3659502f00000000000000000000
Deployed Bytecode Sourcemap
70559:4971:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20555:639;;;;;;;;;;-1:-1:-1;20555:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20555:639:0;;;;;;;;21457:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27948:218::-;;;;;;;;;;-1:-1:-1;27948:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;27948:218:0;1533:203:1;27381:408:0;;;;;;:::i;:::-;;:::i;:::-;;72620:183;;;;;;;;;;-1:-1:-1;72620:183:0;;;;;:::i;:::-;;:::i;17208:323::-;;;;;;;;;;-1:-1:-1;73578:1:0;17482:12;17269:7;17466:13;:28;-1:-1:-1;;17466:46:0;17208:323;;;2613:25:1;;;2601:2;2586:18;17208:323:0;2467:177:1;70677:33:0;;;;;;;;;;-1:-1:-1;70677:33:0;;;;;;;;;;;31587:2825;;;;;;:::i;:::-;;:::i;70931:39::-;;;;;;;;;;;;;;;;71973:151;;;;;;;;;;-1:-1:-1;71973:151:0;;;;;:::i;:::-;;:::i;70639:33::-;;;;;;;;;;-1:-1:-1;70639:33:0;;;;;;;;71522:147;;;;;;;;;;-1:-1:-1;71522:147:0;;;;;:::i;:::-;;:::i;34508:193::-;;;;;;:::i;:::-;;:::i;75391:136::-;;;;;;;;;;-1:-1:-1;75391:136:0;;;;;:::i;:::-;;:::i;72282:160::-;;;;;;;;;;-1:-1:-1;72282:160:0;;;;;:::i;:::-;;:::i;22850:152::-;;;;;;;;;;-1:-1:-1;22850:152:0;;;;;:::i;:::-;;:::i;70755:47::-;;;;;;;;;;;;;;;;70613:21;;;;;;;;;;;;;:::i;18392:233::-;;;;;;;;;;-1:-1:-1;18392:233:0;;;;;:::i;:::-;;:::i;69708:103::-;;;;;;;;;;;;;:::i;72809:159::-;;;;;;;;;;-1:-1:-1;72809:159:0;;;;;:::i;:::-;;:::i;72448:166::-;;;;;;;;;;-1:-1:-1;72448:166:0;;;;;:::i;:::-;;:::i;70715:35::-;;;;;;;;;;-1:-1:-1;70715:35:0;;;;;;;;;;;69060:87;;;;;;;;;;-1:-1:-1;69133:6:0;;-1:-1:-1;;;;;69133:6:0;69060:87;;21633:104;;;;;;;;;;;;;:::i;72129:146::-;;;;;;;;;;-1:-1:-1;72129:146:0;;;;;:::i;:::-;;:::i;28506:234::-;;;;;;;;;;-1:-1:-1;28506:234:0;;;;;:::i;:::-;;:::i;70890:36::-;;;;;;;;;;-1:-1:-1;70890:36:0;;;;-1:-1:-1;;;70890:36:0;;-1:-1:-1;;;;;70890:36:0;;;;;;-1:-1:-1;;;;;5536:31:1;;;5518:50;;5506:2;5491:18;70890:36:0;5374:200:1;35299:407:0;;;;;;:::i;:::-;;:::i;71824:143::-;;;;;;;;;;-1:-1:-1;71824:143:0;;;;;:::i;:::-;;:::i;72974:235::-;;;;;;;;;;-1:-1:-1;72974:235:0;;;;;:::i;:::-;;:::i;73591:979::-;;;;;;:::i;:::-;;:::i;71675:143::-;;;;;;;;;;-1:-1:-1;71675:143:0;;;;;:::i;:::-;;:::i;70856:29::-;;;;;;;;;;-1:-1:-1;70856:29:0;;;;-1:-1:-1;;;;;70856:29:0;;;73215:277;;;;;;;;;;-1:-1:-1;73215:277:0;;;;;:::i;:::-;;:::i;70807:44::-;;;;;;;;;;;;;;;;28897:164;;;;;;;;;;-1:-1:-1;28897:164:0;;;;;:::i;:::-;;:::i;69966:201::-;;;;;;;;;;-1:-1:-1;69966:201:0;;;;;:::i;:::-;;:::i;74578:805::-;;;;;;:::i;:::-;;:::i;20555:639::-;20640:4;-1:-1:-1;;;;;;;;;20964:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;21041:25:0;;;20964:102;:179;;;-1:-1:-1;;;;;;;;;;21118:25:0;;;20964:179;20944:199;20555:639;-1:-1:-1;;20555:639:0:o;21457:100::-;21511:13;21544:5;21537:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21457:100;:::o;27948:218::-;28024:7;28049:16;28057:7;28049;:16::i;:::-;28044:64;;28074:34;;-1:-1:-1;;;28074:34:0;;;;;;;;;;;28044:64;-1:-1:-1;28128:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;28128:30:0;;27948:218::o;27381:408::-;27470:13;27486:16;27494:7;27486;:16::i;:::-;27470:32;-1:-1:-1;51714:10:0;-1:-1:-1;;;;;27519:28:0;;;27515:175;;27567:44;27584:5;51714:10;28897:164;:::i;27567:44::-;27562:128;;27639:35;;-1:-1:-1;;;27639:35:0;;;;;;;;;;;27562:128;27702:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;27702:35:0;-1:-1:-1;;;;;27702:35:0;;;;;;;;;27753:28;;27702:24;;27753:28;;;;;;;27459:330;27381:408;;:::o;72620:183::-;72724:5;;-1:-1:-1;;;;;72724:5:0;51714:10;-1:-1:-1;;;;;72701:28:0;;72693:55;;;;-1:-1:-1;;;72693:55:0;;;;;;;:::i;:::-;;;;;;;;;72757:18;:40;;-1:-1:-1;;;;;72757:40:0;;;-1:-1:-1;;;72757:40:0;-1:-1:-1;;72757:40:0;;;;;;;;;72620:183::o;31587:2825::-;31729:27;31759;31778:7;31759:18;:27::i;:::-;31729:57;;31844:4;-1:-1:-1;;;;;31803:45:0;31819:19;-1:-1:-1;;;;;31803:45:0;;31799:86;;31857:28;;-1:-1:-1;;;31857:28:0;;;;;;;;;;;31799:86;31899:27;30695:24;;;:15;:24;;;;;30923:26;;32090:68;30923:26;32132:4;51714:10;32138:19;-1:-1:-1;;;;;30169:32:0;;;30013:28;;30298:20;;30320:30;;30295:56;;29710:659;32090:68;32085:180;;32178:43;32195:4;51714:10;28897:164;:::i;32178:43::-;32173:92;;32230:35;;-1:-1:-1;;;32230:35:0;;;;;;;;;;;32173:92;-1:-1:-1;;;;;32282:16:0;;32278:52;;32307:23;;-1:-1:-1;;;32307:23:0;;;;;;;;;;;32278:52;32479:15;32476:160;;;32619:1;32598:19;32591:30;32476:160;-1:-1:-1;;;;;33016:24:0;;;;;;;:18;:24;;;;;;33014:26;;-1:-1:-1;;33014:26:0;;;33085:22;;;;;;;;;33083:24;;-1:-1:-1;33083:24:0;;;26239:11;26214:23;26210:41;26197:63;-1:-1:-1;;;26197:63:0;33378:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;33673:47:0;;:52;;33669:627;;33778:1;33768:11;;33746:19;33901:30;;;:17;:30;;;;;;:35;;33897:384;;34039:13;;34024:11;:28;34020:242;;34186:30;;;;:17;:30;;;;;:52;;;34020:242;33727:569;33669:627;34343:7;34339:2;-1:-1:-1;;;;;34324:27:0;34333:4;-1:-1:-1;;;;;34324:27:0;-1:-1:-1;;;;;;;;;;;34324:27:0;;;;;;;;;34362:42;31718:2694;;;31587:2825;;;:::o;71973:151::-;72067:5;;-1:-1:-1;;;;;72067:5:0;51714:10;-1:-1:-1;;;;;72044:28:0;;72036:55;;;;-1:-1:-1;;;72036:55:0;;;;;;;:::i;:::-;72100:7;:18;72110:8;72100:7;:18;:::i;:::-;;71973:151;:::o;71522:147::-;71608:5;;-1:-1:-1;;;;;71608:5:0;51714:10;-1:-1:-1;;;;;71585:28:0;;71577:55;;;;-1:-1:-1;;;71577:55:0;;;;;;;:::i;:::-;71639:15;:24;;;;;;;-1:-1:-1;;71639:24:0;;;;;;;;;71522:147::o;34508:193::-;34654:39;34671:4;34677:2;34681:7;34654:39;;;;;;;;;;;;:16;:39::i;:::-;34508:193;;;:::o;75391:136::-;75448:13;;;;;;;75440:48;;;;-1:-1:-1;;;75440:48:0;;10701:2:1;75440:48:0;;;10683:21:1;10740:2;10720:18;;;10713:30;-1:-1:-1;;;10759:18:1;;;10752:52;10821:18;;75440:48:0;10499:346:1;75440:48:0;75499:20;75505:7;75514:4;75499:5;:20::i;:::-;75391:136;:::o;72282:160::-;72375:5;;-1:-1:-1;;;;;72375:5:0;51714:10;-1:-1:-1;;;;;72352:28:0;;72344:55;;;;-1:-1:-1;;;72344:55:0;;;;;;;:::i;:::-;72408:15;:28;72282:160::o;22850:152::-;22922:7;22965:27;22984:7;22965:18;:27::i;70613:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18392:233::-;18464:7;-1:-1:-1;;;;;18488:19:0;;18484:60;;18516:28;;-1:-1:-1;;;18516:28:0;;;;;;;;;;;18484:60;-1:-1:-1;;;;;;18562:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;18562:55:0;;18392:233::o;69708:103::-;68946:13;:11;:13::i;:::-;69773:30:::1;69800:1;69773:18;:30::i;:::-;69708:103::o:0;72809:159::-;72896:5;;-1:-1:-1;;;;;72896:5:0;51714:10;-1:-1:-1;;;;;72873:28:0;;72865:55;;;;-1:-1:-1;;;72865:55:0;;;;;;;:::i;:::-;72929:19;:32;72809:159::o;72448:166::-;72544:5;;-1:-1:-1;;;;;72544:5:0;51714:10;-1:-1:-1;;;;;72521:28:0;;72513:55;;;;-1:-1:-1;;;72513:55:0;;;;;;;:::i;:::-;72577:18;:31;72448:166::o;21633:104::-;21689:13;21722:7;21715:14;;;;;:::i;72129:146::-;72215:5;;-1:-1:-1;;;;;72215:5:0;51714:10;-1:-1:-1;;;;;72192:28:0;;72184:55;;;;-1:-1:-1;;;72184:55:0;;;;;;;:::i;:::-;72248:9;:21;;-1:-1:-1;;72248:21:0;-1:-1:-1;;;;;72248:21:0;;;;;;;;;;72129:146::o;28506:234::-;51714:10;28601:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28601:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28601:60:0;;;;;;;;;;28677:55;;540:41:1;;;28601:49:0;;51714:10;28677:55;;513:18:1;28677:55:0;;;;;;;28506:234;;:::o;35299:407::-;35474:31;35487:4;35493:2;35497:7;35474:12;:31::i;:::-;-1:-1:-1;;;;;35520:14:0;;;:19;35516:183;;35559:56;35590:4;35596:2;35600:7;35609:5;35559:30;:56::i;:::-;35554:145;;35643:40;;-1:-1:-1;;;35643:40:0;;;;;;;;;;;35554:145;35299:407;;;;:::o;71824:143::-;71908:5;;-1:-1:-1;;;;;71908:5:0;51714:10;-1:-1:-1;;;;;71885:28:0;;71877:55;;;;-1:-1:-1;;;71877:55:0;;;;;;;:::i;:::-;71939:13;:22;;;;;;;-1:-1:-1;;71939:22:0;;;;;;;;;71824:143::o;72974:235::-;73047:13;73077:16;73085:7;73077;:16::i;:::-;73069:49;;;;-1:-1:-1;;;73069:49:0;;11052:2:1;73069:49:0;;;11034:21:1;11091:2;11071:18;;;11064:30;-1:-1:-1;;;11110:18:1;;;11103:50;11170:18;;73069:49:0;10850:344:1;73069:49:0;73158:7;73167:25;73184:7;73167:16;:25::i;:::-;73141:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73127:76;;72974:235;;;:::o;73591:979::-;55270:1;55868:7;;:19;55860:63;;;;-1:-1:-1;;;55860:63:0;;12593:2:1;55860:63:0;;;12575:21:1;12632:2;12612:18;;;12605:30;12671:33;12651:18;;;12644:61;12722:18;;55860:63:0;12391:355:1;55860:63:0;55270:1;56001:7;:18;73766:15:::1;::::0;;;::::1;;;73758:58;;;::::0;-1:-1:-1;;;73758:58:0;;12953:2:1;73758:58:0::1;::::0;::::1;12935:21:1::0;12992:2;12972:18;;;12965:30;13031:32;13011:18;;;13004:60;13081:18;;73758:58:0::1;12751:354:1::0;73758:58:0::1;73869:6;73848:27;;:18;;:27;;;;:::i;:::-;73835:9;:40;73827:83;;;::::0;-1:-1:-1;;;73827:83:0;;13617:2:1;73827:83:0::1;::::0;::::1;13599:21:1::0;13656:2;13636:18;;;13629:30;13695:32;13675:18;;;13668:60;13745:18;;73827:83:0::1;13415:354:1::0;73827:83:0::1;73956:9;::::0;-1:-1:-1;;;;;73956:9:0::1;73929:23;::::0;::::1;:14;17684:7:::0;17875:13;-1:-1:-1;;17875:31:0;;17629:296;73929:14:::1;:23;;;;:::i;:::-;:36;;73921:71;;;::::0;-1:-1:-1;;;73921:71:0;;14106:2:1;73921:71:0::1;::::0;::::1;14088:21:1::0;14145:2;14125:18;;;14118:30;-1:-1:-1;;;14164:18:1;;;14157:52;14226:18;;73921:71:0::1;13904:346:1::0;73921:71:0::1;74005:24;74032:37;::::0;::::1;:28;51714:10:::0;74040:19:::1;-1:-1:-1::0;;;;;19367:25:0;19334:6;19367:25;;;:18;:25;;;;;;12925:3;19367:40;;19279:137;74032:28:::1;:37;;;;:::i;:::-;74109:18;::::0;74005:64;;-1:-1:-1;;;;;;;;;74109:18:0;;::::1;::::0;::::1;74088:39:::0;;::::1;;;74080:73;;;::::0;-1:-1:-1;;;74080:73:0;;14642:2:1;74080:73:0::1;::::0;::::1;14624:21:1::0;14681:2;14661:18;;;14654:30;-1:-1:-1;;;14700:18:1;;;14693:51;14761:18;;74080:73:0::1;14440:345:1::0;74080:73:0::1;74188:168;74225:11;;74188:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;74255:19:0::1;::::0;74303:37:::1;::::0;-1:-1:-1;;51714:10:0;14939:2:1;14935:15;14931:53;74303:37:0::1;::::0;::::1;14919:66:1::0;74255:19:0;;-1:-1:-1;15001:12:1;;;-1:-1:-1;74303:37:0::1;;;;;;;;;;;;74293:48;;;;;;74188:18;:168::i;:::-;74166:242;;;::::0;-1:-1:-1;;;74166:242:0;;15226:2:1;74166:242:0::1;::::0;::::1;15208:21:1::0;15265:2;15245:18;;;15238:30;15304:26;15284:18;;;15277:54;15348:18;;74166:242:0::1;15024:348:1::0;74166:242:0::1;74421:18;::::0;:38:::1;::::0;-1:-1:-1;;;;;74421:18:0;;::::1;::::0;74449:9:::1;74421:38:::0;::::1;;;::::0;:18:::1;:38:::0;:18;:38;74449:9;74421:18;:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;74470:34:0::1;51714:10:::0;74476:19:::1;74497:6;74470:34;;:5;:34::i;:::-;74515:47;51714:10:::0;74523:19:::1;-1:-1:-1::0;;;;;19693:25:0;19676:14;19693:25;;;:18;:25;;;;;;;-1:-1:-1;;;;;19893:32:0;12925:3;19930:24;;;19892:63;19966:34;;19604:404;74515:47:::1;-1:-1:-1::0;;55226:1:0;56180:7;:22;-1:-1:-1;;73591:979:0:o;71675:143::-;71759:5;;-1:-1:-1;;;;;71759:5:0;51714:10;-1:-1:-1;;;;;71736:28:0;;71728:55;;;;-1:-1:-1;;;71728:55:0;;;;;;;:::i;:::-;71790:13;:22;;-1:-1:-1;;71790:22:0;;;;;;;;;;71675:143::o;73215:277::-;68946:13;:11;:13::i;:::-;73296::::1;::::0;::::1;::::0;::::1;;;73288:48;;;::::0;-1:-1:-1;;;73288:48:0;;10701:2:1;73288:48:0::1;::::0;::::1;10683:21:1::0;10740:2;10720:18;;;10713:30;-1:-1:-1;;;10759:18:1;;;10752:52;10821:18;;73288:48:0::1;10499:346:1::0;73288:48:0::1;73375:9;::::0;-1:-1:-1;;;;;73375:9:0::1;73367:4:::0;73351:13:::1;73578:1:::0;17482:12;17269:7;17466:13;-1:-1:-1;;17466:28:0;;;:46;;17208:323;73351:13:::1;:20;;;;:::i;:::-;:33;;73343:77;;;::::0;-1:-1:-1;;;73343:77:0;;15579:2:1;73343:77:0::1;::::0;::::1;15561:21:1::0;15618:2;15598:18;;;15591:30;15657:33;15637:18;;;15630:61;15708:18;;73343:77:0::1;15377:355:1::0;73343:77:0::1;73427:59;73437:42;73481:4;73427:9;:59::i;28897:164::-:0;-1:-1:-1;;;;;29018:25:0;;;28994:4;29018:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28897:164::o;69966:201::-;68946:13;:11;:13::i;:::-;-1:-1:-1;;;;;70055:22:0;::::1;70047:73;;;::::0;-1:-1:-1;;;70047:73:0;;15939:2:1;70047:73:0::1;::::0;::::1;15921:21:1::0;15978:2;15958:18;;;15951:30;16017:34;15997:18;;;15990:62;-1:-1:-1;;;16068:18:1;;;16061:36;16114:19;;70047:73:0::1;15737:402:1::0;70047:73:0::1;70131:28;70150:8;70131:18;:28::i;74578:805::-:0;55270:1;55868:7;;:19;55860:63;;;;-1:-1:-1;;;55860:63:0;;12593:2:1;55860:63:0;;;12575:21:1;12632:2;12612:18;;;12605:30;12671:33;12651:18;;;12644:61;12722:18;;55860:63:0;12391:355:1;55860:63:0;55270:1;56001:7;:18;74718:13:::1;::::0;::::1;;74710:45;;;::::0;-1:-1:-1;;;74710:45:0;;16346:2:1;74710:45:0::1;::::0;::::1;16328:21:1::0;16385:2;16365:18;;;16358:30;-1:-1:-1;;;16404:18:1;;;16397:49;16463:18;;74710:45:0::1;16144:343:1::0;74710:45:0::1;74805:6;74787:24;;:15;;:24;;;;:::i;:::-;74774:9;:37;74766:80;;;::::0;-1:-1:-1;;;74766:80:0;;13617:2:1;74766:80:0::1;::::0;::::1;13599:21:1::0;13656:2;13636:18;;;13629:30;13695:32;13675:18;;;13668:60;13745:18;;74766:80:0::1;13415:354:1::0;74766:80:0::1;74892:9;::::0;-1:-1:-1;;;;;74892:9:0::1;74865:23;::::0;::::1;:14;17684:7:::0;17875:13;-1:-1:-1;;17875:31:0;;17629:296;74865:14:::1;:23;;;;:::i;:::-;:36;;74857:71;;;::::0;-1:-1:-1;;;74857:71:0;;14106:2:1;74857:71:0::1;::::0;::::1;14088:21:1::0;14145:2;14125:18;;;14118:30;-1:-1:-1;;;14164:18:1;;;14157:52;14226:18;;74857:71:0::1;13904:346:1::0;74857:71:0::1;74941:24;74968:37;::::0;::::1;:28;51714:10:::0;74976:19:::1;51627:105:::0;74968:28:::1;:37;;;;:::i;:::-;75045:18;::::0;74941:64;;-1:-1:-1;;;;;;;;;75045:18:0;;::::1;::::0;::::1;75024:39:::0;;::::1;;;75016:73;;;::::0;-1:-1:-1;;;75016:73:0;;14642:2:1;75016:73:0::1;::::0;::::1;14624:21:1::0;14681:2;14661:18;;;14654:30;-1:-1:-1;;;14700:18:1;;;14693:51;14761:18;;75016:73:0::1;14440:345:1::0;75016:73:0::1;75161:18;::::0;-1:-1:-1;;;75161:18:0;::::1;-1:-1:-1::0;;;;;75161:18:0::1;75118:39;::::0;::::1;:30;51714:10:::0;18392:233;:::i;75118:30::-:1;:39;;;;:::i;:::-;:61;;75110:103;;;::::0;-1:-1:-1;;;75110:103:0;;16694:2:1;75110:103:0::1;::::0;::::1;16676:21:1::0;16733:2;16713:18;;;16706:30;16772:31;16752:18;;;16745:59;16821:18;;75110:103:0::1;16492:353:1::0;75110:103:0::1;75234:18;::::0;:38:::1;::::0;-1:-1:-1;;;;;75234:18:0;;::::1;::::0;75262:9:::1;75234:38:::0;::::1;;;::::0;:18:::1;:38:::0;:18;:38;75262:9;75234:18;:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;75283:34:0::1;51714:10:::0;75289:19:::1;51627:105:::0;75283:34:::1;75328:47;51714:10:::0;75336:19:::1;51627:105:::0;75328:47:::1;-1:-1:-1::0;;55226:1:0;56180:7;:22;74578:805::o;29319:282::-;29384:4;29440:7;73578:1;29421:26;;:66;;;;;29474:13;;29464:7;:23;29421:66;:153;;;;-1:-1:-1;;29525:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;29525:44:0;:49;;29319:282::o;24005:1275::-;24072:7;24107;;73578:1;24156:23;24152:1061;;24209:13;;24202:4;:20;24198:1015;;;24247:14;24264:23;;;:17;:23;;;;;;;-1:-1:-1;;;24353:24:0;;:29;;24349:845;;25018:113;25025:6;25035:1;25025:11;25018:113;;-1:-1:-1;;;25096:6:0;25078:25;;;;:17;:25;;;;;;25018:113;;;25164:6;24005:1275;-1:-1:-1;;;24005:1275:0:o;24349:845::-;24224:989;24198:1015;25241:31;;-1:-1:-1;;;25241:31:0;;;;;;;;;;;46156:3081;46236:27;46266;46285:7;46266:18;:27::i;:::-;46236:57;-1:-1:-1;46236:57:0;46306:12;;46428:35;46455:7;30584:27;30695:24;;;:15;:24;;;;;30923:26;;30695:24;;30482:485;46428:35;46371:92;;;;46480:13;46476:316;;;46601:68;46626:15;46643:4;51714:10;46649:19;51627:105;46601:68;46596:184;;46693:43;46710:4;51714:10;28897:164;:::i;46693:43::-;46688:92;;46745:35;;-1:-1:-1;;;46745:35:0;;;;;;;;;;;46688:92;46948:15;46945:160;;;47088:1;47067:19;47060:30;46945:160;-1:-1:-1;;;;;47707:24:0;;;;;;:18;:24;;;;;:60;;47735:32;47707:60;;;26239:11;26214:23;26210:41;26197:63;-1:-1:-1;;;26197:63:0;48005:26;;;;:17;:26;;;;;:205;;;;-1:-1:-1;;;48330:47:0;;:52;;48326:627;;48435:1;48425:11;;48403:19;48558:30;;;:17;:30;;;;;;:35;;48554:384;;48696:13;;48681:11;:28;48677:242;;48843:30;;;;:17;:30;;;;;:52;;;48677:242;48384:569;48326:627;48981:35;;49008:7;;49004:1;;-1:-1:-1;;;;;48981:35:0;;;-1:-1:-1;;;;;;;;;;;48981:35:0;49004:1;;48981:35;-1:-1:-1;;49204:12:0;:14;;;;;;-1:-1:-1;;;;46156:3081:0:o;69225:132::-;69133:6;;-1:-1:-1;;;;;69133:6:0;51714:10;69289:23;69281:68;;;;-1:-1:-1;;;69281:68:0;;17052:2:1;69281:68:0;;;17034:21:1;;;17071:18;;;17064:30;17130:34;17110:18;;;17103:62;17182:18;;69281:68:0;16850:356:1;70327:191:0;70420:6;;;-1:-1:-1;;;;;70437:17:0;;;-1:-1:-1;;;;;;70437:17:0;;;;;;;70470:40;;70420:6;;;70437:17;70420:6;;70470:40;;70401:16;;70470:40;70390:128;70327:191;:::o;37790:716::-;37974:88;;-1:-1:-1;;;37974:88:0;;37953:4;;-1:-1:-1;;;;;37974:45:0;;;;;:88;;51714:10;;38041:4;;38047:7;;38056:5;;37974:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37974:88:0;;;;;;;;-1:-1:-1;;37974:88:0;;;;;;;;;;;;:::i;:::-;;;37970:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38257:6;:13;38274:1;38257:18;38253:235;;38303:40;;-1:-1:-1;;;38303:40:0;;;;;;;;;;;38253:235;38446:6;38440:13;38431:6;38427:2;38423:15;38416:38;37970:529;-1:-1:-1;;;;;;38133:64:0;-1:-1:-1;;;38133:64:0;;-1:-1:-1;37970:529:0;37790:716;;;;;;:::o;65096:723::-;65152:13;65373:5;65382:1;65373:10;65369:53;;-1:-1:-1;;65400:10:0;;;;;;;;;;;;-1:-1:-1;;;65400:10:0;;;;;65096:723::o;65369:53::-;65447:5;65432:12;65488:78;65495:9;;65488:78;;65521:8;;;;:::i;:::-;;-1:-1:-1;65544:10:0;;-1:-1:-1;65552:2:0;65544:10;;:::i;:::-;;;65488:78;;;65576:19;65608:6;-1:-1:-1;;;;;65598:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65598:17:0;;65576:39;;65626:154;65633:10;;65626:154;;65660:11;65670:1;65660:11;;:::i;:::-;;-1:-1:-1;65729:10:0;65737:2;65729:5;:10;:::i;:::-;65716:24;;:2;:24;:::i;:::-;65703:39;;65686:6;65693;65686:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;65686:56:0;;;;;;;;-1:-1:-1;65757:11:0;65766:2;65757:11;;:::i;:::-;;;65626:154;;57281:190;57406:4;57459;57430:25;57443:5;57450:4;57430:12;:25::i;:::-;:33;;57281:190;-1:-1:-1;;;;57281:190:0:o;38968:2966::-;39041:20;39064:13;;;39092;;;39088:44;;39114:18;;-1:-1:-1;;;39114:18:0;;;;;;;;;;;39088:44;-1:-1:-1;;;;;39620:22:0;;;;;;:18;:22;;;;12689:2;39620:22;;;:71;;39658:32;39646:45;;39620:71;;;39934:31;;;:17;:31;;;;;-1:-1:-1;26670:15:0;;26644:24;26640:46;26239:11;26214:23;26210:41;26207:52;26197:63;;39934:173;;40169:23;;;;39934:31;;39620:22;;-1:-1:-1;;;;;;;;;;;39620:22:0;;40787:335;41448:1;41434:12;41430:20;41388:346;41489:3;41480:7;41477:16;41388:346;;41707:7;41697:8;41694:1;-1:-1:-1;;;;;;;;;;;41664:1:0;41661;41656:59;41542:1;41529:15;41388:346;;;41392:77;41767:8;41779:1;41767:13;41763:45;;41789:19;;-1:-1:-1;;;41789:19:0;;;;;;;;;;;41763:45;41825:13;:19;-1:-1:-1;34508:193:0;;;:::o;45459:112::-;45536:27;45546:2;45550:8;45536:27;;;;;;;;;;;;:9;:27::i;58148:296::-;58231:7;58274:4;58231:7;58289:118;58313:5;:12;58309:1;:16;58289:118;;;58362:33;58372:12;58386:5;58392:1;58386:8;;;;;;;;:::i;:::-;;;;;;;58362:9;:33::i;:::-;58347:48;-1:-1:-1;58327:3:0;;;;:::i;:::-;;;;58289:118;;;-1:-1:-1;58424:12:0;58148:296;-1:-1:-1;;;58148:296:0:o;44686:689::-;44817:19;44823:2;44827:8;44817:5;:19::i;:::-;-1:-1:-1;;;;;44878:14:0;;;:19;44874:483;;44918:11;44932:13;44980:14;;;45013:233;45044:62;45083:1;45087:2;45091:7;;;;;;45100:5;45044:30;:62::i;:::-;45039:167;;45142:40;;-1:-1:-1;;;45142:40:0;;;;;;;;;;;45039:167;45241:3;45233:5;:11;45013:233;;45328:3;45311:13;;:20;45307:34;;45333:8;;;45307:34;44899:458;;44686:689;;;:::o;64355:149::-;64418:7;64449:1;64445;:5;:51;;64580:13;64674:15;;;64710:4;64703:15;;;64757:4;64741:21;;64445:51;;;-1:-1:-1;64580:13:0;64674:15;;;64710:4;64703:15;64757:4;64741:21;;;64355:149::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:284::-;2236:6;2289:2;2277:9;2268:7;2264:23;2260:32;2257:52;;;2305:1;2302;2295:12;2257:52;2344:9;2331:23;-1:-1:-1;;;;;2387:5:1;2383:30;2376:5;2373:41;2363:69;;2428:1;2425;2418:12;2649:328;2726:6;2734;2742;2795:2;2783:9;2774:7;2770:23;2766:32;2763:52;;;2811:1;2808;2801:12;2763:52;2834:29;2853:9;2834:29;:::i;:::-;2824:39;;2882:38;2916:2;2905:9;2901:18;2882:38;:::i;:::-;2872:48;;2967:2;2956:9;2952:18;2939:32;2929:42;;2649:328;;;;;:::o;3164:127::-;3225:10;3220:3;3216:20;3213:1;3206:31;3256:4;3253:1;3246:15;3280:4;3277:1;3270:15;3296:632;3361:5;-1:-1:-1;;;;;3432:2:1;3424:6;3421:14;3418:40;;;3438:18;;:::i;:::-;3513:2;3507:9;3481:2;3567:15;;-1:-1:-1;;3563:24:1;;;3589:2;3559:33;3555:42;3543:55;;;3613:18;;;3633:22;;;3610:46;3607:72;;;3659:18;;:::i;:::-;3699:10;3695:2;3688:22;3728:6;3719:15;;3758:6;3750;3743:22;3798:3;3789:6;3784:3;3780:16;3777:25;3774:45;;;3815:1;3812;3805:12;3774:45;3865:6;3860:3;3853:4;3845:6;3841:17;3828:44;3920:1;3913:4;3904:6;3896;3892:19;3888:30;3881:41;;;;3296:632;;;;;:::o;3933:451::-;4002:6;4055:2;4043:9;4034:7;4030:23;4026:32;4023:52;;;4071:1;4068;4061:12;4023:52;4111:9;4098:23;-1:-1:-1;;;;;4136:6:1;4133:30;4130:50;;;4176:1;4173;4166:12;4130:50;4199:22;;4252:4;4244:13;;4240:27;-1:-1:-1;4230:55:1;;4281:1;4278;4271:12;4230:55;4304:74;4370:7;4365:2;4352:16;4347:2;4343;4339:11;4304:74;:::i;4389:160::-;4454:20;;4510:13;;4503:21;4493:32;;4483:60;;4539:1;4536;4529:12;4554:180;4610:6;4663:2;4651:9;4642:7;4638:23;4634:32;4631:52;;;4679:1;4676;4669:12;4631:52;4702:26;4718:9;4702:26;:::i;4739:186::-;4798:6;4851:2;4839:9;4830:7;4826:23;4822:32;4819:52;;;4867:1;4864;4857:12;4819:52;4890:29;4909:9;4890:29;:::i;5115:254::-;5180:6;5188;5241:2;5229:9;5220:7;5216:23;5212:32;5209:52;;;5257:1;5254;5247:12;5209:52;5280:29;5299:9;5280:29;:::i;:::-;5270:39;;5328:35;5359:2;5348:9;5344:18;5328:35;:::i;:::-;5318:45;;5115:254;;;;;:::o;5579:667::-;5674:6;5682;5690;5698;5751:3;5739:9;5730:7;5726:23;5722:33;5719:53;;;5768:1;5765;5758:12;5719:53;5791:29;5810:9;5791:29;:::i;:::-;5781:39;;5839:38;5873:2;5862:9;5858:18;5839:38;:::i;:::-;5829:48;;5924:2;5913:9;5909:18;5896:32;5886:42;;5979:2;5968:9;5964:18;5951:32;-1:-1:-1;;;;;5998:6:1;5995:30;5992:50;;;6038:1;6035;6028:12;5992:50;6061:22;;6114:4;6106:13;;6102:27;-1:-1:-1;6092:55:1;;6143:1;6140;6133:12;6092:55;6166:74;6232:7;6227:2;6214:16;6209:2;6205;6201:11;6166:74;:::i;:::-;6156:84;;;5579:667;;;;;;;:::o;6251:159::-;6318:20;;6378:6;6367:18;;6357:29;;6347:57;;6400:1;6397;6390:12;6415:693;6509:6;6517;6525;6578:2;6566:9;6557:7;6553:23;6549:32;6546:52;;;6594:1;6591;6584:12;6546:52;6634:9;6621:23;-1:-1:-1;;;;;6704:2:1;6696:6;6693:14;6690:34;;;6720:1;6717;6710:12;6690:34;6758:6;6747:9;6743:22;6733:32;;6803:7;6796:4;6792:2;6788:13;6784:27;6774:55;;6825:1;6822;6815:12;6774:55;6865:2;6852:16;6891:2;6883:6;6880:14;6877:34;;;6907:1;6904;6897:12;6877:34;6962:7;6955:4;6945:6;6942:1;6938:14;6934:2;6930:23;6926:34;6923:47;6920:67;;;6983:1;6980;6973:12;6920:67;7014:4;7006:13;;;;-1:-1:-1;7038:6:1;-1:-1:-1;7063:39:1;;7081:20;;;-1:-1:-1;7063:39:1;:::i;:::-;7053:49;;6415:693;;;;;:::o;7113:260::-;7181:6;7189;7242:2;7230:9;7221:7;7217:23;7213:32;7210:52;;;7258:1;7255;7248:12;7210:52;7281:29;7300:9;7281:29;:::i;:::-;7271:39;;7329:38;7363:2;7352:9;7348:18;7329:38;:::i;7378:184::-;7436:6;7489:2;7477:9;7468:7;7464:23;7460:32;7457:52;;;7505:1;7502;7495:12;7457:52;7528:28;7546:9;7528:28;:::i;7567:380::-;7646:1;7642:12;;;;7689;;;7710:61;;7764:4;7756:6;7752:17;7742:27;;7710:61;7817:2;7809:6;7806:14;7786:18;7783:38;7780:161;;7863:10;7858:3;7854:20;7851:1;7844:31;7898:4;7895:1;7888:15;7926:4;7923:1;7916:15;7780:161;;7567:380;;;:::o;7952:338::-;8154:2;8136:21;;;8193:2;8173:18;;;8166:30;-1:-1:-1;;;8227:2:1;8212:18;;8205:44;8281:2;8266:18;;7952:338::o;8421:545::-;8523:2;8518:3;8515:11;8512:448;;;8559:1;8584:5;8580:2;8573:17;8629:4;8625:2;8615:19;8699:2;8687:10;8683:19;8680:1;8676:27;8670:4;8666:38;8735:4;8723:10;8720:20;8717:47;;;-1:-1:-1;8758:4:1;8717:47;8813:2;8808:3;8804:12;8801:1;8797:20;8791:4;8787:31;8777:41;;8868:82;8886:2;8879:5;8876:13;8868:82;;;8931:17;;;8912:1;8901:13;8868:82;;9142:1352;9268:3;9262:10;-1:-1:-1;;;;;9287:6:1;9284:30;9281:56;;;9317:18;;:::i;:::-;9346:97;9436:6;9396:38;9428:4;9422:11;9396:38;:::i;:::-;9390:4;9346:97;:::i;:::-;9498:4;;9562:2;9551:14;;9579:1;9574:663;;;;10281:1;10298:6;10295:89;;;-1:-1:-1;10350:19:1;;;10344:26;10295:89;-1:-1:-1;;9099:1:1;9095:11;;;9091:24;9087:29;9077:40;9123:1;9119:11;;;9074:57;10397:81;;9544:944;;9574:663;8368:1;8361:14;;;8405:4;8392:18;;-1:-1:-1;;9610:20:1;;;9728:236;9742:7;9739:1;9736:14;9728:236;;;9831:19;;;9825:26;9810:42;;9923:27;;;;9891:1;9879:14;;;;9758:19;;9728:236;;;9732:3;9992:6;9983:7;9980:19;9977:201;;;10053:19;;;10047:26;-1:-1:-1;;10136:1:1;10132:14;;;10148:3;10128:24;10124:37;10120:42;10105:58;10090:74;;9977:201;-1:-1:-1;;;;;10224:1:1;10208:14;;;10204:22;10191:36;;-1:-1:-1;9142:1352:1:o;11199:1187::-;11476:3;11505:1;11538:6;11532:13;11568:36;11594:9;11568:36;:::i;:::-;11623:1;11640:18;;;11667:133;;;;11814:1;11809:356;;;;11633:532;;11667:133;-1:-1:-1;;11700:24:1;;11688:37;;11773:14;;11766:22;11754:35;;11745:45;;;-1:-1:-1;11667:133:1;;11809:356;11840:6;11837:1;11830:17;11870:4;11915:2;11912:1;11902:16;11940:1;11954:165;11968:6;11965:1;11962:13;11954:165;;;12046:14;;12033:11;;;12026:35;12089:16;;;;11983:10;;11954:165;;;11958:3;;;12148:6;12143:3;12139:16;12132:23;;11633:532;;;;;12196:6;12190:13;12212:68;12271:8;12266:3;12259:4;12251:6;12247:17;12212:68;:::i;:::-;-1:-1:-1;;;12302:18:1;;12329:22;;;12378:1;12367:13;;11199:1187;-1:-1:-1;;;;11199:1187:1:o;13110:127::-;13171:10;13166:3;13162:20;13159:1;13152:31;13202:4;13199:1;13192:15;13226:4;13223:1;13216:15;13242:168;13315:9;;;13346;;13363:15;;;13357:22;;13343:37;13333:71;;13384:18;;:::i;13774:125::-;13839:9;;;13860:10;;;13857:36;;;13873:18;;:::i;14255:180::-;-1:-1:-1;;;;;14360:10:1;;;14372;;;14356:27;;14395:11;;;14392:37;;;14409:18;;:::i;:::-;14392:37;14255:180;;;;:::o;17211:489::-;-1:-1:-1;;;;;17480:15:1;;;17462:34;;17532:15;;17527:2;17512:18;;17505:43;17579:2;17564:18;;17557:34;;;17627:3;17622:2;17607:18;;17600:31;;;17405:4;;17648:46;;17674:19;;17666:6;17648:46;:::i;:::-;17640:54;17211:489;-1:-1:-1;;;;;;17211:489:1:o;17705:249::-;17774:6;17827:2;17815:9;17806:7;17802:23;17798:32;17795:52;;;17843:1;17840;17833:12;17795:52;17875:9;17869:16;17894:30;17918:5;17894:30;:::i;17959:135::-;17998:3;18019:17;;;18016:43;;18039:18;;:::i;:::-;-1:-1:-1;18086:1:1;18075:13;;17959:135::o;18099:127::-;18160:10;18155:3;18151:20;18148:1;18141:31;18191:4;18188:1;18181:15;18215:4;18212:1;18205:15;18231:120;18271:1;18297;18287:35;;18302:18;;:::i;:::-;-1:-1:-1;18336:9:1;;18231:120::o;18356:128::-;18423:9;;;18444:11;;;18441:37;;;18458:18;;:::i;18489:112::-;18521:1;18547;18537:35;;18552:18;;:::i;:::-;-1:-1:-1;18586:9:1;;18489:112::o;18606:127::-;18667:10;18662:3;18658:20;18655:1;18648:31;18698:4;18695:1;18688:15;18722:4;18719:1;18712:15
Swarm Source
ipfs://0043a160edb8b92579d8316f8ddbe6a6cb21a46dcbc7bb7b7cd1ebc76348fcc1
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.