ETH Price: $3,109.51 (-0.12%)
Gas: 4 Gwei

Token

ShitCats (SCAT)
 

Overview

Max Total Supply

1,374 SCAT

Holders

166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 SCAT
0xfccba679d3c8aaf521fbc69aedba9666174a7584
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:
ShitCats

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-06-22
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// 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/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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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/ShitCats.sol



// By Abdrahman

pragma solidity >=0.7.0 <0.9.0;




contract ShitCats is Ownable, ERC721A {
  using StringsUpgradeable for uint256;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.01 ether;
  uint256 public maxSupply = 6000;
  uint256 public maxMintAmountPerTx = 6;

  bool public paused = false;
  bool public revealed = true;

  constructor() ERC721A("ShitCats", "SCAT")  {
    setHiddenMetadataUri("");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(!paused, "The contract is paused!");
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

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

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":[],"name":"cost","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":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600991620001f5565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600a91620001f5565b50662386f26fc10000600c55611770600d556006600e55600f805461ffff19166101001790553480156200007d57600080fd5b5060405180604001604052806008815260200167536869744361747360c01b8152506040518060400160405280600481526020016314d0d05560e21b815250620000d6620000d06200012960201b60201c565b6200012d565b8151620000eb906003906020850190620001f5565b50805162000101906004906020840190620001f5565b506000600155505060408051602081019091526000815262000123906200017d565b620002d8565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001dc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001f190600b906020840190620001f5565b5050565b82805462000203906200029b565b90600052602060002090601f01602090048101928262000227576000855562000272565b82601f106200024257805160ff191683800117855562000272565b8280016001018555821562000272579182015b828111156200027257825182559160200191906001019062000255565b506200028092915062000284565b5090565b5b8082111562000280576000815560010162000285565b600181811c90821680620002b057607f821691505b60208210811415620002d257634e487b7160e01b600052602260045260246000fd5b50919050565b611f3b80620002e86000396000f3fe60806040526004361061021a5760003560e01c80636352211e11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105f8578063e0a808531461060e578063e985e9c51461062e578063efbd73f414610677578063f2fde38b1461069757600080fd5b8063a22cb46514610563578063a45ba8e714610583578063b071401b14610598578063b88d4fde146105b8578063c87b56dd146105d857600080fd5b80637ec4a659116100f25780637ec4a659146104e75780638da5cb5b1461050757806394354fd01461052557806395d89b411461053b578063a0712d681461055057600080fd5b80636352211e146104725780636f8b44b01461049257806370a08231146104b2578063715018a6146104d257600080fd5b80633ccfd60b116101a65780634fdd43cb116101755780634fdd43cb146103ef578063518302271461040f5780635503a0e81461042e5780635c975abb1461044357806362b99ad41461045d57600080fd5b80633ccfd60b1461036d57806342842e0e14610382578063438b6300146103a257806344a0d68a146103cf57600080fd5b806313faede6116101ed57806313faede6146102d057806316ba10e0146102f457806316c38b3c1461031457806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611b27565b6106b7565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610709565b60405161024b9190611d57565b34801561028257600080fd5b50610296610291366004611baa565b61079b565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611ae2565b6107df565b005b3480156102dc57600080fd5b506102e6600c5481565b60405190815260200161024b565b34801561030057600080fd5b506102ce61030f366004611b61565b61087f565b34801561032057600080fd5b506102ce61032f366004611b0c565b6108c9565b34801561034057600080fd5b50600254600154036102e6565b34801561035957600080fd5b506102ce610368366004611a00565b610906565b34801561037957600080fd5b506102ce610a97565b34801561038e57600080fd5b506102ce61039d366004611a00565b610b24565b3480156103ae57600080fd5b506103c26103bd3660046119b2565b610b44565b60405161024b9190611d13565b3480156103db57600080fd5b506102ce6103ea366004611baa565b610c25565b3480156103fb57600080fd5b506102ce61040a366004611b61565b610c54565b34801561041b57600080fd5b50600f5461023f90610100900460ff1681565b34801561043a57600080fd5b50610269610c91565b34801561044f57600080fd5b50600f5461023f9060ff1681565b34801561046957600080fd5b50610269610d1f565b34801561047e57600080fd5b5061029661048d366004611baa565b610d2c565b34801561049e57600080fd5b506102ce6104ad366004611baa565b610d37565b3480156104be57600080fd5b506102e66104cd3660046119b2565b610d66565b3480156104de57600080fd5b506102ce610db5565b3480156104f357600080fd5b506102ce610502366004611b61565b610deb565b34801561051357600080fd5b506000546001600160a01b0316610296565b34801561053157600080fd5b506102e6600e5481565b34801561054757600080fd5b50610269610e28565b6102ce61055e366004611baa565b610e37565b34801561056f57600080fd5b506102ce61057e366004611ab8565b610f97565b34801561058f57600080fd5b5061026961102d565b3480156105a457600080fd5b506102ce6105b3366004611baa565b61103a565b3480156105c457600080fd5b506102ce6105d3366004611a3c565b611069565b3480156105e457600080fd5b506102696105f3366004611baa565b6110b3565b34801561060457600080fd5b506102e6600d5481565b34801561061a57600080fd5b506102ce610629366004611b0c565b611222565b34801561063a57600080fd5b5061023f6106493660046119cd565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561068357600080fd5b506102ce610692366004611bc3565b611266565b3480156106a357600080fd5b506102ce6106b23660046119b2565b61139d565b60006301ffc9a760e01b6001600160e01b0319831614806106e857506380ac58cd60e01b6001600160e01b03198316145b806107035750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461071890611e2d565b80601f016020809104026020016040519081016040528092919081815260200182805461074490611e2d565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b5050505050905090565b60006107a682611435565b6107c3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006107ea82610d2c565b9050336001600160a01b03821614610823576108068133610649565b610823576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146108b25760405162461bcd60e51b81526004016108a990611d6a565b60405180910390fd5b80516108c590600a906020840190611877565b5050565b6000546001600160a01b031633146108f35760405162461bcd60e51b81526004016108a990611d6a565b600f805460ff1916911515919091179055565b60006109118261145d565b9050836001600160a01b0316816001600160a01b0316146109445760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610991576109748633610649565b61099157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109b857604051633a954ecd60e21b815260040160405180910390fd5b80156109c357600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610a4e5760018401600081815260056020526040902054610a4c576001548114610a4c5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b03163314610ac15760405162461bcd60e51b81526004016108a990611d6a565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610b0e576040519150601f19603f3d011682016040523d82523d6000602084013e610b13565b606091505b5050905080610b2157600080fd5b50565b610b3f83838360405180602001604052806000815250611069565b505050565b60606000610b5183610d66565b905060008167ffffffffffffffff811115610b6e57610b6e611ed9565b604051908082528060200260200182016040528015610b97578160200160208202803683370190505b509050600160005b8381108015610bb05750600d548211155b15610c1b576000610bc083610d2c565b9050866001600160a01b0316816001600160a01b03161415610c085782848381518110610bef57610bef611ec3565b602090810291909101015281610c0481611e68565b9250505b82610c1281611e68565b93505050610b9f565b5090949350505050565b6000546001600160a01b03163314610c4f5760405162461bcd60e51b81526004016108a990611d6a565b600c55565b6000546001600160a01b03163314610c7e5760405162461bcd60e51b81526004016108a990611d6a565b80516108c590600b906020840190611877565b600a8054610c9e90611e2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cca90611e2d565b8015610d175780601f10610cec57610100808354040283529160200191610d17565b820191906000526020600020905b815481529060010190602001808311610cfa57829003601f168201915b505050505081565b60098054610c9e90611e2d565b60006107038261145d565b6000546001600160a01b03163314610d615760405162461bcd60e51b81526004016108a990611d6a565b600d55565b60006001600160a01b038216610d8f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610ddf5760405162461bcd60e51b81526004016108a990611d6a565b610de960006114be565b565b6000546001600160a01b03163314610e155760405162461bcd60e51b81526004016108a990611d6a565b80516108c5906009906020840190611877565b60606004805461071890611e2d565b80600081118015610e4a5750600e548111155b610e8d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108a9565b600d5481610e9e6002546001540390565b610ea89190611d9f565b1115610eed5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108a9565b600f5460ff1615610f3a5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108a9565b81600c54610f489190611dcb565b341015610f8d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108a9565b6108c5338361150e565b6001600160a01b038216331415610fc15760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610c9e90611e2d565b6000546001600160a01b031633146110645760405162461bcd60e51b81526004016108a990611d6a565b600e55565b611074848484610906565b6001600160a01b0383163b156110ad5761109084848484611528565b6110ad576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110be82611435565b6111225760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a9565b600f54610100900460ff166111c357600b805461113e90611e2d565b80601f016020809104026020016040519081016040528092919081815260200182805461116a90611e2d565b80156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b50505050509050919050565b60006111cd611620565b905060008151116111ed576040518060200160405280600081525061121b565b806111f78461162f565b600a60405160200161120b93929190611c12565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461124c5760405162461bcd60e51b81526004016108a990611d6a565b600f80549115156101000261ff0019909216919091179055565b816000811180156112795750600e548111155b6112bc5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108a9565b600d54816112cd6002546001540390565b6112d79190611d9f565b111561131c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108a9565b600f5460ff16156113695760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108a9565b6000546001600160a01b031633146113935760405162461bcd60e51b81526004016108a990611d6a565b610b3f828461150e565b6000546001600160a01b031633146113c75760405162461bcd60e51b81526004016108a990611d6a565b6001600160a01b03811661142c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a9565b610b21816114be565b600060015482108015610703575050600090815260056020526040902054600160e01b161590565b6000816001548110156114a557600081815260056020526040902054600160e01b81166114a3575b8061121b575060001901600081815260056020526040902054611485565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108c582826040518060200160405280600081525061172d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061155d903390899088908890600401611cd6565b602060405180830381600087803b15801561157757600080fd5b505af19250505080156115a7575060408051601f3d908101601f191682019092526115a491810190611b44565b60015b611602573d8080156115d5576040519150601f19603f3d011682016040523d82523d6000602084013e6115da565b606091505b5080516115fa576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461071890611e2d565b6060816116535750506040805180820190915260018152600360fc1b602082015290565b8160005b811561167d578061166781611e68565b91506116769050600a83611db7565b9150611657565b60008167ffffffffffffffff81111561169857611698611ed9565b6040519080825280601f01601f1916602001820160405280156116c2576020820181803683370190505b5090505b8415611618576116d7600183611dea565b91506116e4600a86611e83565b6116ef906030611d9f565b60f81b81838151811061170457611704611ec3565b60200101906001600160f81b031916908160001a905350611726600a86611db7565b94506116c6565b611737838361179a565b6001600160a01b0383163b15610b3f576001548281035b6117616000868380600101945086611528565b61177e576040516368d2bf6b60e11b815260040160405180910390fd5b81811061174e57816001541461179357600080fd5b5050505050565b6001546001600160a01b0383166117c357604051622e076360e81b815260040160405180910390fd5b816117e15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061182b5760015550505050565b82805461188390611e2d565b90600052602060002090601f0160209004810192826118a557600085556118eb565b82601f106118be57805160ff19168380011785556118eb565b828001600101855582156118eb579182015b828111156118eb5782518255916020019190600101906118d0565b506118f79291506118fb565b5090565b5b808211156118f757600081556001016118fc565b600067ffffffffffffffff8084111561192b5761192b611ed9565b604051601f8501601f19908116603f0116810190828211818310171561195357611953611ed9565b8160405280935085815286868601111561196c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461199d57600080fd5b919050565b8035801515811461199d57600080fd5b6000602082840312156119c457600080fd5b61121b82611986565b600080604083850312156119e057600080fd5b6119e983611986565b91506119f760208401611986565b90509250929050565b600080600060608486031215611a1557600080fd5b611a1e84611986565b9250611a2c60208501611986565b9150604084013590509250925092565b60008060008060808587031215611a5257600080fd5b611a5b85611986565b9350611a6960208601611986565b925060408501359150606085013567ffffffffffffffff811115611a8c57600080fd5b8501601f81018713611a9d57600080fd5b611aac87823560208401611910565b91505092959194509250565b60008060408385031215611acb57600080fd5b611ad483611986565b91506119f7602084016119a2565b60008060408385031215611af557600080fd5b611afe83611986565b946020939093013593505050565b600060208284031215611b1e57600080fd5b61121b826119a2565b600060208284031215611b3957600080fd5b813561121b81611eef565b600060208284031215611b5657600080fd5b815161121b81611eef565b600060208284031215611b7357600080fd5b813567ffffffffffffffff811115611b8a57600080fd5b8201601f81018413611b9b57600080fd5b61161884823560208401611910565b600060208284031215611bbc57600080fd5b5035919050565b60008060408385031215611bd657600080fd5b823591506119f760208401611986565b60008151808452611bfe816020860160208601611e01565b601f01601f19169290920160200192915050565b600084516020611c258285838a01611e01565b855191840191611c388184848a01611e01565b8554920191600090600181811c9080831680611c5557607f831692505b858310811415611c7357634e487b7160e01b85526022600452602485fd5b808015611c875760018114611c9857611cc5565b60ff19851688528388019550611cc5565b60008b81526020902060005b85811015611cbd5781548a820152908401908801611ca4565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d0990830184611be6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d4b57835183529284019291840191600101611d2f565b50909695505050505050565b60208152600061121b6020830184611be6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611db257611db2611e97565b500190565b600082611dc657611dc6611ead565b500490565b6000816000190483118215151615611de557611de5611e97565b500290565b600082821015611dfc57611dfc611e97565b500390565b60005b83811015611e1c578181015183820152602001611e04565b838111156110ad5750506000910152565b600181811c90821680611e4157607f821691505b60208210811415611e6257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e7c57611e7c611e97565b5060010190565b600082611e9257611e92611ead565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2157600080fdfea2646970667358221220e1002bbcbe979addb96540988b8b7f614b2d283111082c3e691ac1dd0df35c9964736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636352211e11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb01146105f8578063e0a808531461060e578063e985e9c51461062e578063efbd73f414610677578063f2fde38b1461069757600080fd5b8063a22cb46514610563578063a45ba8e714610583578063b071401b14610598578063b88d4fde146105b8578063c87b56dd146105d857600080fd5b80637ec4a659116100f25780637ec4a659146104e75780638da5cb5b1461050757806394354fd01461052557806395d89b411461053b578063a0712d681461055057600080fd5b80636352211e146104725780636f8b44b01461049257806370a08231146104b2578063715018a6146104d257600080fd5b80633ccfd60b116101a65780634fdd43cb116101755780634fdd43cb146103ef578063518302271461040f5780635503a0e81461042e5780635c975abb1461044357806362b99ad41461045d57600080fd5b80633ccfd60b1461036d57806342842e0e14610382578063438b6300146103a257806344a0d68a146103cf57600080fd5b806313faede6116101ed57806313faede6146102d057806316ba10e0146102f457806316c38b3c1461031457806318160ddd1461033457806323b872dd1461034d57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611b27565b6106b7565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610709565b60405161024b9190611d57565b34801561028257600080fd5b50610296610291366004611baa565b61079b565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611ae2565b6107df565b005b3480156102dc57600080fd5b506102e6600c5481565b60405190815260200161024b565b34801561030057600080fd5b506102ce61030f366004611b61565b61087f565b34801561032057600080fd5b506102ce61032f366004611b0c565b6108c9565b34801561034057600080fd5b50600254600154036102e6565b34801561035957600080fd5b506102ce610368366004611a00565b610906565b34801561037957600080fd5b506102ce610a97565b34801561038e57600080fd5b506102ce61039d366004611a00565b610b24565b3480156103ae57600080fd5b506103c26103bd3660046119b2565b610b44565b60405161024b9190611d13565b3480156103db57600080fd5b506102ce6103ea366004611baa565b610c25565b3480156103fb57600080fd5b506102ce61040a366004611b61565b610c54565b34801561041b57600080fd5b50600f5461023f90610100900460ff1681565b34801561043a57600080fd5b50610269610c91565b34801561044f57600080fd5b50600f5461023f9060ff1681565b34801561046957600080fd5b50610269610d1f565b34801561047e57600080fd5b5061029661048d366004611baa565b610d2c565b34801561049e57600080fd5b506102ce6104ad366004611baa565b610d37565b3480156104be57600080fd5b506102e66104cd3660046119b2565b610d66565b3480156104de57600080fd5b506102ce610db5565b3480156104f357600080fd5b506102ce610502366004611b61565b610deb565b34801561051357600080fd5b506000546001600160a01b0316610296565b34801561053157600080fd5b506102e6600e5481565b34801561054757600080fd5b50610269610e28565b6102ce61055e366004611baa565b610e37565b34801561056f57600080fd5b506102ce61057e366004611ab8565b610f97565b34801561058f57600080fd5b5061026961102d565b3480156105a457600080fd5b506102ce6105b3366004611baa565b61103a565b3480156105c457600080fd5b506102ce6105d3366004611a3c565b611069565b3480156105e457600080fd5b506102696105f3366004611baa565b6110b3565b34801561060457600080fd5b506102e6600d5481565b34801561061a57600080fd5b506102ce610629366004611b0c565b611222565b34801561063a57600080fd5b5061023f6106493660046119cd565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561068357600080fd5b506102ce610692366004611bc3565b611266565b3480156106a357600080fd5b506102ce6106b23660046119b2565b61139d565b60006301ffc9a760e01b6001600160e01b0319831614806106e857506380ac58cd60e01b6001600160e01b03198316145b806107035750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461071890611e2d565b80601f016020809104026020016040519081016040528092919081815260200182805461074490611e2d565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b5050505050905090565b60006107a682611435565b6107c3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006107ea82610d2c565b9050336001600160a01b03821614610823576108068133610649565b610823576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146108b25760405162461bcd60e51b81526004016108a990611d6a565b60405180910390fd5b80516108c590600a906020840190611877565b5050565b6000546001600160a01b031633146108f35760405162461bcd60e51b81526004016108a990611d6a565b600f805460ff1916911515919091179055565b60006109118261145d565b9050836001600160a01b0316816001600160a01b0316146109445760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610991576109748633610649565b61099157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166109b857604051633a954ecd60e21b815260040160405180910390fd5b80156109c357600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610a4e5760018401600081815260056020526040902054610a4c576001548114610a4c5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6000546001600160a01b03163314610ac15760405162461bcd60e51b81526004016108a990611d6a565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114610b0e576040519150601f19603f3d011682016040523d82523d6000602084013e610b13565b606091505b5050905080610b2157600080fd5b50565b610b3f83838360405180602001604052806000815250611069565b505050565b60606000610b5183610d66565b905060008167ffffffffffffffff811115610b6e57610b6e611ed9565b604051908082528060200260200182016040528015610b97578160200160208202803683370190505b509050600160005b8381108015610bb05750600d548211155b15610c1b576000610bc083610d2c565b9050866001600160a01b0316816001600160a01b03161415610c085782848381518110610bef57610bef611ec3565b602090810291909101015281610c0481611e68565b9250505b82610c1281611e68565b93505050610b9f565b5090949350505050565b6000546001600160a01b03163314610c4f5760405162461bcd60e51b81526004016108a990611d6a565b600c55565b6000546001600160a01b03163314610c7e5760405162461bcd60e51b81526004016108a990611d6a565b80516108c590600b906020840190611877565b600a8054610c9e90611e2d565b80601f0160208091040260200160405190810160405280929190818152602001828054610cca90611e2d565b8015610d175780601f10610cec57610100808354040283529160200191610d17565b820191906000526020600020905b815481529060010190602001808311610cfa57829003601f168201915b505050505081565b60098054610c9e90611e2d565b60006107038261145d565b6000546001600160a01b03163314610d615760405162461bcd60e51b81526004016108a990611d6a565b600d55565b60006001600160a01b038216610d8f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610ddf5760405162461bcd60e51b81526004016108a990611d6a565b610de960006114be565b565b6000546001600160a01b03163314610e155760405162461bcd60e51b81526004016108a990611d6a565b80516108c5906009906020840190611877565b60606004805461071890611e2d565b80600081118015610e4a5750600e548111155b610e8d5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108a9565b600d5481610e9e6002546001540390565b610ea89190611d9f565b1115610eed5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108a9565b600f5460ff1615610f3a5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108a9565b81600c54610f489190611dcb565b341015610f8d5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108a9565b6108c5338361150e565b6001600160a01b038216331415610fc15760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b8054610c9e90611e2d565b6000546001600160a01b031633146110645760405162461bcd60e51b81526004016108a990611d6a565b600e55565b611074848484610906565b6001600160a01b0383163b156110ad5761109084848484611528565b6110ad576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110be82611435565b6111225760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a9565b600f54610100900460ff166111c357600b805461113e90611e2d565b80601f016020809104026020016040519081016040528092919081815260200182805461116a90611e2d565b80156111b75780601f1061118c576101008083540402835291602001916111b7565b820191906000526020600020905b81548152906001019060200180831161119a57829003601f168201915b50505050509050919050565b60006111cd611620565b905060008151116111ed576040518060200160405280600081525061121b565b806111f78461162f565b600a60405160200161120b93929190611c12565b6040516020818303038152906040525b9392505050565b6000546001600160a01b0316331461124c5760405162461bcd60e51b81526004016108a990611d6a565b600f80549115156101000261ff0019909216919091179055565b816000811180156112795750600e548111155b6112bc5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b60448201526064016108a9565b600d54816112cd6002546001540390565b6112d79190611d9f565b111561131c5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016108a9565b600f5460ff16156113695760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b60448201526064016108a9565b6000546001600160a01b031633146113935760405162461bcd60e51b81526004016108a990611d6a565b610b3f828461150e565b6000546001600160a01b031633146113c75760405162461bcd60e51b81526004016108a990611d6a565b6001600160a01b03811661142c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a9565b610b21816114be565b600060015482108015610703575050600090815260056020526040902054600160e01b161590565b6000816001548110156114a557600081815260056020526040902054600160e01b81166114a3575b8061121b575060001901600081815260056020526040902054611485565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108c582826040518060200160405280600081525061172d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061155d903390899088908890600401611cd6565b602060405180830381600087803b15801561157757600080fd5b505af19250505080156115a7575060408051601f3d908101601f191682019092526115a491810190611b44565b60015b611602573d8080156115d5576040519150601f19603f3d011682016040523d82523d6000602084013e6115da565b606091505b5080516115fa576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461071890611e2d565b6060816116535750506040805180820190915260018152600360fc1b602082015290565b8160005b811561167d578061166781611e68565b91506116769050600a83611db7565b9150611657565b60008167ffffffffffffffff81111561169857611698611ed9565b6040519080825280601f01601f1916602001820160405280156116c2576020820181803683370190505b5090505b8415611618576116d7600183611dea565b91506116e4600a86611e83565b6116ef906030611d9f565b60f81b81838151811061170457611704611ec3565b60200101906001600160f81b031916908160001a905350611726600a86611db7565b94506116c6565b611737838361179a565b6001600160a01b0383163b15610b3f576001548281035b6117616000868380600101945086611528565b61177e576040516368d2bf6b60e11b815260040160405180910390fd5b81811061174e57816001541461179357600080fd5b5050505050565b6001546001600160a01b0383166117c357604051622e076360e81b815260040160405180910390fd5b816117e15760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061182b5760015550505050565b82805461188390611e2d565b90600052602060002090601f0160209004810192826118a557600085556118eb565b82601f106118be57805160ff19168380011785556118eb565b828001600101855582156118eb579182015b828111156118eb5782518255916020019190600101906118d0565b506118f79291506118fb565b5090565b5b808211156118f757600081556001016118fc565b600067ffffffffffffffff8084111561192b5761192b611ed9565b604051601f8501601f19908116603f0116810190828211818310171561195357611953611ed9565b8160405280935085815286868601111561196c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461199d57600080fd5b919050565b8035801515811461199d57600080fd5b6000602082840312156119c457600080fd5b61121b82611986565b600080604083850312156119e057600080fd5b6119e983611986565b91506119f760208401611986565b90509250929050565b600080600060608486031215611a1557600080fd5b611a1e84611986565b9250611a2c60208501611986565b9150604084013590509250925092565b60008060008060808587031215611a5257600080fd5b611a5b85611986565b9350611a6960208601611986565b925060408501359150606085013567ffffffffffffffff811115611a8c57600080fd5b8501601f81018713611a9d57600080fd5b611aac87823560208401611910565b91505092959194509250565b60008060408385031215611acb57600080fd5b611ad483611986565b91506119f7602084016119a2565b60008060408385031215611af557600080fd5b611afe83611986565b946020939093013593505050565b600060208284031215611b1e57600080fd5b61121b826119a2565b600060208284031215611b3957600080fd5b813561121b81611eef565b600060208284031215611b5657600080fd5b815161121b81611eef565b600060208284031215611b7357600080fd5b813567ffffffffffffffff811115611b8a57600080fd5b8201601f81018413611b9b57600080fd5b61161884823560208401611910565b600060208284031215611bbc57600080fd5b5035919050565b60008060408385031215611bd657600080fd5b823591506119f760208401611986565b60008151808452611bfe816020860160208601611e01565b601f01601f19169290920160200192915050565b600084516020611c258285838a01611e01565b855191840191611c388184848a01611e01565b8554920191600090600181811c9080831680611c5557607f831692505b858310811415611c7357634e487b7160e01b85526022600452602485fd5b808015611c875760018114611c9857611cc5565b60ff19851688528388019550611cc5565b60008b81526020902060005b85811015611cbd5781548a820152908401908801611ca4565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d0990830184611be6565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611d4b57835183529284019291840191600101611d2f565b50909695505050505050565b60208152600061121b6020830184611be6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611db257611db2611e97565b500190565b600082611dc657611dc6611ead565b500490565b6000816000190483118215151615611de557611de5611e97565b500290565b600082821015611dfc57611dfc611e97565b500390565b60005b83811015611e1c578181015183820152602001611e04565b838111156110ad5750506000910152565b600181811c90821680611e4157607f821691505b60208210811415611e6257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e7c57611e7c611e97565b5060010190565b600082611e9257611e92611ead565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b2157600080fdfea2646970667358221220e1002bbcbe979addb96540988b8b7f614b2d283111082c3e691ac1dd0df35c9964736f6c63430008070033

Deployed Bytecode Sourcemap

50437:3345:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16783:615;;;;;;;;;;-1:-1:-1;16783:615:0;;;;;:::i;:::-;;:::i;:::-;;;8066:14:1;;8059:22;8041:41;;8029:2;8014:18;16783:615:0;;;;;;;;22430:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24376:204::-;;;;;;;;;;-1:-1:-1;24376:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6727:32:1;;;6709:51;;6697:2;6682:18;24376:204:0;6563:203:1;23924:386:0;;;;;;;;;;-1:-1:-1;23924:386:0;;;;;:::i;:::-;;:::i;:::-;;50634:32;;;;;;;;;;;;;;;;;;;11045:25:1;;;11033:2;11018:18;50634:32:0;10899:177:1;53243:100:0;;;;;;;;;;-1:-1:-1;53243:100:0;;;;;:::i;:::-;;:::i;53449:77::-;;;;;;;;;;-1:-1:-1;53449:77:0;;;;;:::i;:::-;;:::i;15837:315::-;;;;;;;;;;-1:-1:-1;16103:12:0;;16087:13;;:28;15837:315;;33641:2800;;;;;;;;;;-1:-1:-1;33641:2800:0;;;;;:::i;:::-;;:::i;53532:137::-;;;;;;;;;;;;;:::i;25266:185::-;;;;;;;;;;-1:-1:-1;25266:185:0;;;;;:::i;:::-;;:::i;51555:635::-;;;;;;;;;;-1:-1:-1;51555:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52783:74::-;;;;;;;;;;-1:-1:-1;52783:74:0;;;;;:::i;:::-;;:::i;52999:132::-;;;;;;;;;;-1:-1:-1;52999:132:0;;;;;:::i;:::-;;:::i;50782:27::-;;;;;;;;;;-1:-1:-1;50782:27:0;;;;;;;;;;;50556:33;;;;;;;;;;;;;:::i;50751:26::-;;;;;;;;;;-1:-1:-1;50751:26:0;;;;;;;;50523:28;;;;;;;;;;;;;:::i;22219:144::-;;;;;;;;;;-1:-1:-1;22219:144:0;;;;;:::i;:::-;;:::i;53349:94::-;;;;;;;;;;-1:-1:-1;53349:94:0;;;;;:::i;:::-;;:::i;17462:224::-;;;;;;;;;;-1:-1:-1;17462:224:0;;;;;:::i;:::-;;:::i;49521:103::-;;;;;;;;;;;;;:::i;53137:100::-;;;;;;;;;;-1:-1:-1;53137:100:0;;;;;:::i;:::-;;:::i;48870:87::-;;;;;;;;;;-1:-1:-1;48916:7:0;48943:6;-1:-1:-1;;;;;48943:6:0;48870:87;;50707:37;;;;;;;;;;;;;;;;22599:104;;;;;;;;;;;;;:::i;51189:197::-;;;;;;:::i;:::-;;:::i;24652:308::-;;;;;;;;;;-1:-1:-1;24652:308:0;;;;;:::i;:::-;;:::i;50594:31::-;;;;;;;;;;;;;:::i;52863:130::-;;;;;;;;;;-1:-1:-1;52863:130:0;;;;;:::i;:::-;;:::i;25522:399::-;;;;;;;;;;-1:-1:-1;25522:399:0;;;;;:::i;:::-;;:::i;52196:494::-;;;;;;;;;;-1:-1:-1;52196:494:0;;;;;:::i;:::-;;:::i;50671:31::-;;;;;;;;;;;;;;;;52696:81;;;;;;;;;;-1:-1:-1;52696:81:0;;;;;:::i;:::-;;:::i;25031:164::-;;;;;;;;;;-1:-1:-1;25031:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25152:25:0;;;25128:4;25152:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25031:164;51394:155;;;;;;;;;;-1:-1:-1;51394:155:0;;;;;:::i;:::-;;:::i;49779:201::-;;;;;;;;;;-1:-1:-1;49779:201:0;;;;;:::i;:::-;;:::i;16783:615::-;16868:4;-1:-1:-1;;;;;;;;;17168:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;17245:25:0;;;17168:102;:179;;;-1:-1:-1;;;;;;;;;;17322:25:0;;;17168:179;17148:199;16783:615;-1:-1:-1;;16783:615:0:o;22430:100::-;22484:13;22517:5;22510:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22430:100;:::o;24376:204::-;24444:7;24469:16;24477:7;24469;:16::i;:::-;24464:64;;24494:34;;-1:-1:-1;;;24494:34:0;;;;;;;;;;;24464:64;-1:-1:-1;24548:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24548:24:0;;24376:204::o;23924:386::-;23997:13;24013:16;24021:7;24013;:16::i;:::-;23997:32;-1:-1:-1;44824:10:0;-1:-1:-1;;;;;24046:28:0;;;24042:175;;24094:44;24111:5;44824:10;25031:164;:::i;24094:44::-;24089:128;;24166:35;;-1:-1:-1;;;24166:35:0;;;;;;;;;;;24089:128;24229:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;24229:29:0;-1:-1:-1;;;;;24229:29:0;;;;;;;;;24274:28;;24229:24;;24274:28;;;;;;;23986:324;23924:386;;:::o;53243:100::-;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;;;;;;;;;53315:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53243:100:::0;:::o;53449:77::-;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;53505:6:::1;:15:::0;;-1:-1:-1;;53505:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;53449:77::o;33641:2800::-;33775:27;33805;33824:7;33805:18;:27::i;:::-;33775:57;;33890:4;-1:-1:-1;;;;;33849:45:0;33865:19;-1:-1:-1;;;;;33849:45:0;;33845:86;;33903:28;;-1:-1:-1;;;33903:28:0;;;;;;;;;;;33845:86;33945:27;32371:21;;;32198:15;32413:4;32406:36;32495:4;32479:21;;32585:26;;44824:10;33338:30;;;-1:-1:-1;;;;;33036:26:0;;33317:19;;;33314:55;34124:174;;34211:43;34228:4;44824:10;25031:164;:::i;34211:43::-;34206:92;;34263:35;;-1:-1:-1;;;34263:35:0;;;;;;;;;;;34206:92;-1:-1:-1;;;;;34315:16:0;;34311:52;;34340:23;;-1:-1:-1;;;34340:23:0;;;;;;;;;;;34311:52;34512:15;34509:160;;;34652:1;34631:19;34624:30;34509:160;-1:-1:-1;;;;;35047:24:0;;;;;;;:18;:24;;;;;;35045:26;;-1:-1:-1;;35045:26:0;;;35116:22;;;;;;;;;35114:24;;-1:-1:-1;35114:24:0;;;22118:11;22094:22;22090:40;22077:62;-1:-1:-1;;;22077:62:0;35409:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;35703:46:0;;35699:626;;35807:1;35797:11;;35775:19;35930:30;;;:17;:30;;;;;;35926:384;;36068:13;;36053:11;:28;36049:242;;36215:30;;;;:17;:30;;;;;:52;;;36049:242;35756:569;35699:626;36372:7;36368:2;-1:-1:-1;;;;;36353:27:0;36362:4;-1:-1:-1;;;;;36353:27:0;;;;;;;;;;;33764:2677;;;33641:2800;;;:::o;53532:137::-;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;53577:7:::1;48943:6:::0;;53590:55:::1;::::0;-1:-1:-1;;;;;48943:6:0;;;;53619:21:::1;::::0;53577:7;53590:55;53577:7;53590:55;53619:21;48943:6;53590:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53576:69;;;53660:2;53652:11;;;::::0;::::1;;53569:100;53532:137::o:0;25266:185::-;25404:39;25421:4;25427:2;25431:7;25404:39;;;;;;;;;;;;:16;:39::i;:::-;25266:185;;;:::o;51555:635::-;51630:16;51658:23;51684:17;51694:6;51684:9;:17::i;:::-;51658:43;;51708:30;51755:15;51741:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51741:30:0;-1:-1:-1;51708:63:0;-1:-1:-1;51803:1:0;51778:22;51847:309;51872:15;51854;:33;:64;;;;;51909:9;;51891:14;:27;;51854:64;51847:309;;;51929:25;51957:23;51965:14;51957:7;:23::i;:::-;51929:51;;52016:6;-1:-1:-1;;;;;51995:27:0;:17;-1:-1:-1;;;;;51995:27:0;;51991:131;;;52068:14;52035:13;52049:15;52035:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;52095:17;;;;:::i;:::-;;;;51991:131;52132:16;;;;:::i;:::-;;;;51920:236;51847:309;;;-1:-1:-1;52171:13:0;;51555:635;-1:-1:-1;;;;51555:635:0:o;52783:74::-;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;52839:4:::1;:12:::0;52783:74::o;52999:132::-;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;53087:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;50556:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50523:28::-;;;;;;;:::i;22219:144::-;22283:7;22326:27;22345:7;22326:18;:27::i;53349:94::-;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;53415:9:::1;:22:::0;53349:94::o;17462:224::-;17526:7;-1:-1:-1;;;;;17550:19:0;;17546:60;;17578:28;;-1:-1:-1;;;17578:28:0;;;;;;;;;;;17546:60;-1:-1:-1;;;;;;17624:25:0;;;;;:18;:25;;;;;;12017:13;17624:54;;17462:224::o;49521:103::-;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;49586:30:::1;49613:1;49586:18;:30::i;:::-;49521:103::o:0;53137:100::-;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;53209:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;22599:104::-:0;22655:13;22688:7;22681:14;;;;;:::i;51189:197::-;51254:11;50976:1;50962:11;:15;:52;;;;;50996:18;;50981:11;:33;;50962:52;50954:85;;;;-1:-1:-1;;;50954:85:0;;8926:2:1;50954:85:0;;;8908:21:1;8965:2;8945:18;;;8938:30;-1:-1:-1;;;8984:18:1;;;8977:50;9044:18;;50954:85:0;8724:344:1;50954:85:0;51085:9;;51070:11;51054:13;16103:12;;16087:13;;:28;;15837:315;51054:13;:27;;;;:::i;:::-;:40;;51046:73;;;;-1:-1:-1;;;51046:73:0;;10404:2:1;51046:73:0;;;10386:21:1;10443:2;10423:18;;;10416:30;-1:-1:-1;;;10462:18:1;;;10455:50;10522:18;;51046:73:0;10202:344:1;51046:73:0;51135:6;;;;51134:7;51126:43;;;;-1:-1:-1;;;51126:43:0;;9636:2:1;51126:43:0;;;9618:21:1;9675:2;9655:18;;;9648:30;-1:-1:-1;;;9694:18:1;;;9687:53;9757:18;;51126:43:0;9434:347:1;51126:43:0;51302:11:::1;51295:4;;:18;;;;:::i;:::-;51282:9;:31;;51274:63;;;::::0;-1:-1:-1;;;51274:63:0;;10753:2:1;51274:63:0::1;::::0;::::1;10735:21:1::0;10792:2;10772:18;;;10765:30;-1:-1:-1;;;10811:18:1;;;10804:49;10870:18;;51274:63:0::1;10551:343:1::0;51274:63:0::1;51346:34;51356:10;51368:11;51346:9;:34::i;24652:308::-:0;-1:-1:-1;;;;;24751:31:0;;44824:10;24751:31;24747:61;;;24791:17;;-1:-1:-1;;;24791:17:0;;;;;;;;;;;24747:61;44824:10;24821:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24821:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24821:60:0;;;;;;;;;;24897:55;;8041:41:1;;;24821:49:0;;44824:10;24897:55;;8014:18:1;24897:55:0;;;;;;;24652:308;;:::o;50594:31::-;;;;;;;:::i;52863:130::-;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;52947:18:::1;:40:::0;52863:130::o;25522:399::-;25689:31;25702:4;25708:2;25712:7;25689:12;:31::i;:::-;-1:-1:-1;;;;;25735:14:0;;;:19;25731:183;;25774:56;25805:4;25811:2;25815:7;25824:5;25774:30;:56::i;:::-;25769:145;;25858:40;;-1:-1:-1;;;25858:40:0;;;;;;;;;;;25769:145;25522:399;;;;:::o;52196:494::-;52295:13;52336:17;52344:8;52336:7;:17::i;:::-;52320:98;;;;-1:-1:-1;;;52320:98:0;;9988:2:1;52320:98:0;;;9970:21:1;10027:2;10007:18;;;10000:30;10066:34;10046:18;;;10039:62;-1:-1:-1;;;10117:18:1;;;10110:45;10172:19;;52320:98:0;9786:411:1;52320:98:0;52431:8;;;;;;;52427:64;;52466:17;52459:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52196:494;;;:::o;52427:64::-;52499:28;52530:10;:8;:10::i;:::-;52499:41;;52585:1;52560:14;52554:28;:32;:130;;;;;;;;;;;;;;;;;52622:14;52638:19;:8;:17;:19::i;:::-;52659:9;52605:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52554:130;52547:137;52196:494;-1:-1:-1;;;52196:494:0:o;52696:81::-;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;52754:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;52754:17:0;;::::1;::::0;;;::::1;::::0;;52696:81::o;51394:155::-;51480:11;50976:1;50962:11;:15;:52;;;;;50996:18;;50981:11;:33;;50962:52;50954:85;;;;-1:-1:-1;;;50954:85:0;;8926:2:1;50954:85:0;;;8908:21:1;8965:2;8945:18;;;8938:30;-1:-1:-1;;;8984:18:1;;;8977:50;9044:18;;50954:85:0;8724:344:1;50954:85:0;51085:9;;51070:11;51054:13;16103:12;;16087:13;;:28;;15837:315;51054:13;:27;;;;:::i;:::-;:40;;51046:73;;;;-1:-1:-1;;;51046:73:0;;10404:2:1;51046:73:0;;;10386:21:1;10443:2;10423:18;;;10416:30;-1:-1:-1;;;10462:18:1;;;10455:50;10522:18;;51046:73:0;10202:344:1;51046:73:0;51135:6;;;;51134:7;51126:43;;;;-1:-1:-1;;;51126:43:0;;9636:2:1;51126:43:0;;;9618:21:1;9675:2;9655:18;;;9648:30;-1:-1:-1;;;9694:18:1;;;9687:53;9757:18;;51126:43:0;9434:347:1;51126:43:0;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23:::1;49082:68;;;;-1:-1:-1::0;;;49082:68:0::1;;;;;;;:::i;:::-;51510:33:::2;51520:9;51531:11;51510:9;:33::i;49779:201::-:0;48916:7;48943:6;-1:-1:-1;;;;;48943:6:0;44824:10;49090:23;49082:68;;;;-1:-1:-1;;;49082:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49868:22:0;::::1;49860:73;;;::::0;-1:-1:-1;;;49860:73:0;;8519:2:1;49860:73:0::1;::::0;::::1;8501:21:1::0;8558:2;8538:18;;;8531:30;8597:34;8577:18;;;8570:62;-1:-1:-1;;;8648:18:1;;;8641:36;8694:19;;49860:73:0::1;8317:402:1::0;49860:73:0::1;49944:28;49963:8;49944:18;:28::i;26176:273::-:0;26233:4;26323:13;;26313:7;:23;26270:152;;;;-1:-1:-1;;26374:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;26374:43:0;:48;;26176:273::o;19136:1129::-;19203:7;19238;19340:13;;19333:4;:20;19329:869;;;19378:14;19395:23;;;:17;:23;;;;;;-1:-1:-1;;;19484:23:0;;19480:699;;20003:113;20010:11;20003:113;;-1:-1:-1;;;20081:6:0;20063:25;;;;:17;:25;;;;;;20003:113;;19480:699;19355:843;19329:869;20226:31;;-1:-1:-1;;;20226:31:0;;;;;;;;;;;50140:191;50214:16;50233:6;;-1:-1:-1;;;;;50250:17:0;;;-1:-1:-1;;;;;;50250:17:0;;;;;;50283:40;;50233:6;;;;;;;50283:40;;50214:16;50283:40;50203:128;50140:191;:::o;26533:104::-;26602:27;26612:2;26616:8;26602:27;;;;;;;;;;;;:9;:27::i;40392:716::-;40576:88;;-1:-1:-1;;;40576:88:0;;40555:4;;-1:-1:-1;;;;;40576:45:0;;;;;:88;;44824:10;;40643:4;;40649:7;;40658:5;;40576:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40576:88:0;;;;;;;;-1:-1:-1;;40576:88:0;;;;;;;;;;;;:::i;:::-;;;40572:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40859:13:0;;40855:235;;40905:40;;-1:-1:-1;;;40905:40:0;;;;;;;;;;;40855:235;41048:6;41042:13;41033:6;41029:2;41025:15;41018:38;40572:529;-1:-1:-1;;;;;;40735:64:0;-1:-1:-1;;;40735:64:0;;-1:-1:-1;40572:529:0;40392:716;;;;;;:::o;53675:104::-;53735:13;53764:9;53757:16;;;;;:::i;432:723::-;488:13;709:10;705:53;;-1:-1:-1;;736:10:0;;;;;;;;;;;;-1:-1:-1;;;736:10:0;;;;;432:723::o;705:53::-;783:5;768:12;824:78;831:9;;824:78;;857:8;;;;:::i;:::-;;-1:-1:-1;880:10:0;;-1:-1:-1;888:2:0;880:10;;:::i;:::-;;;824:78;;;912:19;944:6;934:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;934:17:0;;912:39;;962:154;969:10;;962:154;;996:11;1006:1;996:11;;:::i;:::-;;-1:-1:-1;1065:10:0;1073:2;1065:5;:10;:::i;:::-;1052:24;;:2;:24;:::i;:::-;1039:39;;1022:6;1029;1022:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1022:56:0;;;;;;;;-1:-1:-1;1093:11:0;1102:2;1093:11;;:::i;:::-;;;962:154;;27053:681;27176:19;27182:2;27186:8;27176:5;:19::i;:::-;-1:-1:-1;;;;;27237:14:0;;;:19;27233:483;;27291:13;;27339:14;;;27372:233;27403:62;27442:1;27446:2;27450:7;;;;;;27459:5;27403:30;:62::i;:::-;27398:167;;27501:40;;-1:-1:-1;;;27501:40:0;;;;;;;;;;;27398:167;27600:3;27592:5;:11;27372:233;;27687:3;27670:13;;:20;27666:34;;27692:8;;;27666:34;27258:458;;27053:681;;;:::o;28007:1529::-;28095:13;;-1:-1:-1;;;;;28123:16:0;;28119:48;;28148:19;;-1:-1:-1;;;28148:19:0;;;;;;;;;;;28119:48;28182:13;28178:44;;28204:18;;-1:-1:-1;;;28204:18:0;;;;;;;;;;;28178:44;-1:-1:-1;;;;;28710:22:0;;;;;;:18;:22;;12154:2;28710:22;;:70;;28748:31;28736:44;;28710:70;;;22118:11;22094:22;22090:40;-1:-1:-1;23828:15:0;;23803:23;23799:45;22087:51;22077:62;29023:31;;;;:17;:31;;;;;:173;29041:12;29272:23;;;29310:101;29337:35;;29362:9;;;;;-1:-1:-1;;;;;29337:35:0;;;29354:1;;29337:35;;29354:1;;29337:35;29406:3;29396:7;:13;29310:101;;29427:13;:19;-1:-1:-1;25266:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:1527::-;5045:3;5083:6;5077:13;5109:4;5122:51;5166:6;5161:3;5156:2;5148:6;5144:15;5122:51;:::i;:::-;5236:13;;5195:16;;;;5258:55;5236:13;5195:16;5280:15;;;5258:55;:::i;:::-;5402:13;;5335:20;;;5375:1;;5462;5484:18;;;;5537;;;;5564:93;;5642:4;5632:8;5628:19;5616:31;;5564:93;5705:2;5695:8;5692:16;5672:18;5669:40;5666:167;;;-1:-1:-1;;;5732:33:1;;5788:4;5785:1;5778:15;5818:4;5739:3;5806:17;5666:167;5849:18;5876:110;;;;6000:1;5995:328;;;;5842:481;;5876:110;-1:-1:-1;;5911:24:1;;5897:39;;5956:20;;;;-1:-1:-1;5876:110:1;;5995:328;11154:1;11147:14;;;11191:4;11178:18;;6090:1;6104:169;6118:8;6115:1;6112:15;6104:169;;;6200:14;;6185:13;;;6178:37;6243:16;;;;6135:10;;6104:169;;;6108:3;;6304:8;6297:5;6293:20;6286:27;;5842:481;-1:-1:-1;6339:3:1;;4821:1527;-1:-1:-1;;;;;;;;;;;4821:1527:1:o;6771:488::-;-1:-1:-1;;;;;7040:15:1;;;7022:34;;7092:15;;7087:2;7072:18;;7065:43;7139:2;7124:18;;7117:34;;;7187:3;7182:2;7167:18;;7160:31;;;6965:4;;7208:45;;7233:19;;7225:6;7208:45;:::i;:::-;7200:53;6771:488;-1:-1:-1;;;;;;6771:488:1:o;7264:632::-;7435:2;7487:21;;;7557:13;;7460:18;;;7579:22;;;7406:4;;7435:2;7658:15;;;;7632:2;7617:18;;;7406:4;7701:169;7715:6;7712:1;7709:13;7701:169;;;7776:13;;7764:26;;7845:15;;;;7810:12;;;;7737:1;7730:9;7701:169;;;-1:-1:-1;7887:3:1;;7264:632;-1:-1:-1;;;;;;7264:632:1:o;8093:219::-;8242:2;8231:9;8224:21;8205:4;8262:44;8302:2;8291:9;8287:18;8279:6;8262:44;:::i;9073:356::-;9275:2;9257:21;;;9294:18;;;9287:30;9353:34;9348:2;9333:18;;9326:62;9420:2;9405:18;;9073:356::o;11207:128::-;11247:3;11278:1;11274:6;11271:1;11268:13;11265:39;;;11284:18;;:::i;:::-;-1:-1:-1;11320:9:1;;11207:128::o;11340:120::-;11380:1;11406;11396:35;;11411:18;;:::i;:::-;-1:-1:-1;11445:9:1;;11340:120::o;11465:168::-;11505:7;11571:1;11567;11563:6;11559:14;11556:1;11553:21;11548:1;11541:9;11534:17;11530:45;11527:71;;;11578:18;;:::i;:::-;-1:-1:-1;11618:9:1;;11465:168::o;11638:125::-;11678:4;11706:1;11703;11700:8;11697:34;;;11711:18;;:::i;:::-;-1:-1:-1;11748:9:1;;11638:125::o;11768:258::-;11840:1;11850:113;11864:6;11861:1;11858:13;11850:113;;;11940:11;;;11934:18;11921:11;;;11914:39;11886:2;11879:10;11850:113;;;11981:6;11978:1;11975:13;11972:48;;;-1:-1:-1;;12016:1:1;11998:16;;11991:27;11768:258::o;12031:380::-;12110:1;12106:12;;;;12153;;;12174:61;;12228:4;12220:6;12216:17;12206:27;;12174:61;12281:2;12273:6;12270:14;12250:18;12247:38;12244:161;;;12327:10;12322:3;12318:20;12315:1;12308:31;12362:4;12359:1;12352:15;12390:4;12387:1;12380:15;12244:161;;12031:380;;;:::o;12416:135::-;12455:3;-1:-1:-1;;12476:17:1;;12473:43;;;12496:18;;:::i;:::-;-1:-1:-1;12543:1:1;12532:13;;12416:135::o;12556:112::-;12588:1;12614;12604:35;;12619:18;;:::i;:::-;-1:-1:-1;12653:9:1;;12556:112::o;12673:127::-;12734:10;12729:3;12725:20;12722:1;12715:31;12765:4;12762:1;12755:15;12789:4;12786:1;12779:15;12805:127;12866:10;12861:3;12857:20;12854:1;12847:31;12897:4;12894:1;12887:15;12921:4;12918:1;12911:15;12937:127;12998:10;12993:3;12989:20;12986:1;12979:31;13029:4;13026:1;13019:15;13053:4;13050:1;13043:15;13069:127;13130:10;13125:3;13121:20;13118:1;13111:31;13161:4;13158:1;13151:15;13185:4;13182:1;13175:15;13201:131;-1:-1:-1;;;;;;13275:32:1;;13265:43;;13255:71;;13322:1;13319;13312:12

Swarm Source

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