ETH Price: $3,110.81 (+1.31%)
Gas: 5 Gwei

Token

Hashimotocat (HSMT-CAT)
 

Overview

Max Total Supply

5,024 HSMT-CAT

Holders

1,364

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HSMT-CAT
0x366F599b926c74f58422a94e78915c4Ce529499f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HashimotoCat

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-15
*/

//. 
//. .-. .-.  .--.   .----..-. .-..-..-.   .-. .----.  .---.  .----.     .---.   .--.  .---. 
//. | {_} | / {} \ { {__  | {_} || ||  `.'  |/  {}  \{_   _}/  {}  \   /  ___} / {} \{_   _}
//. | { } |/  /\  \.-._} }| { } || || |\ /| |\      /  | |  \      /   \     }/  /\  \ | |  
//. `-' `-'`-'  `-'`----' `-' `-'`-'`-' ` `-' `----'   `-'   `----'     `---' `-'  `-' `-'  
//. 

// SPDX-License-Identifier: MIT

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * 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();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of 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 through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            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`.
     *
     * 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 calldata data
    ) external;

    /**
     * @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
    ) external;

    /**
     * @dev Transfers `tokenId` token 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;

    /**
     * @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;

    /**
     * @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 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * 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);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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 '';
    }

    /**
     * @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))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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 {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, 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/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/hashimotocat.sol



pragma solidity ^0.8.4;





contract HashimotoCat is Ownable, ERC721A, ReentrancyGuard {
    mapping(address => uint256) public minted;

    constructor() ERC721A("Hashimotocat", "HSMT-CAT") {
        hashimotocatConfig.pause = false;
        hashimotocatConfig.price = 10000000000000000;
        hashimotocatConfig.maxMint = 5;
        hashimotocatConfig.maxSupply = 10000;
    }

    struct HashimotocatConfig {
        bool pause;
        uint256 price;
        uint256 maxMint;
        uint256 maxSupply;
    }
    HashimotocatConfig public hashimotocatConfig;

    function mint(uint256 quantity) external payable {
        HashimotocatConfig memory config = hashimotocatConfig;
        bool pause = bool(config.pause);
        uint256 price = uint256(config.price);
        uint256 maxMint = uint256(config.maxMint);
        uint256 buyed = getAddressBuyed(msg.sender);

        require(
            !pause,
            "Mint paused."
        );

        require(
            totalSupply() + quantity <= getMaxSupply(),
            "No more hashimoto cat."
        );
    
        require(
            buyed + quantity <= maxMint,
            "Exceed maxmium mint."
        );

        bool requirePay = ( quantity > 1 || buyed > 0 ) ? true : false;
        if (requirePay) {
            uint256 freeQuota = buyed == 0 ? 1 : 0;
            uint256 finalPrice = (quantity - freeQuota) * price;
            
            require(
                finalPrice <= msg.value,
                "No enough eth."
            );
        }

        _safeMint(msg.sender, quantity);
        minted[msg.sender] += quantity;
    }

    function makeHashimotocat(uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= getMaxSupply(),
            "No more hashimoto cat."
        );

        _safeMint(msg.sender, quantity);
    }

    function getAddressBuyed(address owner) public view returns (uint256) {
        return minted[owner];
    }
    
    function getMaxSupply() private view returns (uint256) {
        HashimotocatConfig memory config = hashimotocatConfig;
        uint256 max = uint256(config.maxSupply);
        return max;
    }

    string private _baseTokenURI;

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setPrice(uint256 _price) external onlyOwner {
        hashimotocatConfig.price = _price;
    }

    function setPause(bool _pause) external onlyOwner {
        hashimotocatConfig.pause = _pause;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "a");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getAddressBuyed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hashimotocatConfig","outputs":[{"internalType":"bool","name":"pause","type":"bool"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"makeHashimotocat","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020016b12185cda1a5b5bdd1bd8d85d60a21b815250604051806040016040528060088152602001671214d3550b50d05560c21b815250620000726200006c620000d060201b60201c565b620000d4565b81516200008790600390602085019062000124565b5080516200009d90600490602084019062000124565b50600060019081556009555050600b805460ff19169055662386f26fc10000600c556005600d55612710600e5562000207565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013290620001ca565b90600052602060002090601f016020900481019282620001565760008555620001a1565b82601f106200017157805160ff1916838001178555620001a1565b82800160010185558215620001a1579182015b82811115620001a157825182559160200191906001019062000184565b50620001af929150620001b3565b5090565b5b80821115620001af5760008155600101620001b4565b600181811c90821680620001df57607f821691505b602082108114156200020157634e487b7160e01b600052602260045260246000fd5b50919050565b61184780620002176000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a0712d681161008a578063bedb86fb11610064578063bedb86fb14610495578063c87b56dd146104b5578063e985e9c5146104d5578063f2fde38b1461051e57600080fd5b8063a0712d6814610442578063a22cb46514610455578063b88d4fde1461047557600080fd5b806370a082311461039a578063715018a6146103ba5780638da5cb5b146103cf57806391b7f5ed146103ed57806395d89b411461040d5780639b674b141461042257600080fd5b806318160ddd1161013e57806323b872dd1161011857806323b872dd146103255780633ccfd60b1461034557806342842e0e1461035a5780636352211e1461037a57600080fd5b806318160ddd1461029f5780631e7269c5146102c25780631fc895db146102ef57600080fd5b806301ffc9a71461018657806302fe5305146101bb57806306fdde03146101dd578063081812fc146101ff578063095ea7b3146102375780630d23831a14610257575b600080fd5b34801561019257600080fd5b506101a66101a13660046115aa565b61053e565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101db6101d63660046115e4565b610590565b005b3480156101e957600080fd5b506101f26105a9565b6040516101b29190611707565b34801561020b57600080fd5b5061021f61021a366004611656565b61063b565b6040516001600160a01b0390911681526020016101b2565b34801561024357600080fd5b506101db610252366004611565565b61067f565b34801561026357600080fd5b50600b54600c54600d54600e5461027d9360ff1692919084565b60408051941515855260208501939093529183015260608201526080016101b2565b3480156102ab57600080fd5b50600254600154035b6040519081526020016101b2565b3480156102ce57600080fd5b506102b46102dd3660046113d5565b600a6020526000908152604090205481565b3480156102fb57600080fd5b506102b461030a3660046113d5565b6001600160a01b03166000908152600a602052604090205490565b34801561033157600080fd5b506101db610340366004611423565b61071f565b34801561035157600080fd5b506101db6108b0565b34801561036657600080fd5b506101db610375366004611423565b610999565b34801561038657600080fd5b5061021f610395366004611656565b6109b4565b3480156103a657600080fd5b506102b46103b53660046113d5565b6109bf565b3480156103c657600080fd5b506101db610a0e565b3480156103db57600080fd5b506000546001600160a01b031661021f565b3480156103f957600080fd5b506101db610408366004611656565b610a22565b34801561041957600080fd5b506101f2610a2f565b34801561042e57600080fd5b506101db61043d366004611656565b610a3e565b6101db610450366004611656565b610ae3565b34801561046157600080fd5b506101db61047036600461153b565b610d2a565b34801561048157600080fd5b506101db61049036600461145f565b610dc0565b3480156104a157600080fd5b506101db6104b036600461158f565b610e0a565b3480156104c157600080fd5b506101f26104d0366004611656565b610e25565b3480156104e157600080fd5b506101a66104f03660046113f0565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561052a57600080fd5b506101db6105393660046113d5565b610eaa565b60006301ffc9a760e01b6001600160e01b03198316148061056f57506380ac58cd60e01b6001600160e01b03198316145b8061058a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b610598610f20565b6105a4600f8383611310565b505050565b6060600380546105b890611794565b80601f01602080910402602001604051908101604052809291908181526020018280546105e490611794565b80156106315780601f1061060657610100808354040283529160200191610631565b820191906000526020600020905b81548152906001019060200180831161061457829003601f168201915b5050505050905090565b600061064682610f7a565b610663576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061068a826109b4565b9050336001600160a01b038216146106c3576106a681336104f0565b6106c3576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061072a82610fa2565b9050836001600160a01b0316816001600160a01b03161461075d5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176107aa5761078d86336104f0565b6107aa57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107d157604051633a954ecd60e21b815260040160405180910390fd5b80156107dc57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b831661086757600184016000818152600560205260409020546108655760015481146108655760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108b8610f20565b600260095414156109105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955604051600090339047908381818185875af1925050503d8060008114610957576040519150601f19603f3d011682016040523d82523d6000602084013e61095c565b606091505b50509050806109915760405162461bcd60e51b81526020600482015260016024820152606160f81b6044820152606401610907565b506001600955565b6105a483838360405180602001604052806000815250610dc0565b600061058a82610fa2565b60006001600160a01b0382166109e8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610a16610f20565b610a206000611003565b565b610a2a610f20565b600c55565b6060600480546105b890611794565b610a46610f20565b60408051608081018252600b5460ff1615158152600c546020820152600d5491810191909152600e54606090910181905281610a856002546001540390565b610a8f919061171a565b1115610ad65760405162461bcd60e51b815260206004820152601660248201527527379036b7b932903430b9b434b6b7ba379031b0ba1760511b6044820152606401610907565b610ae03382611053565b50565b60408051608081018252600b5460ff161515808252600c5460208301819052600d54938301849052600e54606084015291929091906000610b39336001600160a01b03166000908152600a602052604090205490565b90508315610b785760405162461bcd60e51b815260206004820152600c60248201526b26b4b73a103830bab9b2b21760a11b6044820152606401610907565b60408051608081018252600b5460ff1615158152600c546020820152600d5491810191909152600e54606090910181905286610bb76002546001540390565b610bc1919061171a565b1115610c085760405162461bcd60e51b815260206004820152601660248201527527379036b7b932903430b9b434b6b7ba379031b0ba1760511b6044820152606401610907565b81610c13878361171a565b1115610c585760405162461bcd60e51b815260206004820152601460248201527322bc31b2b2b21036b0bc36b4bab69036b4b73a1760611b6044820152606401610907565b60006001871180610c695750600082115b610c74576000610c77565b60015b90508015610cf35760008215610c8e576000610c91565b60015b60ff169050600085610ca3838b611751565b610cad9190611732565b905034811115610cf05760405162461bcd60e51b815260206004820152600e60248201526d27379032b737bab3b41032ba341760911b6044820152606401610907565b50505b610cfd3388611053565b336000908152600a602052604081208054899290610d1c90849061171a565b909155505050505050505050565b6001600160a01b038216331415610d545760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dcb84848461071f565b6001600160a01b0383163b15610e0457610de784848484611071565b610e04576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610e12610f20565b600b805460ff1916911515919091179055565b6060610e3082610f7a565b610e4d57604051630a14c4b560e41b815260040160405180910390fd5b6000610e57611168565b9050805160001415610e785760405180602001604052806000815250610ea3565b80610e8284611177565b604051602001610e9392919061169b565b6040516020818303038152906040525b9392505050565b610eb2610f20565b6001600160a01b038116610f175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610907565b610ae081611003565b6000546001600160a01b03163314610a205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610907565b60006001548210801561058a575050600090815260056020526040902054600160e01b161590565b600081600154811015610fea57600081815260056020526040902054600160e01b8116610fe8575b80610ea3575060001901600081815260056020526040902054610fca565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61106d8282604051806020016040528060008152506111c6565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110a69033908990889088906004016116ca565b602060405180830381600087803b1580156110c057600080fd5b505af19250505080156110f0575060408051601f3d908101601f191682019092526110ed918101906115c7565b60015b61114b573d80801561111e576040519150601f19603f3d011682016040523d82523d6000602084013e611123565b606091505b508051611143576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600f80546105b890611794565b604080516080810191829052607f0190826030600a8206018353600a90045b80156111b457600183039250600a81066030018353600a9004611196565b50819003601f19909101908152919050565b6111d08383611233565b6001600160a01b0383163b156105a4576001548281035b6111fa6000868380600101945086611071565b611217576040516368d2bf6b60e11b815260040160405180910390fd5b8181106111e757816001541461122c57600080fd5b5050505050565b6001546001600160a01b03831661125c57604051622e076360e81b815260040160405180910390fd5b8161127a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112c45760015550505050565b82805461131c90611794565b90600052602060002090601f01602090048101928261133e5760008555611384565b82601f106113575782800160ff19823516178555611384565b82800160010185558215611384579182015b82811115611384578235825591602001919060010190611369565b50611390929150611394565b5090565b5b808211156113905760008155600101611395565b80356001600160a01b03811681146113c057600080fd5b919050565b803580151581146113c057600080fd5b6000602082840312156113e757600080fd5b610ea3826113a9565b6000806040838503121561140357600080fd5b61140c836113a9565b915061141a602084016113a9565b90509250929050565b60008060006060848603121561143857600080fd5b611441846113a9565b925061144f602085016113a9565b9150604084013590509250925092565b6000806000806080858703121561147557600080fd5b61147e856113a9565b935061148c602086016113a9565b925060408501359150606085013567ffffffffffffffff808211156114b057600080fd5b818701915087601f8301126114c457600080fd5b8135818111156114d6576114d66117e5565b604051601f8201601f19908116603f011681019083821181831017156114fe576114fe6117e5565b816040528281528a602084870101111561151757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561154e57600080fd5b611557836113a9565b915061141a602084016113c5565b6000806040838503121561157857600080fd5b611581836113a9565b946020939093013593505050565b6000602082840312156115a157600080fd5b610ea3826113c5565b6000602082840312156115bc57600080fd5b8135610ea3816117fb565b6000602082840312156115d957600080fd5b8151610ea3816117fb565b600080602083850312156115f757600080fd5b823567ffffffffffffffff8082111561160f57600080fd5b818501915085601f83011261162357600080fd5b81358181111561163257600080fd5b86602082850101111561164457600080fd5b60209290920196919550909350505050565b60006020828403121561166857600080fd5b5035919050565b60008151808452611687816020860160208601611768565b601f01601f19169290920160200192915050565b600083516116ad818460208801611768565b8351908301906116c1818360208801611768565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116fd9083018461166f565b9695505050505050565b602081526000610ea3602083018461166f565b6000821982111561172d5761172d6117cf565b500190565b600081600019048311821515161561174c5761174c6117cf565b500290565b600082821015611763576117636117cf565b500390565b60005b8381101561178357818101518382015260200161176b565b83811115610e045750506000910152565b600181811c908216806117a857607f821691505b602082108114156117c957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ae057600080fdfea26469706673582212202d02b5092d026b5c621737879b14d79ef62a15ca6d24363657453c71970f4d7264736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a0712d681161008a578063bedb86fb11610064578063bedb86fb14610495578063c87b56dd146104b5578063e985e9c5146104d5578063f2fde38b1461051e57600080fd5b8063a0712d6814610442578063a22cb46514610455578063b88d4fde1461047557600080fd5b806370a082311461039a578063715018a6146103ba5780638da5cb5b146103cf57806391b7f5ed146103ed57806395d89b411461040d5780639b674b141461042257600080fd5b806318160ddd1161013e57806323b872dd1161011857806323b872dd146103255780633ccfd60b1461034557806342842e0e1461035a5780636352211e1461037a57600080fd5b806318160ddd1461029f5780631e7269c5146102c25780631fc895db146102ef57600080fd5b806301ffc9a71461018657806302fe5305146101bb57806306fdde03146101dd578063081812fc146101ff578063095ea7b3146102375780630d23831a14610257575b600080fd5b34801561019257600080fd5b506101a66101a13660046115aa565b61053e565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101db6101d63660046115e4565b610590565b005b3480156101e957600080fd5b506101f26105a9565b6040516101b29190611707565b34801561020b57600080fd5b5061021f61021a366004611656565b61063b565b6040516001600160a01b0390911681526020016101b2565b34801561024357600080fd5b506101db610252366004611565565b61067f565b34801561026357600080fd5b50600b54600c54600d54600e5461027d9360ff1692919084565b60408051941515855260208501939093529183015260608201526080016101b2565b3480156102ab57600080fd5b50600254600154035b6040519081526020016101b2565b3480156102ce57600080fd5b506102b46102dd3660046113d5565b600a6020526000908152604090205481565b3480156102fb57600080fd5b506102b461030a3660046113d5565b6001600160a01b03166000908152600a602052604090205490565b34801561033157600080fd5b506101db610340366004611423565b61071f565b34801561035157600080fd5b506101db6108b0565b34801561036657600080fd5b506101db610375366004611423565b610999565b34801561038657600080fd5b5061021f610395366004611656565b6109b4565b3480156103a657600080fd5b506102b46103b53660046113d5565b6109bf565b3480156103c657600080fd5b506101db610a0e565b3480156103db57600080fd5b506000546001600160a01b031661021f565b3480156103f957600080fd5b506101db610408366004611656565b610a22565b34801561041957600080fd5b506101f2610a2f565b34801561042e57600080fd5b506101db61043d366004611656565b610a3e565b6101db610450366004611656565b610ae3565b34801561046157600080fd5b506101db61047036600461153b565b610d2a565b34801561048157600080fd5b506101db61049036600461145f565b610dc0565b3480156104a157600080fd5b506101db6104b036600461158f565b610e0a565b3480156104c157600080fd5b506101f26104d0366004611656565b610e25565b3480156104e157600080fd5b506101a66104f03660046113f0565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561052a57600080fd5b506101db6105393660046113d5565b610eaa565b60006301ffc9a760e01b6001600160e01b03198316148061056f57506380ac58cd60e01b6001600160e01b03198316145b8061058a5750635b5e139f60e01b6001600160e01b03198316145b92915050565b610598610f20565b6105a4600f8383611310565b505050565b6060600380546105b890611794565b80601f01602080910402602001604051908101604052809291908181526020018280546105e490611794565b80156106315780601f1061060657610100808354040283529160200191610631565b820191906000526020600020905b81548152906001019060200180831161061457829003601f168201915b5050505050905090565b600061064682610f7a565b610663576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061068a826109b4565b9050336001600160a01b038216146106c3576106a681336104f0565b6106c3576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061072a82610fa2565b9050836001600160a01b0316816001600160a01b03161461075d5760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b038816909114176107aa5761078d86336104f0565b6107aa57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107d157604051633a954ecd60e21b815260040160405180910390fd5b80156107dc57600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b831661086757600184016000818152600560205260409020546108655760015481146108655760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108b8610f20565b600260095414156109105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600955604051600090339047908381818185875af1925050503d8060008114610957576040519150601f19603f3d011682016040523d82523d6000602084013e61095c565b606091505b50509050806109915760405162461bcd60e51b81526020600482015260016024820152606160f81b6044820152606401610907565b506001600955565b6105a483838360405180602001604052806000815250610dc0565b600061058a82610fa2565b60006001600160a01b0382166109e8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b610a16610f20565b610a206000611003565b565b610a2a610f20565b600c55565b6060600480546105b890611794565b610a46610f20565b60408051608081018252600b5460ff1615158152600c546020820152600d5491810191909152600e54606090910181905281610a856002546001540390565b610a8f919061171a565b1115610ad65760405162461bcd60e51b815260206004820152601660248201527527379036b7b932903430b9b434b6b7ba379031b0ba1760511b6044820152606401610907565b610ae03382611053565b50565b60408051608081018252600b5460ff161515808252600c5460208301819052600d54938301849052600e54606084015291929091906000610b39336001600160a01b03166000908152600a602052604090205490565b90508315610b785760405162461bcd60e51b815260206004820152600c60248201526b26b4b73a103830bab9b2b21760a11b6044820152606401610907565b60408051608081018252600b5460ff1615158152600c546020820152600d5491810191909152600e54606090910181905286610bb76002546001540390565b610bc1919061171a565b1115610c085760405162461bcd60e51b815260206004820152601660248201527527379036b7b932903430b9b434b6b7ba379031b0ba1760511b6044820152606401610907565b81610c13878361171a565b1115610c585760405162461bcd60e51b815260206004820152601460248201527322bc31b2b2b21036b0bc36b4bab69036b4b73a1760611b6044820152606401610907565b60006001871180610c695750600082115b610c74576000610c77565b60015b90508015610cf35760008215610c8e576000610c91565b60015b60ff169050600085610ca3838b611751565b610cad9190611732565b905034811115610cf05760405162461bcd60e51b815260206004820152600e60248201526d27379032b737bab3b41032ba341760911b6044820152606401610907565b50505b610cfd3388611053565b336000908152600a602052604081208054899290610d1c90849061171a565b909155505050505050505050565b6001600160a01b038216331415610d545760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dcb84848461071f565b6001600160a01b0383163b15610e0457610de784848484611071565b610e04576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610e12610f20565b600b805460ff1916911515919091179055565b6060610e3082610f7a565b610e4d57604051630a14c4b560e41b815260040160405180910390fd5b6000610e57611168565b9050805160001415610e785760405180602001604052806000815250610ea3565b80610e8284611177565b604051602001610e9392919061169b565b6040516020818303038152906040525b9392505050565b610eb2610f20565b6001600160a01b038116610f175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610907565b610ae081611003565b6000546001600160a01b03163314610a205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610907565b60006001548210801561058a575050600090815260056020526040902054600160e01b161590565b600081600154811015610fea57600081815260056020526040902054600160e01b8116610fe8575b80610ea3575060001901600081815260056020526040902054610fca565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61106d8282604051806020016040528060008152506111c6565b5050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110a69033908990889088906004016116ca565b602060405180830381600087803b1580156110c057600080fd5b505af19250505080156110f0575060408051601f3d908101601f191682019092526110ed918101906115c7565b60015b61114b573d80801561111e576040519150601f19603f3d011682016040523d82523d6000602084013e611123565b606091505b508051611143576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600f80546105b890611794565b604080516080810191829052607f0190826030600a8206018353600a90045b80156111b457600183039250600a81066030018353600a9004611196565b50819003601f19909101908152919050565b6111d08383611233565b6001600160a01b0383163b156105a4576001548281035b6111fa6000868380600101945086611071565b611217576040516368d2bf6b60e11b815260040160405180910390fd5b8181106111e757816001541461122c57600080fd5b5050505050565b6001546001600160a01b03831661125c57604051622e076360e81b815260040160405180910390fd5b8161127a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112c45760015550505050565b82805461131c90611794565b90600052602060002090601f01602090048101928261133e5760008555611384565b82601f106113575782800160ff19823516178555611384565b82800160010185558215611384579182015b82811115611384578235825591602001919060010190611369565b50611390929150611394565b5090565b5b808211156113905760008155600101611395565b80356001600160a01b03811681146113c057600080fd5b919050565b803580151581146113c057600080fd5b6000602082840312156113e757600080fd5b610ea3826113a9565b6000806040838503121561140357600080fd5b61140c836113a9565b915061141a602084016113a9565b90509250929050565b60008060006060848603121561143857600080fd5b611441846113a9565b925061144f602085016113a9565b9150604084013590509250925092565b6000806000806080858703121561147557600080fd5b61147e856113a9565b935061148c602086016113a9565b925060408501359150606085013567ffffffffffffffff808211156114b057600080fd5b818701915087601f8301126114c457600080fd5b8135818111156114d6576114d66117e5565b604051601f8201601f19908116603f011681019083821181831017156114fe576114fe6117e5565b816040528281528a602084870101111561151757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561154e57600080fd5b611557836113a9565b915061141a602084016113c5565b6000806040838503121561157857600080fd5b611581836113a9565b946020939093013593505050565b6000602082840312156115a157600080fd5b610ea3826113c5565b6000602082840312156115bc57600080fd5b8135610ea3816117fb565b6000602082840312156115d957600080fd5b8151610ea3816117fb565b600080602083850312156115f757600080fd5b823567ffffffffffffffff8082111561160f57600080fd5b818501915085601f83011261162357600080fd5b81358181111561163257600080fd5b86602082850101111561164457600080fd5b60209290920196919550909350505050565b60006020828403121561166857600080fd5b5035919050565b60008151808452611687816020860160208601611768565b601f01601f19169290920160200192915050565b600083516116ad818460208801611768565b8351908301906116c1818360208801611768565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116fd9083018461166f565b9695505050505050565b602081526000610ea3602083018461166f565b6000821982111561172d5761172d6117cf565b500190565b600081600019048311821515161561174c5761174c6117cf565b500290565b600082821015611763576117636117cf565b500390565b60005b8381101561178357818101518382015260200161176b565b83811115610e045750506000910152565b600181811c908216806117a857607f821691505b602082108114156117c957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ae057600080fdfea26469706673582212202d02b5092d026b5c621737879b14d79ef62a15ca6d24363657453c71970f4d7264736f6c63430008070033

Deployed Bytecode Sourcemap

51579:2893:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15017:615;;;;;;;;;;-1:-1:-1;15017:615:0;;;;;:::i;:::-;;:::i;:::-;;;6091:14:1;;6084:22;6066:41;;6054:2;6039:18;15017:615:0;;;;;;;;53965:102;;;;;;;;;;-1:-1:-1;53965:102:0;;;;;:::i;:::-;;:::i;:::-;;20664:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22610:204::-;;;;;;;;;;-1:-1:-1;22610:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5389:32:1;;;5371:51;;5359:2;5344:18;22610:204:0;5225:203:1;22158:386:0;;;;;;;;;;-1:-1:-1;22158:386:0;;;;;:::i;:::-;;:::i;52086:44::-;;;;;;;;;;-1:-1:-1;52086:44:0;;;;;;;;;;;;;;;;;;;;;6368:14:1;;6361:22;6343:41;;6415:2;6400:18;;6393:34;;;;6443:18;;;6436:34;6501:2;6486:18;;6479:34;6330:3;6315:19;52086:44:0;6118:401:1;14071:315:0;;;;;;;;;;-1:-1:-1;14337:12:0;;14321:13;;:28;14071:315;;;9735:25:1;;;9723:2;9708:18;14071:315:0;9589:177:1;51645:41:0;;;;;;;;;;-1:-1:-1;51645:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;53479:109;;;;;;;;;;-1:-1:-1;53479:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;53567:13:0;53540:7;53567:13;;;:6;:13;;;;;;;53479:109;31875:2800;;;;;;;;;;-1:-1:-1;31875:2800:0;;;;;:::i;:::-;;:::i;54298:171::-;;;;;;;;;;;;;:::i;23500:185::-;;;;;;;;;;-1:-1:-1;23500:185:0;;;;;:::i;:::-;;:::i;20453:144::-;;;;;;;;;;-1:-1:-1;20453:144:0;;;;;:::i;:::-;;:::i;15696:224::-;;;;;;;;;;-1:-1:-1;15696:224:0;;;;;:::i;:::-;;:::i;50684:103::-;;;;;;;;;;;;;:::i;50036:87::-;;;;;;;;;;-1:-1:-1;50082:7:0;50109:6;-1:-1:-1;;;;;50109:6:0;50036:87;;54075:105;;;;;;;;;;-1:-1:-1;54075:105:0;;;;;:::i;:::-;;:::i;20833:104::-;;;;;;;;;;;;;:::i;53231:240::-;;;;;;;;;;-1:-1:-1;53231:240:0;;;;;:::i;:::-;;:::i;52139:1084::-;;;;;;:::i;:::-;;:::i;22886:308::-;;;;;;;;;;-1:-1:-1;22886:308:0;;;;;:::i;:::-;;:::i;23756:399::-;;;;;;;;;;-1:-1:-1;23756:399:0;;;;;:::i;:::-;;:::i;54188:102::-;;;;;;;;;;-1:-1:-1;54188:102:0;;;;;:::i;:::-;;:::i;21008:318::-;;;;;;;;;;-1:-1:-1;21008:318:0;;;;;:::i;:::-;;:::i;23265:164::-;;;;;;;;;;-1:-1:-1;23265:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23386:25:0;;;23362:4;23386:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23265:164;50942:201;;;;;;;;;;-1:-1:-1;50942:201:0;;;;;:::i;:::-;;:::i;15017:615::-;15102:4;-1:-1:-1;;;;;;;;;15402:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15479:25:0;;;15402:102;:179;;;-1:-1:-1;;;;;;;;;;15556:25:0;;;15402:179;15382:199;15017:615;-1:-1:-1;;15017:615:0:o;53965:102::-;49922:13;:11;:13::i;:::-;54036:23:::1;:13;54052:7:::0;;54036:23:::1;:::i;:::-;;53965:102:::0;;:::o;20664:100::-;20718:13;20751:5;20744:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20664:100;:::o;22610:204::-;22678:7;22703:16;22711:7;22703;:16::i;:::-;22698:64;;22728:34;;-1:-1:-1;;;22728:34:0;;;;;;;;;;;22698:64;-1:-1:-1;22782:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22782:24:0;;22610:204::o;22158:386::-;22231:13;22247:16;22255:7;22247;:16::i;:::-;22231:32;-1:-1:-1;43058:10:0;-1:-1:-1;;;;;22280:28:0;;;22276:175;;22328:44;22345:5;43058:10;23265:164;:::i;22328:44::-;22323:128;;22400:35;;-1:-1:-1;;;22400:35:0;;;;;;;;;;;22323:128;22463:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22463:29:0;-1:-1:-1;;;;;22463:29:0;;;;;;;;;22508:28;;22463:24;;22508:28;;;;;;;22220:324;22158:386;;:::o;31875:2800::-;32009:27;32039;32058:7;32039:18;:27::i;:::-;32009:57;;32124:4;-1:-1:-1;;;;;32083:45:0;32099:19;-1:-1:-1;;;;;32083:45:0;;32079:86;;32137:28;;-1:-1:-1;;;32137:28:0;;;;;;;;;;;32079:86;32179:27;30605:21;;;30432:15;30647:4;30640:36;30729:4;30713:21;;30819:26;;43058:10;31572:30;;;-1:-1:-1;;;;;31270:26:0;;31551:19;;;31548:55;32358:174;;32445:43;32462:4;43058:10;23265:164;:::i;32445:43::-;32440:92;;32497:35;;-1:-1:-1;;;32497:35:0;;;;;;;;;;;32440:92;-1:-1:-1;;;;;32549:16:0;;32545:52;;32574:23;;-1:-1:-1;;;32574:23:0;;;;;;;;;;;32545:52;32746:15;32743:160;;;32886:1;32865:19;32858:30;32743:160;-1:-1:-1;;;;;33281:24:0;;;;;;;:18;:24;;;;;;33279:26;;-1:-1:-1;;33279:26:0;;;33350:22;;;;;;;;;33348:24;;-1:-1:-1;33348:24:0;;;20352:11;20328:22;20324:40;20311:62;-1:-1:-1;;;20311:62:0;33643:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;33937:46:0;;33933:626;;34041:1;34031:11;;34009:19;34164:30;;;:17;:30;;;;;;34160:384;;34302:13;;34287:11;:28;34283:242;;34449:30;;;;:17;:30;;;;;:52;;;34283:242;33990:569;33933:626;34606:7;34602:2;-1:-1:-1;;;;;34587:27:0;34596:4;-1:-1:-1;;;;;34587:27:0;;;;;;;;;;;31998:2677;;;31875:2800;;;:::o;54298:171::-;49922:13;:11;:13::i;:::-;46961:1:::1;47559:7;;:19;;47551:63;;;::::0;-1:-1:-1;;;47551:63:0;;9431:2:1;47551:63:0::1;::::0;::::1;9413:21:1::0;9470:2;9450:18;;;9443:30;9509:33;9489:18;;;9482:61;9560:18;;47551:63:0::1;;;;;;;;;46961:1;47692:7;:18:::0;54380:49:::2;::::0;54362:12:::2;::::0;54380:10:::2;::::0;54403:21:::2;::::0;54362:12;54380:49;54362:12;54380:49;54403:21;54380:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54361:68;;;54448:7;54440:21;;;::::0;-1:-1:-1;;;54440:21:0;;7698:2:1;54440:21:0::2;::::0;::::2;7680::1::0;7737:1;7717:18;;;7710:29;-1:-1:-1;;;7755:18:1;;;7748:31;7796:18;;54440:21:0::2;7496:324:1::0;54440:21:0::2;-1:-1:-1::0;46917:1:0::1;47871:7;:22:::0;54298:171::o;23500:185::-;23638:39;23655:4;23661:2;23665:7;23638:39;;;;;;;;;;;;:16;:39::i;20453:144::-;20517:7;20560:27;20579:7;20560:18;:27::i;15696:224::-;15760:7;-1:-1:-1;;;;;15784:19:0;;15780:60;;15812:28;;-1:-1:-1;;;15812:28:0;;;;;;;;;;;15780:60;-1:-1:-1;;;;;;15858:25:0;;;;;:18;:25;;;;;;10251:13;15858:54;;15696:224::o;50684:103::-;49922:13;:11;:13::i;:::-;50749:30:::1;50776:1;50749:18;:30::i;:::-;50684:103::o:0;54075:105::-;49922:13;:11;:13::i;:::-;54139:24;:33;54075:105::o;20833:104::-;20889:13;20922:7;20915:14;;;;;:::i;53231:240::-;49922:13;:11;:13::i;:::-;53666:53;;;;;;;;53701:18;53666:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53343:8:::1;53327:13;14337:12:::0;;14321:13;;:28;;14071:315;53327:13:::1;:24;;;;:::i;:::-;:42;;53305:114;;;::::0;-1:-1:-1;;;53305:114:0;;8376:2:1;53305:114:0::1;::::0;::::1;8358:21:1::0;8415:2;8395:18;;;8388:30;-1:-1:-1;;;8434:18:1;;;8427:52;8496:18;;53305:114:0::1;8174:346:1::0;53305:114:0::1;53432:31;53442:10;53454:8;53432:9;:31::i;:::-;53231:240:::0;:::o;52139:1084::-;52199:53;;;;;;;;52234:18;52199:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:32;52421:27;52437:10;-1:-1:-1;;;;;53567:13:0;53540:7;53567:13;;;:6;:13;;;;;;;53479:109;52421:27;52405:43;;52484:5;52483:6;52461:68;;;;-1:-1:-1;;;52461:68:0;;7357:2:1;52461:68:0;;;7339:21:1;7396:2;7376:18;;;7369:30;-1:-1:-1;;;7415:18:1;;;7408:42;7467:18;;52461:68:0;7155:336:1;52461:68:0;53666:53;;;;;;;;53701:18;53666:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52580:8;52564:13;14337:12;;14321:13;;:28;;14071:315;52564:13;:24;;;;:::i;:::-;:42;;52542:114;;;;-1:-1:-1;;;52542:114:0;;8376:2:1;52542:114:0;;;8358:21:1;8415:2;8395:18;;;8388:30;-1:-1:-1;;;8434:18:1;;;8427:52;8496:18;;52542:114:0;8174:346:1;52542:114:0;52715:7;52695:16;52703:8;52695:5;:16;:::i;:::-;:27;;52673:97;;;;-1:-1:-1;;;52673:97:0;;8027:2:1;52673:97:0;;;8009:21:1;8066:2;8046:18;;;8039:30;-1:-1:-1;;;8085:18:1;;;8078:50;8145:18;;52673:97:0;7825:344:1;52673:97:0;52783:15;52814:1;52803:8;:12;:25;;;;52827:1;52819:5;:9;52803:25;52801:44;;52840:5;52801:44;;;52833:4;52801:44;52783:62;;52860:10;52856:275;;;52887:17;52907:10;;:18;;52924:1;52907:18;;;52920:1;52907:18;52887:38;;;-1:-1:-1;52940:18:0;52986:5;52962:20;52887:38;52962:8;:20;:::i;:::-;52961:30;;;;:::i;:::-;52940:51;;53060:9;53046:10;:23;;53020:99;;;;-1:-1:-1;;;53020:99:0;;9088:2:1;53020:99:0;;;9070:21:1;9127:2;9107:18;;;9100:30;-1:-1:-1;;;9146:18:1;;;9139:44;9200:18;;53020:99:0;8886:338:1;53020:99:0;52872:259;;52856:275;53143:31;53153:10;53165:8;53143:9;:31::i;:::-;53192:10;53185:18;;;;:6;:18;;;;;:30;;53207:8;;53185:18;:30;;53207:8;;53185:30;:::i;:::-;;;;-1:-1:-1;;;;;;;;;52139:1084:0:o;22886:308::-;-1:-1:-1;;;;;22985:31:0;;43058:10;22985:31;22981:61;;;23025:17;;-1:-1:-1;;;23025:17:0;;;;;;;;;;;22981:61;43058:10;23055:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;23055:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;23055:60:0;;;;;;;;;;23131:55;;6066:41:1;;;23055:49:0;;43058:10;23131:55;;6039:18:1;23131:55:0;;;;;;;22886:308;;:::o;23756:399::-;23923:31;23936:4;23942:2;23946:7;23923:12;:31::i;:::-;-1:-1:-1;;;;;23969:14:0;;;:19;23965:183;;24008:56;24039:4;24045:2;24049:7;24058:5;24008:30;:56::i;:::-;24003:145;;24092:40;;-1:-1:-1;;;24092:40:0;;;;;;;;;;;24003:145;23756:399;;;;:::o;54188:102::-;49922:13;:11;:13::i;:::-;54249:18:::1;:33:::0;;-1:-1:-1;;54249:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54188:102::o;21008:318::-;21081:13;21112:16;21120:7;21112;:16::i;:::-;21107:59;;21137:29;;-1:-1:-1;;;21137:29:0;;;;;;;;;;;21107:59;21179:21;21203:10;:8;:10::i;:::-;21179:34;;21237:7;21231:21;21256:1;21231:26;;:87;;;;;;;;;;;;;;;;;21284:7;21293:18;21303:7;21293:9;:18::i;:::-;21267:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21231:87;21224:94;21008:318;-1:-1:-1;;;21008:318:0:o;50942:201::-;49922:13;:11;:13::i;:::-;-1:-1:-1;;;;;51031:22:0;::::1;51023:73;;;::::0;-1:-1:-1;;;51023:73:0;;6950:2:1;51023:73:0::1;::::0;::::1;6932:21:1::0;6989:2;6969:18;;;6962:30;7028:34;7008:18;;;7001:62;-1:-1:-1;;;7079:18:1;;;7072:36;7125:19;;51023:73:0::1;6748:402:1::0;51023:73:0::1;51107:28;51126:8;51107:18;:28::i;50201:132::-:0;50082:7;50109:6;-1:-1:-1;;;;;50109:6:0;43058:10;50265:23;50257:68;;;;-1:-1:-1;;;50257:68:0;;8727:2:1;50257:68:0;;;8709:21:1;;;8746:18;;;8739:30;8805:34;8785:18;;;8778:62;8857:18;;50257:68:0;8525:356:1;24410:273:0;24467:4;24557:13;;24547:7;:23;24504:152;;;;-1:-1:-1;;24608:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24608:43:0;:48;;24410:273::o;17370:1129::-;17437:7;17472;17574:13;;17567:4;:20;17563:869;;;17612:14;17629:23;;;:17;:23;;;;;;-1:-1:-1;;;17718:23:0;;17714:699;;18237:113;18244:11;18237:113;;-1:-1:-1;;;18315:6:0;18297:25;;;;:17;:25;;;;;;18237:113;;17714:699;17589:843;17563:869;18460:31;;-1:-1:-1;;;18460:31:0;;;;;;;;;;;51303:191;51377:16;51396:6;;-1:-1:-1;;;;;51413:17:0;;;-1:-1:-1;;;;;;51413:17:0;;;;;;51446:40;;51396:6;;;;;;;51446:40;;51377:16;51446:40;51366:128;51303:191;:::o;24767:104::-;24836:27;24846:2;24850:8;24836:27;;;;;;;;;;;;:9;:27::i;:::-;24767:104;;:::o;38626:716::-;38810:88;;-1:-1:-1;;;38810:88:0;;38789:4;;-1:-1:-1;;;;;38810:45:0;;;;;:88;;43058:10;;38877:4;;38883:7;;38892:5;;38810:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38810:88:0;;;;;;;;-1:-1:-1;;38810:88:0;;;;;;;;;;;;:::i;:::-;;;38806:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39093:13:0;;39089:235;;39139:40;;-1:-1:-1;;;39139:40:0;;;;;;;;;;;39089:235;39282:6;39276:13;39267:6;39263:2;39259:15;39252:38;38806:529;-1:-1:-1;;;;;;38969:64:0;-1:-1:-1;;;38969:64:0;;-1:-1:-1;38626:716:0;;;;;;:::o;53843:114::-;53903:13;53936;53929:20;;;;;:::i;43182:1960::-;43651:4;43645:11;;43658:3;43641:21;;43736:17;;;;44432:11;;;44311:5;44564:2;44578;44568:13;;44560:22;44432:11;44547:36;44619:2;44609:13;;44203:697;44638:4;44203:697;;;44829:1;44824:3;44820:11;44813:18;;44880:2;44874:4;44870:13;44866:2;44862:22;44857:3;44849:36;44733:2;44723:13;;44203:697;;;-1:-1:-1;44930:13:0;;;-1:-1:-1;;45045:12:0;;;45105:19;;;45045:12;43182:1960;-1:-1:-1;43182:1960:0:o;25287:681::-;25410:19;25416:2;25420:8;25410:5;:19::i;:::-;-1:-1:-1;;;;;25471:14:0;;;:19;25467:483;;25525:13;;25573:14;;;25606:233;25637:62;25676:1;25680:2;25684:7;;;;;;25693:5;25637:30;:62::i;:::-;25632:167;;25735:40;;-1:-1:-1;;;25735:40:0;;;;;;;;;;;25632:167;25834:3;25826:5;:11;25606:233;;25921:3;25904:13;;:20;25900:34;;25926:8;;;25900:34;25492:458;;25287:681;;;:::o;26241:1529::-;26329:13;;-1:-1:-1;;;;;26357:16:0;;26353:48;;26382:19;;-1:-1:-1;;;26382:19:0;;;;;;;;;;;26353:48;26416:13;26412:44;;26438:18;;-1:-1:-1;;;26438:18:0;;;;;;;;;;;26412:44;-1:-1:-1;;;;;26944:22:0;;;;;;:18;:22;;10388:2;26944:22;;:70;;26982:31;26970:44;;26944:70;;;20352:11;20328:22;20324:40;-1:-1:-1;22062:15:0;;22037:23;22033:45;20321:51;20311:62;27257:31;;;;:17;:31;;;;;:173;27275:12;27506:23;;;27544:101;27571:35;;27596:9;;;;;-1:-1:-1;;;;;27571:35:0;;;27588:1;;27571:35;;27588:1;;27571:35;27640:3;27630:7;:13;27544:101;;27661:13;:19;-1:-1:-1;54036:23:0::1;53965:102:::0;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:592::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;3713:18;3754:2;3746:6;3743:14;3740:34;;;3770:1;3767;3760:12;3740:34;3808:6;3797:9;3793:22;3783:32;;3853:7;3846:4;3842:2;3838:13;3834:27;3824:55;;3875:1;3872;3865:12;3824:55;3915:2;3902:16;3941:2;3933:6;3930:14;3927:34;;;3957:1;3954;3947:12;3927:34;4002:7;3997:2;3988:6;3984:2;3980:15;3976:24;3973:37;3970:57;;;4023:1;4020;4013:12;3970:57;4054:2;4046:11;;;;;4076:6;;-1:-1:-1;3496:592:1;;-1:-1:-1;;;;3496:592:1:o;4093:180::-;4152:6;4205:2;4193:9;4184:7;4180:23;4176:32;4173:52;;;4221:1;4218;4211:12;4173:52;-1:-1:-1;4244:23:1;;4093:180;-1:-1:-1;4093:180:1:o;4278:257::-;4319:3;4357:5;4351:12;4384:6;4379:3;4372:19;4400:63;4456:6;4449:4;4444:3;4440:14;4433:4;4426:5;4422:16;4400:63;:::i;:::-;4517:2;4496:15;-1:-1:-1;;4492:29:1;4483:39;;;;4524:4;4479:50;;4278:257;-1:-1:-1;;4278:257:1:o;4540:470::-;4719:3;4757:6;4751:13;4773:53;4819:6;4814:3;4807:4;4799:6;4795:17;4773:53;:::i;:::-;4889:13;;4848:16;;;;4911:57;4889:13;4848:16;4945:4;4933:17;;4911:57;:::i;:::-;4984:20;;4540:470;-1:-1:-1;;;;4540:470:1:o;5433:488::-;-1:-1:-1;;;;;5702:15:1;;;5684:34;;5754:15;;5749:2;5734:18;;5727:43;5801:2;5786:18;;5779:34;;;5849:3;5844:2;5829:18;;5822:31;;;5627:4;;5870:45;;5895:19;;5887:6;5870:45;:::i;:::-;5862:53;5433:488;-1:-1:-1;;;;;;5433:488:1:o;6524:219::-;6673:2;6662:9;6655:21;6636:4;6693:44;6733:2;6722:9;6718:18;6710:6;6693:44;:::i;9771:128::-;9811:3;9842:1;9838:6;9835:1;9832:13;9829:39;;;9848:18;;:::i;:::-;-1:-1:-1;9884:9:1;;9771:128::o;9904:168::-;9944:7;10010:1;10006;10002:6;9998:14;9995:1;9992:21;9987:1;9980:9;9973:17;9969:45;9966:71;;;10017:18;;:::i;:::-;-1:-1:-1;10057:9:1;;9904:168::o;10077:125::-;10117:4;10145:1;10142;10139:8;10136:34;;;10150:18;;:::i;:::-;-1:-1:-1;10187:9:1;;10077:125::o;10207:258::-;10279:1;10289:113;10303:6;10300:1;10297:13;10289:113;;;10379:11;;;10373:18;10360:11;;;10353:39;10325:2;10318:10;10289:113;;;10420:6;10417:1;10414:13;10411:48;;;-1:-1:-1;;10455:1:1;10437:16;;10430:27;10207:258::o;10470:380::-;10549:1;10545:12;;;;10592;;;10613:61;;10667:4;10659:6;10655:17;10645:27;;10613:61;10720:2;10712:6;10709:14;10689:18;10686:38;10683:161;;;10766:10;10761:3;10757:20;10754:1;10747:31;10801:4;10798:1;10791:15;10829:4;10826:1;10819:15;10683:161;;10470:380;;;:::o;10855:127::-;10916:10;10911:3;10907:20;10904:1;10897:31;10947:4;10944:1;10937:15;10971:4;10968:1;10961:15;10987:127;11048:10;11043:3;11039:20;11036:1;11029:31;11079:4;11076:1;11069:15;11103:4;11100:1;11093:15;11119:131;-1:-1:-1;;;;;;11193:32:1;;11183:43;;11173:71;;11240:1;11237;11230:12

Swarm Source

ipfs://2d02b5092d026b5c621737879b14d79ef62a15ca6d24363657453c71970f4d72
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.