ERC-721
Overview
Max Total Supply
372 AiCats
Holders
277
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 AiCatsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AiCats
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-14 */ // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) 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; } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) 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) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Ai Cats.sol pragma solidity >=0.7.0 <0.9.0; contract AiCats is ERC721A, Ownable, ReentrancyGuard { /// ERRORS /// error ContractMint(); error OutOfSupply(); error ExceedsTxnLimit(); error ExceedsWalletLimit(); error InsufficientFunds(); error MintPaused(); error MintInactive(); error InvalidProof(); error InvalidQuantity(); error InexistentToken(); /// @dev For URI concatenation. using Strings for uint256; bytes32 public merkleRoot; string public baseURI = "ipfs://QmNvBisVmqLLpZ1MmwPU2P5V4SW9M43Lgv7M5aQxEgK2xP/"; uint32 saleStartTime; uint256 public PRICE = 0.004 ether; uint256 public SUPPLY_MAX; uint256 public SUPPLY_MAX_WHITELIST; uint256 public MAX_PER_TXN = 5; uint256 public teamReserve = 0; uint256 public whitelistMints; bool public presalePaused; bool public publicSalePaused; bool public revealed = true; constructor( string memory _name, string memory _symbol ) ERC721A(_name, _symbol) payable { _safeMint(msg.sender, 1); SUPPLY_MAX = 777; SUPPLY_MAX_WHITELIST = 222; saleStartTime = 1663008256; } modifier mintCompliance(uint256 _mintAmount) { if (block.timestamp < saleStartTime) revert MintInactive(); if (msg.sender != tx.origin) revert ContractMint(); if ((totalSupply() + _mintAmount) > (SUPPLY_MAX - teamReserve)) revert OutOfSupply(); if (_mintAmount > MAX_PER_TXN) revert ExceedsTxnLimit(); if ((_numberMinted(msg.sender) + _mintAmount) > MAX_PER_TXN) revert ExceedsWalletLimit(); _; } function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) external payable nonReentrant mintCompliance(_mintAmount) { if (_mintAmount < 1) revert InvalidQuantity(); if (presalePaused) revert MintPaused(); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); if (!MerkleProof.verify(_merkleProof, merkleRoot, leaf)) revert InvalidProof(); bool inSupply = whitelistMints < SUPPLY_MAX_WHITELIST; bool eligibleForFreeMint = _numberMinted(msg.sender) == 0; /// @dev Handle edge case. if (!inSupply) { if (eligibleForFreeMint) { if (_mintAmount > 1) { if (msg.value < (PRICE * (_mintAmount - 1))) revert InsufficientFunds(); _safeMint(msg.sender, (_mintAmount - 1)); } else { revert OutOfSupply(); } } else { if (msg.value < (PRICE * _mintAmount)) revert InsufficientFunds(); _safeMint(msg.sender, _mintAmount); } } else { uint256 quant = eligibleForFreeMint ? (_mintAmount - 1) : _mintAmount; if (msg.value < (PRICE * quant)) revert InsufficientFunds(); _safeMint(msg.sender, _mintAmount); if (eligibleForFreeMint) ++whitelistMints; } } function mint(uint256 _mintAmount) external payable nonReentrant mintCompliance(_mintAmount) { if (publicSalePaused) revert MintPaused(); if (msg.value < (PRICE * _mintAmount)) revert InsufficientFunds(); _safeMint(msg.sender, _mintAmount); } /// @notice Airdrop to a single wallet. function mintForAddress(uint256 _mintAmount, address _receiver) external onlyOwner { unchecked { teamReserve -= _mintAmount; } _safeMint(_receiver, _mintAmount); } /// @notice Airdrops to multiple wallets. function batchMintForAddress(address[] calldata addresses, uint256[] calldata quantities) external onlyOwner { uint32 i; unchecked { for (i=0; i < addresses.length; ++i) { teamReserve -= quantities[i]; _safeMint(addresses[i], quantities[i]); } } } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function numberMinted(address userAddress) external view virtual returns (uint256) { return _numberMinted(userAddress); } /// SETTERS /// function setRevealed() external onlyOwner { revealed = true; } function pausePublicSale(bool _state) external onlyOwner { publicSalePaused = _state; } function pausePresale(bool _state) external onlyOwner { presalePaused = _state; } function setSaleStartTime(uint32 startTime_) external onlyOwner { saleStartTime = startTime_; } function setMerkleRoot(bytes32 merkleRoot_) external onlyOwner { merkleRoot = merkleRoot_; } function setPrice(uint256 _price) external onlyOwner { PRICE = _price; } function setPublicMaxSupply(uint256 _supply) external onlyOwner { SUPPLY_MAX = _supply; } function setWhitelistMaxSupply(uint256 _supply) external onlyOwner { SUPPLY_MAX_WHITELIST = _supply; } function setTeamReserves(uint256 _reserve) external onlyOwner { teamReserve = _reserve; } function withdraw() external onlyOwner { payable(owner()).transfer(address(this).balance); } /// METADATA URI /// function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } /// @dev Returning concatenated URI with .json as suffix on the tokenID when revealed. function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { if (!_exists(_tokenId)) revert InexistentToken(); if (!revealed) return _baseURI(); return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsTxnLimit","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"InexistentToken","type":"error"},{"inputs":[],"name":"InsufficientFunds","type":"error"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"InvalidQuantity","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintInactive","type":"error"},{"inputs":[],"name":"MintPaused","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OutOfSupply","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":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_MAX_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchMintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setPublicMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_reserve","type":"uint256"}],"name":"setTeamReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setWhitelistMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260366080818152906200318860a03980516200002991600b91602090910190620003bd565b50660e35fa931a0000600d55600560105560006011556013805462ff0000191662010000179055604051620031de38819003908190833981016040819052620000729162000527565b8151829082906200008b906002906020850190620003bd565b508051620000a1906003906020840190620003bd565b5050600160005550620000b433620000ee565b60016009819055620000c890339062000140565b5050610309600e5560de600f55600c805463ffffffff191663631f7e0017905562000669565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001628282604051806020016040528060008152506200016660201b60201c565b5050565b620001728383620001dd565b6001600160a01b0383163b15620001d8576000548281035b6001810190620001a090600090879086620002b6565b620001be576040516368d2bf6b60e11b815260040160405180910390fd5b8181106200018a578160005414620001d557600080fd5b50505b505050565b60005481620001ff5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b17831790558284019083908390600080516020620031be8339815191528180a4600183015b8181146200028e5780836000600080516020620031be833981519152600080a460010162000265565b5081620002ad57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290620002ed90339089908890889060040162000591565b602060405180830381600087803b1580156200030857600080fd5b505af19250505080156200033b575060408051601f3d908101601f191682019092526200033891810190620004f4565b60015b6200039a573d8080156200036c576040519150601f19603f3d011682016040523d82523d6000602084013e62000371565b606091505b50805162000392576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b50505050565b828054620003cb9062000616565b90600052602060002090601f016020900481019282620003ef57600085556200043a565b82601f106200040a57805160ff19168380011785556200043a565b828001600101855582156200043a579182015b828111156200043a5782518255916020019190600101906200041d565b50620004489291506200044c565b5090565b5b808211156200044857600081556001016200044d565b600082601f8301126200047557600080fd5b81516001600160401b038082111562000492576200049262000653565b604051601f8301601f19908116603f01168101908282118183101715620004bd57620004bd62000653565b81604052838152866020858801011115620004d757600080fd5b620004ea846020830160208901620005e7565b9695505050505050565b6000602082840312156200050757600080fd5b81516001600160e01b0319811681146200052057600080fd5b9392505050565b600080604083850312156200053b57600080fd5b82516001600160401b03808211156200055357600080fd5b620005618683870162000463565b935060208501519150808211156200057857600080fd5b50620005878582860162000463565b9150509250929050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620005d08160a0850160208701620005e7565b601f01601f19169190910160a00195945050505050565b60005b8381101562000604578181015183820152602001620005ea565b83811115620003b75750506000910152565b600181811c908216806200062b57607f821691505b602082108114156200064d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612b0f80620006796000396000f3fe6080604052600436106102e75760003560e01c80637cb6475911610184578063b677dd0b116100d6578063dc33e6811161008a578063e985e9c511610064578063e985e9c5146107a8578063efbd73f4146107fe578063f2fde38b1461081e57600080fd5b8063dc33e68114610752578063de30dd3414610772578063e15b5e611461079257600080fd5b8063c87b56dd116100bb578063c87b56dd146106ff578063d2cab0561461071f578063d7299ef71461073257600080fd5b8063b677dd0b146106cc578063b88d4fde146106ec57600080fd5b806395d89b4111610138578063a3e7ee9711610112578063a3e7ee971461067c578063a79fdbb414610692578063ae5abd09146106ac57600080fd5b806395d89b4114610634578063a0712d6814610649578063a22cb4651461065c57600080fd5b80638da5cb5b116101695780638da5cb5b146105d357806391b7f5ed146105fe578063958f6ed61461061e57600080fd5b80637cb647591461059d5780638d859f3e146105bd57600080fd5b80633ccfd60b1161023d57806355f804b3116101f157806370a08231116101cb57806370a0823114610548578063715018a6146105685780637590485f1461057d57600080fd5b806355f804b3146104f35780636352211e146105135780636c0360eb1461053357600080fd5b80634287f14a116102225780634287f14a146104a757806351830227146104bd57806351b96d92146104dd57600080fd5b80633ccfd60b1461047f57806342842e0e1461049457600080fd5b8063095ea7b31161029f5780632c99589b116102795780632c99589b146104345780632eb4a7ab146104545780633bd649681461046a57600080fd5b8063095ea7b3146103c957806318160ddd146103dc57806323b872dd1461042157600080fd5b8063069cd573116102d0578063069cd5731461034357806306fdde0314610362578063081812fc1461038457600080fd5b806301595266146102ec57806301ffc9a71461030e575b600080fd5b3480156102f857600080fd5b5061030c61030736600461277f565b61083e565b005b34801561031a57600080fd5b5061032e61032936600461268d565b61087d565b60405190151581526020015b60405180910390f35b34801561034f57600080fd5b5060135461032e90610100900460ff1681565b34801561036e57600080fd5b50610377610962565b60405161033a919061288f565b34801561039057600080fd5b506103a461039f366004612674565b6109f4565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161033a565b61030c6103d73660046125c3565b610a5e565b3480156103e857600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b60405190815260200161033a565b61030c61042f3660046124e1565b610b49565b34801561044057600080fd5b5061030c61044f366004612674565b610dd1565b34801561046057600080fd5b50610413600a5481565b34801561047657600080fd5b5061030c610dde565b34801561048b57600080fd5b5061030c610e15565b61030c6104a23660046124e1565b610e66565b3480156104b357600080fd5b5061041360115481565b3480156104c957600080fd5b5060135461032e9062010000900460ff1681565b3480156104e957600080fd5b5061041360105481565b3480156104ff57600080fd5b5061030c61050e3660046126c7565b610e86565b34801561051f57600080fd5b506103a461052e366004612674565b610ea5565b34801561053f57600080fd5b50610377610eb0565b34801561055457600080fd5b50610413610563366004612493565b610f3e565b34801561057457600080fd5b5061030c610fc0565b34801561058957600080fd5b5061030c610598366004612659565b610fd4565b3480156105a957600080fd5b5061030c6105b8366004612674565b611013565b3480156105c957600080fd5b50610413600d5481565b3480156105df57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff166103a4565b34801561060a57600080fd5b5061030c610619366004612674565b611020565b34801561062a57600080fd5b50610413600e5481565b34801561064057600080fd5b5061037761102d565b61030c610657366004612674565b61103c565b34801561066857600080fd5b5061030c610677366004612599565b6112ea565b34801561068857600080fd5b50610413600f5481565b34801561069e57600080fd5b5060135461032e9060ff1681565b3480156106b857600080fd5b5061030c6106c7366004612674565b611381565b3480156106d857600080fd5b5061030c6106e7366004612674565b61138e565b61030c6106fa36600461251d565b61139b565b34801561070b57600080fd5b5061037761071a366004612674565b61140b565b61030c61072d366004612733565b61149c565b34801561073e57600080fd5b5061030c61074d366004612659565b6119c0565b34801561075e57600080fd5b5061041361076d366004612493565b6119f9565b34801561077e57600080fd5b5061030c61078d3660046125ed565b611a31565b34801561079e57600080fd5b5061041360125481565b3480156107b457600080fd5b5061032e6107c33660046124ae565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561080a57600080fd5b5061030c610819366004612710565b611ad9565b34801561082a57600080fd5b5061030c610839366004612493565b611af4565b610846611ba8565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061091057507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061095c57507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546109719061294e565b80601f016020809104026020016040519081016040528092919081815260200182805461099d9061294e565b80156109ea5780601f106109bf576101008083540402835291602001916109ea565b820191906000526020600020905b8154815290600101906020018083116109cd57829003601f168201915b5050505050905090565b60006109ff82611c29565b610a35576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a6982610ea5565b90503373ffffffffffffffffffffffffffffffffffffffff821614610ac857610a9281336107c3565b610ac8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b5482611c77565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610c2e57610bf886336107c3565b610c2e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610c7b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610c8657600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c02000000000000000000000000000000000000000000000000000000008316610d6e5760018401600081815260046020526040902054610d6c576000548114610d6c5760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610dd9611ba8565b600e55565b610de6611ba8565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055565b610e1d611ba8565b60085460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015610e63573d6000803e3d6000fd5b50565b610e818383836040518060200160405280600081525061139b565b505050565b610e8e611ba8565b8051610ea190600b9060208401906122e1565b5050565b600061095c82611c77565b600b8054610ebd9061294e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee99061294e565b8015610f365780601f10610f0b57610100808354040283529160200191610f36565b820191906000526020600020905b815481529060010190602001808311610f1957829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216610f8d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b610fc8611ba8565b610fd26000611d37565b565b610fdc611ba8565b60138054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b61101b611ba8565b600a55565b611028611ba8565b600d55565b6060600380546109719061294e565b600260095414156110ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955600c54819063ffffffff164210156110f7576040517f343295c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b333214611130576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154600e54611140919061290b565b600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0161117691906128a2565b11156111ae576040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6010548111156111ea576040517f802fc7e600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105433600090815260056020526040908190205483911c67ffffffffffffffff1661121691906128a2565b111561124e576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601354610100900460ff1615611290576040517fd7d248ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600d5461129e91906128ce565b3410156112d7576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112e13383611dae565b50506001600955565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611389611ba8565b601155565b611396611ba8565b600f55565b6113a6848484610b49565b73ffffffffffffffffffffffffffffffffffffffff83163b15611405576113cf84848484611dc8565b611405576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061141682611c29565b61144c576040517f157503d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60135462010000900460ff166114645761095c611f4e565b61146c611f4e565b61147583611f5d565b6040516020016114869291906127ef565b6040516020818303038152906040529050919050565b60026009541415611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016110a5565b6002600955600c54839063ffffffff16421015611552576040517f343295c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33321461158b576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154600e5461159b919061290b565b600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016115d191906128a2565b1115611609576040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601054811115611645576040517f802fc7e600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105433600090815260056020526040908190205483911c67ffffffffffffffff1661167191906128a2565b11156116a9576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018410156116e4576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60135460ff1615611721576040517fd7d248ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526000906034016040516020818303038152906040528051906020012090506117ae84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a54915084905061208f565b6117e4576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f546012541060006118273373ffffffffffffffffffffffffffffffffffffffff166000908152600560205260409081902054901c67ffffffffffffffff1690565b1590508161192b5780156118da5760018711156118a85761184960018861290b565b600d5461185691906128ce565b34101561188f576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118a33361189e60018a61290b565b611dae565b6119b2565b6040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b86600d546118e891906128ce565b341015611921576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118a33388611dae565b6000816119385787611943565b61194360018961290b565b905080600d5461195391906128ce565b34101561198c576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119963389611dae565b81156119b0576012600081546119ab906129a2565b909155505b505b505060016009555050505050565b6119c8611ba8565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600560205260408082205467ffffffffffffffff911c1661095c565b611a39611ba8565b60005b63ffffffff8116841115611ad25782828263ffffffff16818110611a6257611a62612a4d565b6011805460209092029390930135900390915550611aca858563ffffffff8416818110611a9157611a91612a4d565b9050602002016020810190611aa69190612493565b84848463ffffffff16818110611abe57611abe612a4d565b90506020020135611dae565b600101611a3c565b5050505050565b611ae1611ba8565b601180548390039055610ea18183611dae565b611afc611ba8565b73ffffffffffffffffffffffffffffffffffffffff8116611b9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016110a5565b610e6381611d37565b60085473ffffffffffffffffffffffffffffffffffffffff163314610fd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016110a5565b600081600111158015611c3d575060005482105b801561095c5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b60008180600111611d0557600054811015611d05576000818152600460205260409020547c01000000000000000000000000000000000000000000000000000000008116611d03575b80611cfc57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260046020526040902054611cc0565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ea18282604051806020016040528060008152506120a5565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611e23903390899088908890600401612846565b602060405180830381600087803b158015611e3d57600080fd5b505af1925050508015611e8b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611e88918101906126aa565b60015b611eff573d808015611eb9576040519150601f19603f3d011682016040523d82523d6000602084013e611ebe565b606091505b508051611ef7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600b80546109719061294e565b606081611f9d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fc75780611fb1816129a2565b9150611fc09050600a836128ba565b9150611fa1565b60008167ffffffffffffffff811115611fe257611fe2612a7c565b6040519080825280601f01601f19166020018201604052801561200c576020820181803683370190505b5090505b8415611f465761202160018361290b565b915061202e600a866129db565b6120399060306128a2565b60f81b81838151811061204e5761204e612a4d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612088600a866128ba565b9450612010565b60008261209c8584612131565b14949350505050565b6120af838361217e565b73ffffffffffffffffffffffffffffffffffffffff83163b15610e81576000548281035b6120e66000868380600101945086611dc8565b61211c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120d3578160005414611ad257600080fd5b600081815b8451811015612176576121628286838151811061215557612155612a4d565b60200260200101516122b5565b91508061216e816129a2565b915050612136565b509392505050565b600054816121b8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461227457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161223c565b50816122ac576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b60008183106122d1576000828152602084905260409020611cfc565b5060009182526020526040902090565b8280546122ed9061294e565b90600052602060002090601f01602090048101928261230f5760008555612355565b82601f1061232857805160ff1916838001178555612355565b82800160010185558215612355579182015b8281111561235557825182559160200191906001019061233a565b50612361929150612365565b5090565b5b808211156123615760008155600101612366565b600067ffffffffffffffff8084111561239557612395612a7c565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156123db576123db612a7c565b816040528093508581528686860111156123f457600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461243257600080fd5b919050565b60008083601f84011261244957600080fd5b50813567ffffffffffffffff81111561246157600080fd5b6020830191508360208260051b850101111561247c57600080fd5b9250929050565b8035801515811461243257600080fd5b6000602082840312156124a557600080fd5b611cfc8261240e565b600080604083850312156124c157600080fd5b6124ca8361240e565b91506124d86020840161240e565b90509250929050565b6000806000606084860312156124f657600080fd5b6124ff8461240e565b925061250d6020850161240e565b9150604084013590509250925092565b6000806000806080858703121561253357600080fd5b61253c8561240e565b935061254a6020860161240e565b925060408501359150606085013567ffffffffffffffff81111561256d57600080fd5b8501601f8101871361257e57600080fd5b61258d8782356020840161237a565b91505092959194509250565b600080604083850312156125ac57600080fd5b6125b58361240e565b91506124d860208401612483565b600080604083850312156125d657600080fd5b6125df8361240e565b946020939093013593505050565b6000806000806040858703121561260357600080fd5b843567ffffffffffffffff8082111561261b57600080fd5b61262788838901612437565b9096509450602087013591508082111561264057600080fd5b5061264d87828801612437565b95989497509550505050565b60006020828403121561266b57600080fd5b611cfc82612483565b60006020828403121561268657600080fd5b5035919050565b60006020828403121561269f57600080fd5b8135611cfc81612aab565b6000602082840312156126bc57600080fd5b8151611cfc81612aab565b6000602082840312156126d957600080fd5b813567ffffffffffffffff8111156126f057600080fd5b8201601f8101841361270157600080fd5b611f468482356020840161237a565b6000806040838503121561272357600080fd5b823591506124d86020840161240e565b60008060006040848603121561274857600080fd5b83359250602084013567ffffffffffffffff81111561276657600080fd5b61277286828701612437565b9497909650939450505050565b60006020828403121561279157600080fd5b813563ffffffff81168114611cfc57600080fd5b600081518084526127bd816020860160208601612922565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612801818460208801612922565b835190830190612815818360208801612922565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261288560808301846127a5565b9695505050505050565b602081526000611cfc60208301846127a5565b600082198211156128b5576128b56129ef565b500190565b6000826128c9576128c9612a1e565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612906576129066129ef565b500290565b60008282101561291d5761291d6129ef565b500390565b60005b8381101561293d578181015183820152602001612925565b838111156114055750506000910152565b600181811c9082168061296257607f821691505b6020821081141561299c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129d4576129d46129ef565b5060010190565b6000826129ea576129ea612a1e565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e6357600080fdfea2646970667358221220c47f9a9f5b1cf4977cdbd38ff334fbe9ed577503c06e62ae5b85a509e3f6e72964736f6c63430008070033697066733a2f2f516d4e76426973566d714c4c705a314d6d77505532503556345357394d34334c6776374d3561517845674b3278502fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000006416943617473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064169436174730000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102e75760003560e01c80637cb6475911610184578063b677dd0b116100d6578063dc33e6811161008a578063e985e9c511610064578063e985e9c5146107a8578063efbd73f4146107fe578063f2fde38b1461081e57600080fd5b8063dc33e68114610752578063de30dd3414610772578063e15b5e611461079257600080fd5b8063c87b56dd116100bb578063c87b56dd146106ff578063d2cab0561461071f578063d7299ef71461073257600080fd5b8063b677dd0b146106cc578063b88d4fde146106ec57600080fd5b806395d89b4111610138578063a3e7ee9711610112578063a3e7ee971461067c578063a79fdbb414610692578063ae5abd09146106ac57600080fd5b806395d89b4114610634578063a0712d6814610649578063a22cb4651461065c57600080fd5b80638da5cb5b116101695780638da5cb5b146105d357806391b7f5ed146105fe578063958f6ed61461061e57600080fd5b80637cb647591461059d5780638d859f3e146105bd57600080fd5b80633ccfd60b1161023d57806355f804b3116101f157806370a08231116101cb57806370a0823114610548578063715018a6146105685780637590485f1461057d57600080fd5b806355f804b3146104f35780636352211e146105135780636c0360eb1461053357600080fd5b80634287f14a116102225780634287f14a146104a757806351830227146104bd57806351b96d92146104dd57600080fd5b80633ccfd60b1461047f57806342842e0e1461049457600080fd5b8063095ea7b31161029f5780632c99589b116102795780632c99589b146104345780632eb4a7ab146104545780633bd649681461046a57600080fd5b8063095ea7b3146103c957806318160ddd146103dc57806323b872dd1461042157600080fd5b8063069cd573116102d0578063069cd5731461034357806306fdde0314610362578063081812fc1461038457600080fd5b806301595266146102ec57806301ffc9a71461030e575b600080fd5b3480156102f857600080fd5b5061030c61030736600461277f565b61083e565b005b34801561031a57600080fd5b5061032e61032936600461268d565b61087d565b60405190151581526020015b60405180910390f35b34801561034f57600080fd5b5060135461032e90610100900460ff1681565b34801561036e57600080fd5b50610377610962565b60405161033a919061288f565b34801561039057600080fd5b506103a461039f366004612674565b6109f4565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161033a565b61030c6103d73660046125c3565b610a5e565b3480156103e857600080fd5b50600154600054037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b60405190815260200161033a565b61030c61042f3660046124e1565b610b49565b34801561044057600080fd5b5061030c61044f366004612674565b610dd1565b34801561046057600080fd5b50610413600a5481565b34801561047657600080fd5b5061030c610dde565b34801561048b57600080fd5b5061030c610e15565b61030c6104a23660046124e1565b610e66565b3480156104b357600080fd5b5061041360115481565b3480156104c957600080fd5b5060135461032e9062010000900460ff1681565b3480156104e957600080fd5b5061041360105481565b3480156104ff57600080fd5b5061030c61050e3660046126c7565b610e86565b34801561051f57600080fd5b506103a461052e366004612674565b610ea5565b34801561053f57600080fd5b50610377610eb0565b34801561055457600080fd5b50610413610563366004612493565b610f3e565b34801561057457600080fd5b5061030c610fc0565b34801561058957600080fd5b5061030c610598366004612659565b610fd4565b3480156105a957600080fd5b5061030c6105b8366004612674565b611013565b3480156105c957600080fd5b50610413600d5481565b3480156105df57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff166103a4565b34801561060a57600080fd5b5061030c610619366004612674565b611020565b34801561062a57600080fd5b50610413600e5481565b34801561064057600080fd5b5061037761102d565b61030c610657366004612674565b61103c565b34801561066857600080fd5b5061030c610677366004612599565b6112ea565b34801561068857600080fd5b50610413600f5481565b34801561069e57600080fd5b5060135461032e9060ff1681565b3480156106b857600080fd5b5061030c6106c7366004612674565b611381565b3480156106d857600080fd5b5061030c6106e7366004612674565b61138e565b61030c6106fa36600461251d565b61139b565b34801561070b57600080fd5b5061037761071a366004612674565b61140b565b61030c61072d366004612733565b61149c565b34801561073e57600080fd5b5061030c61074d366004612659565b6119c0565b34801561075e57600080fd5b5061041361076d366004612493565b6119f9565b34801561077e57600080fd5b5061030c61078d3660046125ed565b611a31565b34801561079e57600080fd5b5061041360125481565b3480156107b457600080fd5b5061032e6107c33660046124ae565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561080a57600080fd5b5061030c610819366004612710565b611ad9565b34801561082a57600080fd5b5061030c610839366004612493565b611af4565b610846611ba8565b600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061091057507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b8061095c57507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546109719061294e565b80601f016020809104026020016040519081016040528092919081815260200182805461099d9061294e565b80156109ea5780601f106109bf576101008083540402835291602001916109ea565b820191906000526020600020905b8154815290600101906020018083116109cd57829003601f168201915b5050505050905090565b60006109ff82611c29565b610a35576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a6982610ea5565b90503373ffffffffffffffffffffffffffffffffffffffff821614610ac857610a9281336107c3565b610ac8576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610b5482611c77565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bbb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040902080543380821473ffffffffffffffffffffffffffffffffffffffff881690911417610c2e57610bf886336107c3565b610c2e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8516610c7b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8015610c8657600082555b73ffffffffffffffffffffffffffffffffffffffff86811660009081526005602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019055918716808252919020805460010190554260a01b177c0200000000000000000000000000000000000000000000000000000000176000858152600460205260409020557c02000000000000000000000000000000000000000000000000000000008316610d6e5760018401600081815260046020526040902054610d6c576000548114610d6c5760008181526004602052604090208490555b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610dd9611ba8565b600e55565b610de6611ba8565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055565b610e1d611ba8565b60085460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f19350505050158015610e63573d6000803e3d6000fd5b50565b610e818383836040518060200160405280600081525061139b565b505050565b610e8e611ba8565b8051610ea190600b9060208401906122e1565b5050565b600061095c82611c77565b600b8054610ebd9061294e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee99061294e565b8015610f365780601f10610f0b57610100808354040283529160200191610f36565b820191906000526020600020905b815481529060010190602001808311610f1957829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216610f8d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205467ffffffffffffffff1690565b610fc8611ba8565b610fd26000611d37565b565b610fdc611ba8565b60138054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b61101b611ba8565b600a55565b611028611ba8565b600d55565b6060600380546109719061294e565b600260095414156110ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955600c54819063ffffffff164210156110f7576040517f343295c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b333214611130576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154600e54611140919061290b565b600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0161117691906128a2565b11156111ae576040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6010548111156111ea576040517f802fc7e600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105433600090815260056020526040908190205483911c67ffffffffffffffff1661121691906128a2565b111561124e576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601354610100900460ff1615611290576040517fd7d248ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600d5461129e91906128ce565b3410156112d7576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6112e13383611dae565b50506001600955565b33600081815260076020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611389611ba8565b601155565b611396611ba8565b600f55565b6113a6848484610b49565b73ffffffffffffffffffffffffffffffffffffffff83163b15611405576113cf84848484611dc8565b611405576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061141682611c29565b61144c576040517f157503d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60135462010000900460ff166114645761095c611f4e565b61146c611f4e565b61147583611f5d565b6040516020016114869291906127ef565b6040516020818303038152906040529050919050565b60026009541415611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016110a5565b6002600955600c54839063ffffffff16421015611552576040517f343295c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33321461158b576040517f72f67c2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601154600e5461159b919061290b565b600154600054839190037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff016115d191906128a2565b1115611609576040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601054811115611645576040517f802fc7e600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60105433600090815260056020526040908190205483911c67ffffffffffffffff1661167191906128a2565b11156116a9576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60018410156116e4576040517f524f409b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60135460ff1615611721576040517fd7d248ba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b1660208201526000906034016040516020818303038152906040528051906020012090506117ae84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a54915084905061208f565b6117e4576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f546012541060006118273373ffffffffffffffffffffffffffffffffffffffff166000908152600560205260409081902054901c67ffffffffffffffff1690565b1590508161192b5780156118da5760018711156118a85761184960018861290b565b600d5461185691906128ce565b34101561188f576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118a33361189e60018a61290b565b611dae565b6119b2565b6040517f9b741cf000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b86600d546118e891906128ce565b341015611921576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118a33388611dae565b6000816119385787611943565b61194360018961290b565b905080600d5461195391906128ce565b34101561198c576040517f356680b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119963389611dae565b81156119b0576012600081546119ab906129a2565b909155505b505b505060016009555050505050565b6119c8611ba8565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600560205260408082205467ffffffffffffffff911c1661095c565b611a39611ba8565b60005b63ffffffff8116841115611ad25782828263ffffffff16818110611a6257611a62612a4d565b6011805460209092029390930135900390915550611aca858563ffffffff8416818110611a9157611a91612a4d565b9050602002016020810190611aa69190612493565b84848463ffffffff16818110611abe57611abe612a4d565b90506020020135611dae565b600101611a3c565b5050505050565b611ae1611ba8565b601180548390039055610ea18183611dae565b611afc611ba8565b73ffffffffffffffffffffffffffffffffffffffff8116611b9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016110a5565b610e6381611d37565b60085473ffffffffffffffffffffffffffffffffffffffff163314610fd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016110a5565b600081600111158015611c3d575060005482105b801561095c5750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b60008180600111611d0557600054811015611d05576000818152600460205260409020547c01000000000000000000000000000000000000000000000000000000008116611d03575b80611cfc57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01600081815260046020526040902054611cc0565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ea18282604051806020016040528060008152506120a5565b6040517f150b7a0200000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290611e23903390899088908890600401612846565b602060405180830381600087803b158015611e3d57600080fd5b505af1925050508015611e8b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611e88918101906126aa565b60015b611eff573d808015611eb9576040519150601f19603f3d011682016040523d82523d6000602084013e611ebe565b606091505b508051611ef7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600b80546109719061294e565b606081611f9d57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611fc75780611fb1816129a2565b9150611fc09050600a836128ba565b9150611fa1565b60008167ffffffffffffffff811115611fe257611fe2612a7c565b6040519080825280601f01601f19166020018201604052801561200c576020820181803683370190505b5090505b8415611f465761202160018361290b565b915061202e600a866129db565b6120399060306128a2565b60f81b81838151811061204e5761204e612a4d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612088600a866128ba565b9450612010565b60008261209c8584612131565b14949350505050565b6120af838361217e565b73ffffffffffffffffffffffffffffffffffffffff83163b15610e81576000548281035b6120e66000868380600101945086611dc8565b61211c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120d3578160005414611ad257600080fd5b600081815b8451811015612176576121628286838151811061215557612155612a4d565b60200260200101516122b5565b91508061216e816129a2565b915050612136565b509392505050565b600054816121b8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461227457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460010161223c565b50816122ac576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005550505050565b60008183106122d1576000828152602084905260409020611cfc565b5060009182526020526040902090565b8280546122ed9061294e565b90600052602060002090601f01602090048101928261230f5760008555612355565b82601f1061232857805160ff1916838001178555612355565b82800160010185558215612355579182015b8281111561235557825182559160200191906001019061233a565b50612361929150612365565b5090565b5b808211156123615760008155600101612366565b600067ffffffffffffffff8084111561239557612395612a7c565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019082821181831017156123db576123db612a7c565b816040528093508581528686860111156123f457600080fd5b858560208301376000602087830101525050509392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461243257600080fd5b919050565b60008083601f84011261244957600080fd5b50813567ffffffffffffffff81111561246157600080fd5b6020830191508360208260051b850101111561247c57600080fd5b9250929050565b8035801515811461243257600080fd5b6000602082840312156124a557600080fd5b611cfc8261240e565b600080604083850312156124c157600080fd5b6124ca8361240e565b91506124d86020840161240e565b90509250929050565b6000806000606084860312156124f657600080fd5b6124ff8461240e565b925061250d6020850161240e565b9150604084013590509250925092565b6000806000806080858703121561253357600080fd5b61253c8561240e565b935061254a6020860161240e565b925060408501359150606085013567ffffffffffffffff81111561256d57600080fd5b8501601f8101871361257e57600080fd5b61258d8782356020840161237a565b91505092959194509250565b600080604083850312156125ac57600080fd5b6125b58361240e565b91506124d860208401612483565b600080604083850312156125d657600080fd5b6125df8361240e565b946020939093013593505050565b6000806000806040858703121561260357600080fd5b843567ffffffffffffffff8082111561261b57600080fd5b61262788838901612437565b9096509450602087013591508082111561264057600080fd5b5061264d87828801612437565b95989497509550505050565b60006020828403121561266b57600080fd5b611cfc82612483565b60006020828403121561268657600080fd5b5035919050565b60006020828403121561269f57600080fd5b8135611cfc81612aab565b6000602082840312156126bc57600080fd5b8151611cfc81612aab565b6000602082840312156126d957600080fd5b813567ffffffffffffffff8111156126f057600080fd5b8201601f8101841361270157600080fd5b611f468482356020840161237a565b6000806040838503121561272357600080fd5b823591506124d86020840161240e565b60008060006040848603121561274857600080fd5b83359250602084013567ffffffffffffffff81111561276657600080fd5b61277286828701612437565b9497909650939450505050565b60006020828403121561279157600080fd5b813563ffffffff81168114611cfc57600080fd5b600081518084526127bd816020860160208601612922565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60008351612801818460208801612922565b835190830190612815818360208801612922565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261288560808301846127a5565b9695505050505050565b602081526000611cfc60208301846127a5565b600082198211156128b5576128b56129ef565b500190565b6000826128c9576128c9612a1e565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612906576129066129ef565b500290565b60008282101561291d5761291d6129ef565b500390565b60005b8381101561293d578181015183820152602001612925565b838111156114055750506000910152565b600181811c9082168061296257607f821691505b6020821081141561299c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129d4576129d46129ef565b5060010190565b6000826129ea576129ea612a1e565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e6357600080fdfea2646970667358221220c47f9a9f5b1cf4977cdbd38ff334fbe9ed577503c06e62ae5b85a509e3f6e72964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000006416943617473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064169436174730000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): AiCats
Arg [1] : _symbol (string): AiCats
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 4169436174730000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4169436174730000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
69090:6207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73779:109;;;;;;;;;;-1:-1:-1;73779:109:0;;;;;:::i;:::-;;:::i;:::-;;18404:639;;;;;;;;;;-1:-1:-1;18404:639:0;;;;;:::i;:::-;;:::i;:::-;;;8911:14:1;;8904:22;8886:41;;8874:2;8859:18;18404:639:0;;;;;;;;69959:28;;;;;;;;;;-1:-1:-1;69959:28:0;;;;;;;;;;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25797:218::-;;;;;;;;;;-1:-1:-1;25797:218:0;;;;;:::i;:::-;;:::i;:::-;;;8175:42:1;8163:55;;;8145:74;;8133:2;8118:18;25797:218:0;7999:226:1;25230:408:0;;;;;;:::i;:::-;;:::i;15057:323::-;;;;;;;;;;-1:-1:-1;73300:1:0;15331:12;15118:7;15315:13;:28;:46;;15057:323;;;9084:25:1;;;9072:2;9057:18;15057:323:0;8938:177:1;29436:2825:0;;;;;;:::i;:::-;;:::i;74104:103::-;;;;;;;;;;-1:-1:-1;74104:103:0;;;;;:::i;:::-;;:::i;69538:25::-;;;;;;;;;;;;;;;;73483:76;;;;;;;;;;;;;:::i;74450:106::-;;;;;;;;;;;;;:::i;32357:193::-;;;;;;:::i;:::-;;:::i;69852:30::-;;;;;;;;;;;;;;;;69994:27;;;;;;;;;;-1:-1:-1;69994:27:0;;;;;;;;;;;69809:30;;;;;;;;;;;;;;;;74751:106;;;;;;;;;;-1:-1:-1;74751:106:0;;;;;:::i;:::-;;:::i;20699:152::-;;;;;;;;;;-1:-1:-1;20699:152:0;;;;;:::i;:::-;;:::i;69572:80::-;;;;;;;;;;;;;:::i;16241:233::-;;;;;;;;;;-1:-1:-1;16241:233:0;;;;;:::i;:::-;;:::i;68192:103::-;;;;;;;;;;;;;:::i;73567:101::-;;;;;;;;;;-1:-1:-1;73567:101:0;;;;;:::i;:::-;;:::i;73896:106::-;;;;;;;;;;-1:-1:-1;73896:106:0;;;;;:::i;:::-;;:::i;69694:34::-;;;;;;;;;;;;;;;;67544:87;;;;;;;;;;-1:-1:-1;67617:6:0;;;;67544:87;;74010:86;;;;;;;;;;-1:-1:-1;74010:86:0;;;;;:::i;:::-;;:::i;69735:25::-;;;;;;;;;;;;;;;;19482:104;;;;;;;;;;;;;:::i;72204:317::-;;;;;;:::i;:::-;;:::i;26355:234::-;;;;;;;;;;-1:-1:-1;26355:234:0;;;;;:::i;:::-;;:::i;69767:35::-;;;;;;;;;;;;;;;;69927:25;;;;;;;;;;-1:-1:-1;69927:25:0;;;;;;;;74339:103;;;;;;;;;;-1:-1:-1;74339:103:0;;;;;:::i;:::-;;:::i;74215:116::-;;;;;;;;;;-1:-1:-1;74215:116:0;;;;;:::i;:::-;;:::i;33148:407::-;;;;;;:::i;:::-;;:::i;74957:335::-;;;;;;;;;;-1:-1:-1;74957:335:0;;;;;:::i;:::-;;:::i;70758:1438::-;;;;;;:::i;:::-;;:::i;73676:95::-;;;;;;;;;;-1:-1:-1;73676:95:0;;;;;:::i;:::-;;:::i;73317:135::-;;;;;;;;;;-1:-1:-1;73317:135:0;;;;;:::i;:::-;;:::i;72819:339::-;;;;;;;;;;-1:-1:-1;72819:339:0;;;;;:::i;:::-;;:::i;69889:29::-;;;;;;;;;;;;;;;;26746:164;;;;;;;;;;-1:-1:-1;26746:164:0;;;;;:::i;:::-;26867:25;;;;26843:4;26867:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26746:164;72578:186;;;;;;;;;;-1:-1:-1;72578:186:0;;;;;:::i;:::-;;:::i;68450:201::-;;;;;;;;;;-1:-1:-1;68450:201:0;;;;;:::i;:::-;;:::i;73779:109::-;67430:13;:11;:13::i;:::-;73854::::1;:26:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;73779:109::o;18404:639::-;18489:4;18813:25;;;;;;:102;;-1:-1:-1;18890:25:0;;;;;18813:102;:179;;;-1:-1:-1;18967:25:0;;;;;18813:179;18793:199;18404:639;-1:-1:-1;;18404:639:0:o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;-1:-1:-1;25977:24:0;;;;:15;:24;;;;;:30;;;;25797:218::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;-1:-1:-1;49563:10:0;25368:28;;;;25364:175;;25416:44;25433:5;49563:10;26746:164;:::i;25416:44::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25551:24;;;;:15;:24;;;;;;:35;;;;;;;;;;;;;;25602:28;;25551:24;;25602:28;;;;;;;25308:330;25230:408;;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;28544:24;;;:15;:24;;;;;28772:26;;49563:10;28169:30;;;27873:16;27862:28;;28147:20;;;28144:56;29934:180;;30027:43;30044:4;49563:10;26746:164;:::i;30027:43::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;30131:16;;;30127:52;;30156:23;;;;;;;;;;;;;;30127:52;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:24;;;;;;;;:18;:24;;;;;;30863:26;;;;;;30934:22;;;;;;;;;30932:24;;-1:-1:-1;30932:24:0;;;24088:11;24063:23;24059:41;24046:63;11456:8;24046:63;31227:26;;;;:17;:26;;;;;:175;11456:8;31522:47;;31518:627;;31627:1;31617:11;;31595:19;31750:30;;;:17;:30;;;;;;31746:384;;31888:13;;31873:11;:28;31869:242;;32035:30;;;;:17;:30;;;;;:52;;;31869:242;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;29567:2694;;;29436:2825;;;:::o;74104:103::-;67430:13;:11;:13::i;:::-;74179:10:::1;:20:::0;74104:103::o;73483:76::-;67430:13;:11;:13::i;:::-;73536:8:::1;:15:::0;;;::::1;::::0;::::1;::::0;;73483:76::o;74450:106::-;67430:13;:11;:13::i;:::-;67617:6;;74500:48:::1;::::0;67617:6;;;;;74526:21:::1;74500:48:::0;::::1;;;::::0;::::1;::::0;;;74526:21;67617:6;74500:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;74450:106::o:0;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;74751:106::-;67430:13;:11;:13::i;:::-;74828:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;74751:106:::0;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;69572:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16241:233::-;16313:7;16337:19;;;16333:60;;16365:28;;;;;;;;;;;;;;16333:60;-1:-1:-1;16411:25:0;;;;;;:18;:25;;;;;;10400:13;16411:55;;16241:233::o;68192:103::-;67430:13;:11;:13::i;:::-;68257:30:::1;68284:1;68257:18;:30::i;:::-;68192:103::o:0;73567:101::-;67430:13;:11;:13::i;:::-;73635:16:::1;:25:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;73567:101::o;73896:106::-;67430:13;:11;:13::i;:::-;73970:10:::1;:24:::0;73896:106::o;74010:86::-;67430:13;:11;:13::i;:::-;74074:5:::1;:14:::0;74010:86::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;72204:317::-;55744:1;56342:7;;:19;;56334:63;;;;;;;10314:2:1;56334:63:0;;;10296:21:1;10353:2;10333:18;;;10326:30;10392:33;10372:18;;;10365:61;10443:18;;56334:63:0;;;;;;;;;55744:1;56475:7;:18;70373:13:::1;::::0;72320:11;;70373:13:::1;;70355:15;:31;70351:58;;;70395:14;;;;;;;;;;;;;;70351:58;70424:10;70438:9;70424:23;70420:50;;70456:14;;;;;;;;;;;;;;70420:50;70531:11;;70518:10;;:24;;;;:::i;:::-;73300:1:::0;15331:12;15118:7;15315:13;70502:11;;15315:28;;:46;;70486:27:::1;;;;:::i;:::-;70485:58;70481:84;;;70552:13;;;;;;;;;;;;;;70481:84;70594:11;;70580;:25;70576:55;;;70614:17;;;;;;;;;;;;;;70576:55;70690:11;::::0;70661:10:::1;16617:7:::0;16645:25;;;:18;:25;;10538:2;16645:25;;;;;70675:11;;16645:50;10400:13;16644:82;70647:39:::1;;;;:::i;:::-;70646:55;70642:88;;;70710:20;;;;;;;;;;;;;;70642:88;72353:16:::2;::::0;::::2;::::0;::::2;;;72349:41;;;72378:12;;;;;;;;;;;;;;72349:41;72426:11;72418:5;;:19;;;;:::i;:::-;72405:9;:33;72401:65;;;72447:19;;;;;;;;;;;;;;72401:65;72479:34;72489:10;72501:11;72479:9;:34::i;:::-;-1:-1:-1::0;;55700:1:0;56654:7;:22;72204:317::o;26355:234::-;49563:10;26450:39;;;;:18;:39;;;;;;;;;:49;;;;;;;;;;;;:60;;;;;;;;;;;;;26526:55;;8886:41:1;;;26450:49:0;;49563:10;26526:55;;8859:18:1;26526:55:0;;;;;;;26355:234;;:::o;74339:103::-;67430:13;:11;:13::i;:::-;74412:11:::1;:22:::0;74339:103::o;74215:116::-;67430:13;:11;:13::i;:::-;74293:20:::1;:30:::0;74215:116::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33369:14;;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33148:407;;;;:::o;74957:335::-;75076:13;75112:17;75120:8;75112:7;:17::i;:::-;75107:48;;75138:17;;;;;;;;;;;;;;75107:48;75173:8;;;;;;;75168:32;;75190:10;:8;:10::i;75168:32::-;75242:10;:8;:10::i;:::-;75254:19;:8;:17;:19::i;:::-;75225:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75211:73;;74957:335;;;:::o;70758:1438::-;55744:1;56342:7;;:19;;56334:63;;;;;;;10314:2:1;56334:63:0;;;10296:21:1;10353:2;10333:18;;;10326:30;10392:33;10372:18;;;10365:61;10443:18;;56334:63:0;10112:355:1;56334:63:0;55744:1;56475:7;:18;70373:13:::1;::::0;70916:11;;70373:13:::1;;70355:15;:31;70351:58;;;70395:14;;;;;;;;;;;;;;70351:58;70424:10;70438:9;70424:23;70420:50;;70456:14;;;;;;;;;;;;;;70420:50;70531:11;;70518:10;;:24;;;;:::i;:::-;73300:1:::0;15331:12;15118:7;15315:13;70502:11;;15315:28;;:46;;70486:27:::1;;;;:::i;:::-;70485:58;70481:84;;;70552:13;;;;;;;;;;;;;;70481:84;70594:11;;70580;:25;70576:55;;;70614:17;;;;;;;;;;;;;;70576:55;70690:11;::::0;70661:10:::1;16617:7:::0;16645:25;;;:18;:25;;10538:2;16645:25;;;;;70675:11;;16645:50;10400:13;16644:82;70647:39:::1;;;;:::i;:::-;70646:55;70642:88;;;70710:20;;;;;;;;;;;;;;70642:88;70967:1:::2;70953:11;:15;70949:45;;;70977:17;;;;;;;;;;;;;;70949:45;71009:13;::::0;::::2;;71005:38;;;71031:12;;;;;;;;;;;;;;71005:38;71081:28;::::0;7250:66:1;71098:10:0::2;7237:2:1::0;7233:15;7229:88;71081:28:0::2;::::0;::::2;7217:101:1::0;71056:12:0::2;::::0;7334::1;;71081:28:0::2;;;;;;;;;;;;71071:39;;;;;;71056:54;;71126:50;71145:12;;71126:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;71159:10:0::2;::::0;;-1:-1:-1;71171:4:0;;-1:-1:-1;71126:18:0::2;:50::i;:::-;71121:78;;71185:14;;;;;;;;;;;;;;71121:78;71243:20;::::0;71226:14:::2;::::0;:37:::2;71210:13;71301:25;71315:10;16645:25:::0;;16617:7;16645:25;;;:18;:25;;10538:2;16645:25;;;;;:50;;10400:13;16644:82;;16556:178;71301:25:::2;:30:::0;;-1:-1:-1;71385:8:0;71380:807:::2;;71414:19;71410:485;;;71472:1;71458:11;:15;71454:267;;;71524:15;71538:1;71524:11:::0;:15:::2;:::i;:::-;71515:5;;:25;;;;:::i;:::-;71502:9;:39;71498:71;;;71550:19;;;;;;;;;;;;;;71498:71;71592:40;71602:10;71615:15;71629:1;71615:11:::0;:15:::2;:::i;:::-;71592:9;:40::i;:::-;71380:807;;71454:267;71688:13;;;;;;;;;;;;;;71410:485;71786:11;71778:5;;:19;;;;:::i;:::-;71765:9;:33;71761:65;;;71807:19;;;;;;;;;;;;;;71761:65;71845:34;71855:10;71867:11;71845:9;:34::i;71380:807::-;71927:13;71943:19;:53;;71985:11;71943:53;;;71966:15;71980:1;71966:11:::0;:15:::2;:::i;:::-;71927:69;;72036:5;72028;;:13;;;;:::i;:::-;72015:9;:27;72011:59;;;72051:19;;;;;;;;;;;;;;72011:59;72085:34;72095:10;72107:11;72085:9;:34::i;:::-;72138:19;72134:41;;;72161:14;;72159:16;;;;;:::i;:::-;::::0;;;-1:-1:-1;72134:41:0::2;71912:275;71380:807;-1:-1:-1::0;;55700:1:0;56654:7;:22;-1:-1:-1;;;;;70758:1438:0:o;73676:95::-;67430:13;:11;:13::i;:::-;73741::::1;:22:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;73676:95::o;73317:135::-;16645:25;;;73391:7;16645:25;;;:18;:25;;10538:2;16645:25;;;;10400:13;16645:50;;16644:82;73418:26;16556:178;72819:339;67430:13;:11;:13::i;:::-;72939:8:::1;72983:157;72993:20;::::0;::::1;::::0;-1:-1:-1;72983:157:0::1;;;73054:10;;73065:1;73054:13;;;;;;;;;:::i;:::-;73039:11;:28:::0;;73054:13:::1;::::0;;::::1;::::0;;;::::1;;73039:28:::0;::::1;::::0;;;-1:-1:-1;73086:38:0::1;73096:9:::0;;:12:::1;::::0;::::1;::::0;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;73110:10;;73121:1;73110:13;;;;;;;;;:::i;:::-;;;;;;;73086:9;:38::i;:::-;73015:3;;72983:157;;;72928:230;72819:339:::0;;;;:::o;72578:186::-;67430:13;:11;:13::i;:::-;72684:11:::1;:26:::0;;;;::::1;::::0;;72723:33:::1;72733:9:::0;72699:11;72723:9:::1;:33::i;68450:201::-:0;67430:13;:11;:13::i;:::-;68539:22:::1;::::0;::::1;68531:73;;;::::0;::::1;::::0;;9546:2:1;68531:73:0::1;::::0;::::1;9528:21:1::0;9585:2;9565:18;;;9558:30;9624:34;9604:18;;;9597:62;9695:8;9675:18;;;9668:36;9721:19;;68531:73:0::1;9344:402:1::0;68531:73:0::1;68615:28;68634:8;68615:18;:28::i;67709:132::-:0;67617:6;;67773:23;67617:6;49563:10;67773:23;67765:68;;;;;;;9953:2:1;67765:68:0;;;9935:21:1;;;9972:18;;;9965:30;10031:34;10011:18;;;10004:62;10083:18;;67765:68:0;9751:356:1;27168:282:0;27233:4;27289:7;73300:1;27270:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;-1:-1:-1;;27374:26:0;;;;:17;:26;;;;;;11176:8;27374:44;:49;;27168:282::o;21854:1275::-;21921:7;21956;;73300:1;22005:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:23;;;:17;:23;;;;;;11176:8;22202:24;;22198:845;;22867:113;22874:11;22867:113;;-1:-1:-1;22945:6:0;;22927:25;;;;:17;:25;;;;;;22867:113;;;23013:6;21854:1275;-1:-1:-1;;;21854:1275:0:o;22198:845::-;22073:989;22047:1015;23090:31;;;;;;;;;;;;;;68811:191;68904:6;;;;68921:17;;;;;;;;;;;68954:40;;68904:6;;;68921:17;68904:6;;68954:40;;68885:16;;68954:40;68874:128;68811:191;:::o;43308:112::-;43385:27;43395:2;43399:8;43385:27;;;;;;;;;;;;:9;:27::i;35639:716::-;35823:88;;;;;35802:4;;35823:45;;;;;;:88;;49563:10;;35890:4;;35896:7;;35905:5;;35823:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35823:88:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36106:13:0;;36102:235;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35982:64;;35992:54;35982:64;;-1:-1:-1;35819:529:0;35639:716;;;;;;:::o;74592:151::-;74690:13;74728:7;74721:14;;;;;:::i;51865:723::-;51921:13;52142:10;52138:53;;-1:-1:-1;;52169:10:0;;;;;;;;;;;;;;;;;;51865:723::o;52138:53::-;52216:5;52201:12;52257:78;52264:9;;52257:78;;52290:8;;;;:::i;:::-;;-1:-1:-1;52313:10:0;;-1:-1:-1;52321:2:0;52313:10;;:::i;:::-;;;52257:78;;;52345:19;52377:6;52367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52367:17:0;;52345:39;;52395:154;52402:10;;52395:154;;52429:11;52439:1;52429:11;;:::i;:::-;;-1:-1:-1;52498:10:0;52506:2;52498:5;:10;:::i;:::-;52485:24;;:2;:24;:::i;:::-;52472:39;;52455:6;52462;52455:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;52526:11:0;52535:2;52526:11;;:::i;:::-;;;52395:154;;57910:190;58035:4;58088;58059:25;58072:5;58079:4;58059:12;:25::i;:::-;:33;;57910:190;-1:-1:-1;;;;57910:190:0:o;42535:689::-;42666:19;42672:2;42676:8;42666:5;:19::i;:::-;42727:14;;;;:19;42723:483;;42767:11;42781:13;42829:14;;;42862:233;42893:62;42932:1;42936:2;42940:7;;;;;;42949:5;42893:30;:62::i;:::-;42888:167;;42991:40;;;;;;;;;;;;;;42888:167;43090:3;43082:5;:11;42862:233;;43177:3;43160:13;;:20;43156:34;;43182:8;;;58777:296;58860:7;58903:4;58860:7;58918:118;58942:5;:12;58938:1;:16;58918:118;;;58991:33;59001:12;59015:5;59021:1;59015:8;;;;;;;;:::i;:::-;;;;;;;58991:9;:33::i;:::-;58976:48;-1:-1:-1;58956:3:0;;;;:::i;:::-;;;;58918:118;;;-1:-1:-1;59053:12:0;58777:296;-1:-1:-1;;;58777:296:0:o;36817:2966::-;36890:20;36913:13;36941;36937:44;;36963:18;;;;;;;;;;;;;;36937:44;37469:22;;;;;;;:18;:22;;;;10538:2;37469:22;;;:71;;37507:32;37495:45;;37469:71;;;37783:31;;;:17;:31;;;;;-1:-1:-1;24519:15:0;;24493:24;24489:46;24088:11;24063:23;24059:41;24056:52;24046:63;;37783:173;;38018:23;;;;37783:31;;37469:22;;38783:25;37469:22;;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39378:15;39237:346;;;-1:-1:-1;39616:13:0;39612:45;;39638:19;;;;;;;;;;;;;;39612:45;39674:13;:19;-1:-1:-1;32357:193:0;;;:::o;64984:149::-;65047:7;65078:1;65074;:5;:51;;65209:13;65303:15;;;65339:4;65332:15;;;65386:4;65370:21;;65074:51;;;-1:-1:-1;65209:13:0;65303:15;;;65339:4;65332:15;65386:4;65370:21;;;64984:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;194:66;339:24;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:196::-;777:20;;837:42;826:54;;816:65;;806:93;;895:1;892;885:12;806:93;709:196;;;:::o;910:367::-;973:8;983:6;1037:3;1030:4;1022:6;1018:17;1014:27;1004:55;;1055:1;1052;1045:12;1004:55;-1:-1:-1;1078:20:1;;1121:18;1110:30;;1107:50;;;1153:1;1150;1143:12;1107:50;1190:4;1182:6;1178:17;1166:29;;1250:3;1243:4;1233:6;1230:1;1226:14;1218:6;1214:27;1210:38;1207:47;1204:67;;;1267:1;1264;1257:12;1204:67;910:367;;;;;:::o;1282:160::-;1347:20;;1403:13;;1396:21;1386:32;;1376:60;;1432:1;1429;1422:12;1447:186;1506:6;1559:2;1547:9;1538:7;1534:23;1530:32;1527:52;;;1575:1;1572;1565:12;1527:52;1598:29;1617:9;1598:29;:::i;1638:260::-;1706:6;1714;1767:2;1755:9;1746:7;1742:23;1738:32;1735:52;;;1783:1;1780;1773:12;1735:52;1806:29;1825:9;1806:29;:::i;:::-;1796:39;;1854:38;1888:2;1877:9;1873:18;1854:38;:::i;:::-;1844:48;;1638:260;;;;;:::o;1903:328::-;1980:6;1988;1996;2049:2;2037:9;2028:7;2024:23;2020:32;2017:52;;;2065:1;2062;2055:12;2017:52;2088:29;2107:9;2088:29;:::i;:::-;2078:39;;2136:38;2170:2;2159:9;2155:18;2136:38;:::i;:::-;2126:48;;2221:2;2210:9;2206:18;2193:32;2183:42;;1903:328;;;;;:::o;2236:666::-;2331:6;2339;2347;2355;2408:3;2396:9;2387:7;2383:23;2379:33;2376:53;;;2425:1;2422;2415:12;2376:53;2448:29;2467:9;2448:29;:::i;:::-;2438:39;;2496:38;2530:2;2519:9;2515:18;2496:38;:::i;:::-;2486:48;;2581:2;2570:9;2566:18;2553:32;2543:42;;2636:2;2625:9;2621:18;2608:32;2663:18;2655:6;2652:30;2649:50;;;2695:1;2692;2685:12;2649:50;2718:22;;2771:4;2763:13;;2759:27;-1:-1:-1;2749:55:1;;2800:1;2797;2790:12;2749:55;2823:73;2888:7;2883:2;2870:16;2865:2;2861;2857:11;2823:73;:::i;:::-;2813:83;;;2236:666;;;;;;;:::o;2907:254::-;2972:6;2980;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3072:29;3091:9;3072:29;:::i;:::-;3062:39;;3120:35;3151:2;3140:9;3136:18;3120:35;:::i;3166:254::-;3234:6;3242;3295:2;3283:9;3274:7;3270:23;3266:32;3263:52;;;3311:1;3308;3301:12;3263:52;3334:29;3353:9;3334:29;:::i;:::-;3324:39;3410:2;3395:18;;;;3382:32;;-1:-1:-1;;;3166:254:1:o;3425:773::-;3547:6;3555;3563;3571;3624:2;3612:9;3603:7;3599:23;3595:32;3592:52;;;3640:1;3637;3630:12;3592:52;3680:9;3667:23;3709:18;3750:2;3742:6;3739:14;3736:34;;;3766:1;3763;3756:12;3736:34;3805:70;3867:7;3858:6;3847:9;3843:22;3805:70;:::i;:::-;3894:8;;-1:-1:-1;3779:96:1;-1:-1:-1;3982:2:1;3967:18;;3954:32;;-1:-1:-1;3998:16:1;;;3995:36;;;4027:1;4024;4017:12;3995:36;;4066:72;4130:7;4119:8;4108:9;4104:24;4066:72;:::i;:::-;3425:773;;;;-1:-1:-1;4157:8:1;-1:-1:-1;;;;3425:773:1:o;4203:180::-;4259:6;4312:2;4300:9;4291:7;4287:23;4283:32;4280:52;;;4328:1;4325;4318:12;4280:52;4351:26;4367:9;4351:26;:::i;4388:180::-;4447:6;4500:2;4488:9;4479:7;4475:23;4471:32;4468:52;;;4516:1;4513;4506:12;4468:52;-1:-1:-1;4539:23:1;;4388:180;-1:-1:-1;4388:180:1:o;4573:245::-;4631:6;4684:2;4672:9;4663:7;4659:23;4655:32;4652:52;;;4700:1;4697;4690:12;4652:52;4739:9;4726:23;4758:30;4782:5;4758:30;:::i;4823:249::-;4892:6;4945:2;4933:9;4924:7;4920:23;4916:32;4913:52;;;4961:1;4958;4951:12;4913:52;4993:9;4987:16;5012:30;5036:5;5012:30;:::i;5077:450::-;5146:6;5199:2;5187:9;5178:7;5174:23;5170:32;5167:52;;;5215:1;5212;5205:12;5167:52;5255:9;5242:23;5288:18;5280:6;5277:30;5274:50;;;5320:1;5317;5310:12;5274:50;5343:22;;5396:4;5388:13;;5384:27;-1:-1:-1;5374:55:1;;5425:1;5422;5415:12;5374:55;5448:73;5513:7;5508:2;5495:16;5490:2;5486;5482:11;5448:73;:::i;5717:254::-;5785:6;5793;5846:2;5834:9;5825:7;5821:23;5817:32;5814:52;;;5862:1;5859;5852:12;5814:52;5898:9;5885:23;5875:33;;5927:38;5961:2;5950:9;5946:18;5927:38;:::i;5976:505::-;6071:6;6079;6087;6140:2;6128:9;6119:7;6115:23;6111:32;6108:52;;;6156:1;6153;6146:12;6108:52;6192:9;6179:23;6169:33;;6253:2;6242:9;6238:18;6225:32;6280:18;6272:6;6269:30;6266:50;;;6312:1;6309;6302:12;6266:50;6351:70;6413:7;6404:6;6393:9;6389:22;6351:70;:::i;:::-;5976:505;;6440:8;;-1:-1:-1;6325:96:1;;-1:-1:-1;;;;5976:505:1:o;6486:276::-;6544:6;6597:2;6585:9;6576:7;6572:23;6568:32;6565:52;;;6613:1;6610;6603:12;6565:52;6652:9;6639:23;6702:10;6695:5;6691:22;6684:5;6681:33;6671:61;;6728:1;6725;6718:12;6767:316;6808:3;6846:5;6840:12;6873:6;6868:3;6861:19;6889:63;6945:6;6938:4;6933:3;6929:14;6922:4;6915:5;6911:16;6889:63;:::i;:::-;6997:2;6985:15;7002:66;6981:88;6972:98;;;;7072:4;6968:109;;6767:316;-1:-1:-1;;6767:316:1:o;7357:637::-;7637:3;7675:6;7669:13;7691:53;7737:6;7732:3;7725:4;7717:6;7713:17;7691:53;:::i;:::-;7807:13;;7766:16;;;;7829:57;7807:13;7766:16;7863:4;7851:17;;7829:57;:::i;:::-;7951:7;7908:20;;7937:22;;;7986:1;7975:13;;7357:637;-1:-1:-1;;;;7357:637:1:o;8230:511::-;8424:4;8453:42;8534:2;8526:6;8522:15;8511:9;8504:34;8586:2;8578:6;8574:15;8569:2;8558:9;8554:18;8547:43;;8626:6;8621:2;8610:9;8606:18;8599:34;8669:3;8664:2;8653:9;8649:18;8642:31;8690:45;8730:3;8719:9;8715:19;8707:6;8690:45;:::i;:::-;8682:53;8230:511;-1:-1:-1;;;;;;8230:511:1:o;9120:219::-;9269:2;9258:9;9251:21;9232:4;9289:44;9329:2;9318:9;9314:18;9306:6;9289:44;:::i;10654:128::-;10694:3;10725:1;10721:6;10718:1;10715:13;10712:39;;;10731:18;;:::i;:::-;-1:-1:-1;10767:9:1;;10654:128::o;10787:120::-;10827:1;10853;10843:35;;10858:18;;:::i;:::-;-1:-1:-1;10892:9:1;;10787:120::o;10912:228::-;10952:7;11078:1;11010:66;11006:74;11003:1;11000:81;10995:1;10988:9;10981:17;10977:105;10974:131;;;11085:18;;:::i;:::-;-1:-1:-1;11125:9:1;;10912:228::o;11145:125::-;11185:4;11213:1;11210;11207:8;11204:34;;;11218:18;;:::i;:::-;-1:-1:-1;11255:9:1;;11145:125::o;11275:258::-;11347:1;11357:113;11371:6;11368:1;11365:13;11357:113;;;11447:11;;;11441:18;11428:11;;;11421:39;11393:2;11386:10;11357:113;;;11488:6;11485:1;11482:13;11479:48;;;-1:-1:-1;;11523:1:1;11505:16;;11498:27;11275:258::o;11538:437::-;11617:1;11613:12;;;;11660;;;11681:61;;11735:4;11727:6;11723:17;11713:27;;11681:61;11788:2;11780:6;11777:14;11757:18;11754:38;11751:218;;;11825:77;11822:1;11815:88;11926:4;11923:1;11916:15;11954:4;11951:1;11944:15;11751:218;;11538:437;;;:::o;11980:195::-;12019:3;12050:66;12043:5;12040:77;12037:103;;;12120:18;;:::i;:::-;-1:-1:-1;12167:1:1;12156:13;;11980:195::o;12180:112::-;12212:1;12238;12228:35;;12243:18;;:::i;:::-;-1:-1:-1;12277:9:1;;12180:112::o;12297:184::-;12349:77;12346:1;12339:88;12446:4;12443:1;12436:15;12470:4;12467:1;12460:15;12486:184;12538:77;12535:1;12528:88;12635:4;12632:1;12625:15;12659:4;12656:1;12649:15;12675:184;12727:77;12724:1;12717:88;12824:4;12821:1;12814:15;12848:4;12845:1;12838:15;12864:184;12916:77;12913:1;12906:88;13013:4;13010:1;13003:15;13037:4;13034:1;13027:15;13053:177;13138:66;13131:5;13127:78;13120:5;13117:89;13107:117;;13220:1;13217;13210:12
Swarm Source
ipfs://c47f9a9f5b1cf4977cdbd38ff334fbe9ed577503c06e62ae5b85a509e3f6e729
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.