ETH Price: $2,265.66 (-4.96%)

Token

Cute Cats (CC)
 

Overview

Max Total Supply

3,333 CC

Holders

769

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 CC
0xcf557ac06db39ac1377a925694622897c3bc5396
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:
CuteCats

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-04
*/

/* 

:......::::.......::::::..:::::........:::......:::..:::::..:::::..::::::......:::
:'######::'##::::'##:'########:'########::'######:::::'###::::'########::'######::
'##... ##: ##:::: ##:... ##..:: ##.....::'##... ##:::'## ##:::... ##..::'##... ##:
 ##:::..:: ##:::: ##:::: ##:::: ##::::::: ##:::..:::'##:. ##::::: ##:::: ##:::..::
 ##::::::: ##:::: ##:::: ##:::: ######::: ##:::::::'##:::. ##:::: ##::::. ######::
 ##::::::: ##:::: ##:::: ##:::: ##...:::: ##::::::: #########:::: ##:::::..... ##:
 ##::: ##: ##:::: ##:::: ##:::: ##::::::: ##::: ##: ##.... ##:::: ##::::'##::: ##:
. ######::. #######::::: ##:::: ########:. ######:: ##:::: ##:::: ##::::. ######::
:......::::.......::::::..:::::........:::......:::..:::::..:::::..::::::......:::


/**
 *Submitted for verification at Etherscan.io on 2022-05-24
*/

// SPDX-License-Identifier: MIT


// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v3.3.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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    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;
    }

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v3.3.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 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`
    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 1;
    }

    /**
     * @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 auxillary 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 auxillary 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;
        assembly { // Cast aux without masking.
            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;
    }

    /**
     * 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 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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @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 {
        _transfer(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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) 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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    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 or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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 _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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 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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @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, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), 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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/test.sol


pragma solidity ^0.8.0;




contract CuteCats is ERC721A, Ownable {
    using Strings for uint256;

    string private baseURI;
    uint256 public price = 0.0069 ether;
    uint256 public maxPerTx = 4;
    uint256 public maxPerWallet = 4;
    uint256 public maxFreePerWallet = 0;
    uint256 public totalFree = 0;
    uint256 public maxSupply = 3333;

    bool public mintEnabled = true;

    mapping(address => uint256) private _Amount;

    constructor() ERC721A("Cute Cats", "CC") {
        _safeMint(msg.sender, 5);
        setBaseURI("ipfs://QmQBYPdhXd1Tt8qnTCSKSMuBo7ENrqSaAM7k8cPqYsezMe/");
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_Amount[msg.sender] + count <= maxPerWallet));

        if (isFree) {
            cost = 0;
        }


       
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more");
        require(mintEnabled, "Minting is not live yet");
        require(count < maxPerTx + 1, "Max per TX reached.");
        require(count < maxPerWallet + 1, "No.");


        if (isFree) {
            _Amount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setFreeAmount(uint256 amount) external onlyOwner {
        totalFree = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        price = _newPrice;
    }

    function flipSale() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526618838370f34000600a556004600b556004600c556000600d556000600e55610d05600f556001601060006101000a81548160ff0219169083151502179055503480156200005157600080fd5b506040518060400160405280600981526020017f43757465204361747300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f43430000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d6929190620007bc565b508060039080519060200190620000ef929190620007bc565b50620001006200016b60201b60201c565b6000819055505050620001286200011c6200017460201b60201c565b6200017c60201b60201c565b6200013b3360056200024260201b60201c565b6200016560405180606001604052806036815260200162003dca603691396200026860201b60201c565b62000b35565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002648282604051806020016040528060008152506200031360201b60201c565b5050565b620002786200017460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200029e620005f860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ee906200098d565b60405180910390fd5b80600990805190602001906200030f929190620007bc565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000381576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415620003bd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003d260008583866200062260201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16200043f600185146200062860201b60201c565b901b60a042901b62000457866200063260201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1462000568575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200051460008784806001019550876200063c60201b60201c565b6200054b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106200049d5782600054146200056257600080fd5b620005d4565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000569575b816000819055505050620005f26000858386620007ae60201b60201c565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200066a620007b460201b60201c565b8786866040518563ffffffff1660e01b81526004016200068e949392919062000939565b602060405180830381600087803b158015620006a957600080fd5b505af1925050508015620006dd57506040513d601f19601f82011682018060405250810190620006da919062000883565b60015b6200075b573d806000811462000710576040519150601f19603f3d011682016040523d82523d6000602084013e62000715565b606091505b5060008151141562000753576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620007ca9062000a7c565b90600052602060002090601f016020900481019282620007ee57600085556200083a565b82601f106200080957805160ff19168380011785556200083a565b828001600101855582156200083a579182015b82811115620008395782518255916020019190600101906200081c565b5b5090506200084991906200084d565b5090565b5b80821115620008685760008160009055506001016200084e565b5090565b6000815190506200087d8162000b1b565b92915050565b6000602082840312156200089657600080fd5b6000620008a6848285016200086c565b91505092915050565b620008ba81620009dc565b82525050565b6000620008cd82620009af565b620008d98185620009ba565b9350620008eb81856020860162000a46565b620008f68162000ae1565b840191505092915050565b600062000910602083620009cb565b91506200091d8262000af2565b602082019050919050565b620009338162000a3c565b82525050565b6000608082019050620009506000830187620008af565b6200095f6020830186620008af565b6200096e604083018562000928565b8181036060830152620009828184620008c0565b905095945050505050565b60006020820190508181036000830152620009a88162000901565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620009e98262000a1c565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a6657808201518184015260208101905062000a49565b8381111562000a76576000848401525b50505050565b6000600282049050600182168062000a9557607f821691505b6020821081141562000aac5762000aab62000ab2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000b2681620009f0565b811462000b3257600080fd5b50565b6132858062000b456000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb011461062f578063e985e9c51461065a578063f2fde38b14610697578063f968adbe146106c0576101cd565b8063a702735714610573578063b88d4fde1461059e578063c87b56dd146105c7578063d123973014610604576101cd565b806395d89b41116100d157806395d89b41146104d8578063a035b1fe14610503578063a0712d681461052e578063a22cb4651461054a576101cd565b80638da5cb5b1461045b57806391b7f5ed1461048657806392910eec146104af576101cd565b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103b357806370a08231146103f0578063715018a61461042d5780637ba5e62114610444576101cd565b80633ccfd60b1461031f57806342842e0e14610336578063453c23101461035f57806355f804b31461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb578063333e44e6146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906125fc565b6106eb565b6040516102069190612a33565b60405180910390f35b34801561021b57600080fd5b5061022461077d565b6040516102319190612a4e565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061268f565b61080f565b60405161026e91906129cc565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906125c0565b61088b565b005b3480156102ac57600080fd5b506102b5610a32565b6040516102c29190612b90565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906124ba565b610a49565b005b34801561030057600080fd5b50610309610a59565b6040516103169190612b90565b60405180910390f35b34801561032b57600080fd5b50610334610a5f565b005b34801561034257600080fd5b5061035d600480360381019061035891906124ba565b610b8a565b005b34801561036b57600080fd5b50610374610baa565b6040516103819190612b90565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061264e565b610bb0565b005b3480156103bf57600080fd5b506103da60048036038101906103d5919061268f565b610c46565b6040516103e791906129cc565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612455565b610c58565b6040516104249190612b90565b60405180910390f35b34801561043957600080fd5b50610442610d11565b005b34801561045057600080fd5b50610459610d99565b005b34801561046757600080fd5b50610470610e41565b60405161047d91906129cc565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a8919061268f565b610e6b565b005b3480156104bb57600080fd5b506104d660048036038101906104d1919061268f565b610ef1565b005b3480156104e457600080fd5b506104ed610f77565b6040516104fa9190612a4e565b60405180910390f35b34801561050f57600080fd5b50610518611009565b6040516105259190612b90565b60405180910390f35b6105486004803603810190610543919061268f565b61100f565b005b34801561055657600080fd5b50610571600480360381019061056c9190612584565b6112ab565b005b34801561057f57600080fd5b50610588611423565b6040516105959190612b90565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612509565b611429565b005b3480156105d357600080fd5b506105ee60048036038101906105e9919061268f565b61149c565b6040516105fb9190612a4e565b60405180910390f35b34801561061057600080fd5b50610619611518565b6040516106269190612a33565b60405180910390f35b34801561063b57600080fd5b5061064461152b565b6040516106519190612b90565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c919061247e565b611531565b60405161068e9190612a33565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612455565b6115c5565b005b3480156106cc57600080fd5b506106d56116bd565b6040516106e29190612b90565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078c90612e60565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890612e60565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b600061081a826116c3565b610850576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089682611722565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091d6117f0565b73ffffffffffffffffffffffffffffffffffffffff161461098057610949816109446117f0565b611531565b61097f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a3c6117f8565b6001546000540303905090565b610a54838383611801565b505050565b600e5481565b610a67611bab565b73ffffffffffffffffffffffffffffffffffffffff16610a85610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290612ad0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b01906129b7565b60006040518083038185875af1925050503d8060008114610b3e576040519150601f19603f3d011682016040523d82523d6000602084013e610b43565b606091505b5050905080610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90612b30565b60405180910390fd5b50565b610ba583838360405180602001604052806000815250611429565b505050565b600c5481565b610bb8611bab565b73ffffffffffffffffffffffffffffffffffffffff16610bd6610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390612ad0565b60405180910390fd5b8060099080519060200190610c42929190612279565b5050565b6000610c5182611722565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d19611bab565b73ffffffffffffffffffffffffffffffffffffffff16610d37610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490612ad0565b60405180910390fd5b610d976000611bb3565b565b610da1611bab565b73ffffffffffffffffffffffffffffffffffffffff16610dbf610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90612ad0565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e73611bab565b73ffffffffffffffffffffffffffffffffffffffff16610e91610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90612ad0565b60405180910390fd5b80600a8190555050565b610ef9611bab565b73ffffffffffffffffffffffffffffffffffffffff16610f17610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6490612ad0565b60405180910390fd5b80600e8190555050565b606060038054610f8690612e60565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612e60565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600e546110279190612c95565b83611030610a32565b61103a9190612c95565b1080156110935750600c5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110909190612c95565b11155b905080156110a057600091505b81836110ac9190612d1c565b3410156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590612b10565b60405180910390fd5b6001600f546110fd9190612c95565b83611106610a32565b6111109190612c95565b10611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790612a90565b60405180910390fd5b601060009054906101000a900460ff1661119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690612a70565b60405180910390fd5b6001600b546111ae9190612c95565b83106111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690612b50565b60405180910390fd5b6001600c546111fe9190612c95565b831061123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690612b70565b60405180910390fd5b801561129c5782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112949190612c95565b925050819055505b6112a63384611c79565b505050565b6112b36117f0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611318576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113256117f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113d26117f0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114179190612a33565b60405180910390a35050565b600d5481565b611434848484611801565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114965761145f84848484611c97565b611495576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114a7826116c3565b6114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90612af0565b60405180910390fd5b60096114f183611df7565b604051602001611502929190612988565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115cd611bab565b73ffffffffffffffffffffffffffffffffffffffff166115eb610e41565b73ffffffffffffffffffffffffffffffffffffffff1614611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890612ad0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890612ab0565b60405180910390fd5b6116ba81611bb3565b50565b600b5481565b6000816116ce6117f8565b111580156116dd575060005482105b801561171b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806117316117f8565b116117b9576000548110156117b85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117b6575b60008114156117ac576004600083600190039350838152602001908152602001600020549050611781565b80925050506117eb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061180c82611722565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611873576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118946117f0565b73ffffffffffffffffffffffffffffffffffffffff1614806118c357506118c2856118bd6117f0565b611531565b5b8061190857506118d16117f0565b73ffffffffffffffffffffffffffffffffffffffff166118f08461080f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611941576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119b58585856001611fa4565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611ab286611faa565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611b3c576000600184019050600060046000838152602001908152602001600020541415611b3a576000548114611b39578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ba48585856001611fb4565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c93828260405180602001604052806000815250611fba565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cbd6117f0565b8786866040518563ffffffff1660e01b8152600401611cdf94939291906129e7565b602060405180830381600087803b158015611cf957600080fd5b505af1925050508015611d2a57506040513d601f19601f82011682018060405250810190611d279190612625565b60015b611da4573d8060008114611d5a576040519150601f19603f3d011682016040523d82523d6000602084013e611d5f565b606091505b50600081511415611d9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e3f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9f565b600082905060005b60008214611e71578080611e5a90612ec3565b915050600a82611e6a9190612ceb565b9150611e47565b60008167ffffffffffffffff811115611eb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ee55781602001600182028036833780820191505090505b5090505b60008514611f9857600182611efe9190612d76565b9150600a85611f0d9190612f0c565b6030611f199190612c95565b60f81b818381518110611f55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f919190612ceb565b9450611ee9565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612027576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612062576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61206f6000858386611fa4565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16120d46001851461226f565b901b60a042901b6120e486611faa565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146121e8575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121986000878480600101955087611c97565b6121ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106121295782600054146121e357600080fd5b612253565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106121e9575b8160008190555050506122696000858386611fb4565b50505050565b6000819050919050565b82805461228590612e60565b90600052602060002090601f0160209004810192826122a757600085556122ee565b82601f106122c057805160ff19168380011785556122ee565b828001600101855582156122ee579182015b828111156122ed5782518255916020019190600101906122d2565b5b5090506122fb91906122ff565b5090565b5b80821115612318576000816000905550600101612300565b5090565b600061232f61232a84612bd0565b612bab565b90508281526020810184848401111561234757600080fd5b612352848285612e1e565b509392505050565b600061236d61236884612c01565b612bab565b90508281526020810184848401111561238557600080fd5b612390848285612e1e565b509392505050565b6000813590506123a7816131f3565b92915050565b6000813590506123bc8161320a565b92915050565b6000813590506123d181613221565b92915050565b6000815190506123e681613221565b92915050565b600082601f8301126123fd57600080fd5b813561240d84826020860161231c565b91505092915050565b600082601f83011261242757600080fd5b813561243784826020860161235a565b91505092915050565b60008135905061244f81613238565b92915050565b60006020828403121561246757600080fd5b600061247584828501612398565b91505092915050565b6000806040838503121561249157600080fd5b600061249f85828601612398565b92505060206124b085828601612398565b9150509250929050565b6000806000606084860312156124cf57600080fd5b60006124dd86828701612398565b93505060206124ee86828701612398565b92505060406124ff86828701612440565b9150509250925092565b6000806000806080858703121561251f57600080fd5b600061252d87828801612398565b945050602061253e87828801612398565b935050604061254f87828801612440565b925050606085013567ffffffffffffffff81111561256c57600080fd5b612578878288016123ec565b91505092959194509250565b6000806040838503121561259757600080fd5b60006125a585828601612398565b92505060206125b6858286016123ad565b9150509250929050565b600080604083850312156125d357600080fd5b60006125e185828601612398565b92505060206125f285828601612440565b9150509250929050565b60006020828403121561260e57600080fd5b600061261c848285016123c2565b91505092915050565b60006020828403121561263757600080fd5b6000612645848285016123d7565b91505092915050565b60006020828403121561266057600080fd5b600082013567ffffffffffffffff81111561267a57600080fd5b61268684828501612416565b91505092915050565b6000602082840312156126a157600080fd5b60006126af84828501612440565b91505092915050565b6126c181612daa565b82525050565b6126d081612dbc565b82525050565b60006126e182612c47565b6126eb8185612c5d565b93506126fb818560208601612e2d565b61270481612ff9565b840191505092915050565b600061271a82612c52565b6127248185612c79565b9350612734818560208601612e2d565b61273d81612ff9565b840191505092915050565b600061275382612c52565b61275d8185612c8a565b935061276d818560208601612e2d565b80840191505092915050565b6000815461278681612e60565b6127908186612c8a565b945060018216600081146127ab57600181146127bc576127ef565b60ff198316865281860193506127ef565b6127c585612c32565b60005b838110156127e7578154818901526001820191506020810190506127c8565b838801955050505b50505092915050565b6000612805601783612c79565b91506128108261300a565b602082019050919050565b6000612828600783612c79565b915061283382613033565b602082019050919050565b600061284b602683612c79565b91506128568261305c565b604082019050919050565b600061286e600583612c8a565b9150612879826130ab565b600582019050919050565b6000612891602083612c79565b915061289c826130d4565b602082019050919050565b60006128b4602f83612c79565b91506128bf826130fd565b604082019050919050565b60006128d7601d83612c79565b91506128e28261314c565b602082019050919050565b60006128fa600083612c6e565b915061290582613175565b600082019050919050565b600061291d601083612c79565b915061292882613178565b602082019050919050565b6000612940601383612c79565b915061294b826131a1565b602082019050919050565b6000612963600383612c79565b915061296e826131ca565b602082019050919050565b61298281612e14565b82525050565b60006129948285612779565b91506129a08284612748565b91506129ab82612861565b91508190509392505050565b60006129c2826128ed565b9150819050919050565b60006020820190506129e160008301846126b8565b92915050565b60006080820190506129fc60008301876126b8565b612a0960208301866126b8565b612a166040830185612979565b8181036060830152612a2881846126d6565b905095945050505050565b6000602082019050612a4860008301846126c7565b92915050565b60006020820190508181036000830152612a68818461270f565b905092915050565b60006020820190508181036000830152612a89816127f8565b9050919050565b60006020820190508181036000830152612aa98161281b565b9050919050565b60006020820190508181036000830152612ac98161283e565b9050919050565b60006020820190508181036000830152612ae981612884565b9050919050565b60006020820190508181036000830152612b09816128a7565b9050919050565b60006020820190508181036000830152612b29816128ca565b9050919050565b60006020820190508181036000830152612b4981612910565b9050919050565b60006020820190508181036000830152612b6981612933565b9050919050565b60006020820190508181036000830152612b8981612956565b9050919050565b6000602082019050612ba56000830184612979565b92915050565b6000612bb5612bc6565b9050612bc18282612e92565b919050565b6000604051905090565b600067ffffffffffffffff821115612beb57612bea612fca565b5b612bf482612ff9565b9050602081019050919050565b600067ffffffffffffffff821115612c1c57612c1b612fca565b5b612c2582612ff9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ca082612e14565b9150612cab83612e14565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ce057612cdf612f3d565b5b828201905092915050565b6000612cf682612e14565b9150612d0183612e14565b925082612d1157612d10612f6c565b5b828204905092915050565b6000612d2782612e14565b9150612d3283612e14565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d6b57612d6a612f3d565b5b828202905092915050565b6000612d8182612e14565b9150612d8c83612e14565b925082821015612d9f57612d9e612f3d565b5b828203905092915050565b6000612db582612df4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e4b578082015181840152602081019050612e30565b83811115612e5a576000848401525b50505050565b60006002820490506001821680612e7857607f821691505b60208210811415612e8c57612e8b612f9b565b5b50919050565b612e9b82612ff9565b810181811067ffffffffffffffff82111715612eba57612eb9612fca565b5b80604052505050565b6000612ece82612e14565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f0157612f00612f3d565b5b600182019050919050565b6000612f1782612e14565b9150612f2283612e14565b925082612f3257612f31612f6c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f4e6f2e0000000000000000000000000000000000000000000000000000000000600082015250565b6131fc81612daa565b811461320757600080fd5b50565b61321381612dbc565b811461321e57600080fd5b50565b61322a81612dc8565b811461323557600080fd5b50565b61324181612e14565b811461324c57600080fd5b5056fea26469706673582212202d8de69a40b414ecbdab001d8a52bfe9bcffa9f4b334303a54cd46b3f448d7b164736f6c63430008040033697066733a2f2f516d514259506468586431547438716e5443534b534d75426f37454e72715361414d376b386350715973657a4d652f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb011461062f578063e985e9c51461065a578063f2fde38b14610697578063f968adbe146106c0576101cd565b8063a702735714610573578063b88d4fde1461059e578063c87b56dd146105c7578063d123973014610604576101cd565b806395d89b41116100d157806395d89b41146104d8578063a035b1fe14610503578063a0712d681461052e578063a22cb4651461054a576101cd565b80638da5cb5b1461045b57806391b7f5ed1461048657806392910eec146104af576101cd565b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103b357806370a08231146103f0578063715018a61461042d5780637ba5e62114610444576101cd565b80633ccfd60b1461031f57806342842e0e14610336578063453c23101461035f57806355f804b31461038a576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb578063333e44e6146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906125fc565b6106eb565b6040516102069190612a33565b60405180910390f35b34801561021b57600080fd5b5061022461077d565b6040516102319190612a4e565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061268f565b61080f565b60405161026e91906129cc565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906125c0565b61088b565b005b3480156102ac57600080fd5b506102b5610a32565b6040516102c29190612b90565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906124ba565b610a49565b005b34801561030057600080fd5b50610309610a59565b6040516103169190612b90565b60405180910390f35b34801561032b57600080fd5b50610334610a5f565b005b34801561034257600080fd5b5061035d600480360381019061035891906124ba565b610b8a565b005b34801561036b57600080fd5b50610374610baa565b6040516103819190612b90565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac919061264e565b610bb0565b005b3480156103bf57600080fd5b506103da60048036038101906103d5919061268f565b610c46565b6040516103e791906129cc565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612455565b610c58565b6040516104249190612b90565b60405180910390f35b34801561043957600080fd5b50610442610d11565b005b34801561045057600080fd5b50610459610d99565b005b34801561046757600080fd5b50610470610e41565b60405161047d91906129cc565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a8919061268f565b610e6b565b005b3480156104bb57600080fd5b506104d660048036038101906104d1919061268f565b610ef1565b005b3480156104e457600080fd5b506104ed610f77565b6040516104fa9190612a4e565b60405180910390f35b34801561050f57600080fd5b50610518611009565b6040516105259190612b90565b60405180910390f35b6105486004803603810190610543919061268f565b61100f565b005b34801561055657600080fd5b50610571600480360381019061056c9190612584565b6112ab565b005b34801561057f57600080fd5b50610588611423565b6040516105959190612b90565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c09190612509565b611429565b005b3480156105d357600080fd5b506105ee60048036038101906105e9919061268f565b61149c565b6040516105fb9190612a4e565b60405180910390f35b34801561061057600080fd5b50610619611518565b6040516106269190612a33565b60405180910390f35b34801561063b57600080fd5b5061064461152b565b6040516106519190612b90565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c919061247e565b611531565b60405161068e9190612a33565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612455565b6115c5565b005b3480156106cc57600080fd5b506106d56116bd565b6040516106e29190612b90565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078c90612e60565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890612e60565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b600061081a826116c3565b610850576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089682611722565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091d6117f0565b73ffffffffffffffffffffffffffffffffffffffff161461098057610949816109446117f0565b611531565b61097f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a3c6117f8565b6001546000540303905090565b610a54838383611801565b505050565b600e5481565b610a67611bab565b73ffffffffffffffffffffffffffffffffffffffff16610a85610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad290612ad0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b01906129b7565b60006040518083038185875af1925050503d8060008114610b3e576040519150601f19603f3d011682016040523d82523d6000602084013e610b43565b606091505b5050905080610b87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7e90612b30565b60405180910390fd5b50565b610ba583838360405180602001604052806000815250611429565b505050565b600c5481565b610bb8611bab565b73ffffffffffffffffffffffffffffffffffffffff16610bd6610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390612ad0565b60405180910390fd5b8060099080519060200190610c42929190612279565b5050565b6000610c5182611722565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d19611bab565b73ffffffffffffffffffffffffffffffffffffffff16610d37610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8490612ad0565b60405180910390fd5b610d976000611bb3565b565b610da1611bab565b73ffffffffffffffffffffffffffffffffffffffff16610dbf610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0c90612ad0565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610e73611bab565b73ffffffffffffffffffffffffffffffffffffffff16610e91610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90612ad0565b60405180910390fd5b80600a8190555050565b610ef9611bab565b73ffffffffffffffffffffffffffffffffffffffff16610f17610e41565b73ffffffffffffffffffffffffffffffffffffffff1614610f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6490612ad0565b60405180910390fd5b80600e8190555050565b606060038054610f8690612e60565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612e60565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600e546110279190612c95565b83611030610a32565b61103a9190612c95565b1080156110935750600c5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546110909190612c95565b11155b905080156110a057600091505b81836110ac9190612d1c565b3410156110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e590612b10565b60405180910390fd5b6001600f546110fd9190612c95565b83611106610a32565b6111109190612c95565b10611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790612a90565b60405180910390fd5b601060009054906101000a900460ff1661119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690612a70565b60405180910390fd5b6001600b546111ae9190612c95565b83106111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690612b50565b60405180910390fd5b6001600c546111fe9190612c95565b831061123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690612b70565b60405180910390fd5b801561129c5782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112949190612c95565b925050819055505b6112a63384611c79565b505050565b6112b36117f0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611318576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113256117f0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113d26117f0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114179190612a33565b60405180910390a35050565b600d5481565b611434848484611801565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114965761145f84848484611c97565b611495576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114a7826116c3565b6114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90612af0565b60405180910390fd5b60096114f183611df7565b604051602001611502929190612988565b6040516020818303038152906040529050919050565b601060009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115cd611bab565b73ffffffffffffffffffffffffffffffffffffffff166115eb610e41565b73ffffffffffffffffffffffffffffffffffffffff1614611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890612ad0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a890612ab0565b60405180910390fd5b6116ba81611bb3565b50565b600b5481565b6000816116ce6117f8565b111580156116dd575060005482105b801561171b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806117316117f8565b116117b9576000548110156117b85760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117b6575b60008114156117ac576004600083600190039350838152602001908152602001600020549050611781565b80925050506117eb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061180c82611722565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611873576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118946117f0565b73ffffffffffffffffffffffffffffffffffffffff1614806118c357506118c2856118bd6117f0565b611531565b5b8061190857506118d16117f0565b73ffffffffffffffffffffffffffffffffffffffff166118f08461080f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611941576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119a8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119b58585856001611fa4565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611ab286611faa565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611b3c576000600184019050600060046000838152602001908152602001600020541415611b3a576000548114611b39578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ba48585856001611fb4565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c93828260405180602001604052806000815250611fba565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cbd6117f0565b8786866040518563ffffffff1660e01b8152600401611cdf94939291906129e7565b602060405180830381600087803b158015611cf957600080fd5b505af1925050508015611d2a57506040513d601f19601f82011682018060405250810190611d279190612625565b60015b611da4573d8060008114611d5a576040519150601f19603f3d011682016040523d82523d6000602084013e611d5f565b606091505b50600081511415611d9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e3f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f9f565b600082905060005b60008214611e71578080611e5a90612ec3565b915050600a82611e6a9190612ceb565b9150611e47565b60008167ffffffffffffffff811115611eb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ee55781602001600182028036833780820191505090505b5090505b60008514611f9857600182611efe9190612d76565b9150600a85611f0d9190612f0c565b6030611f199190612c95565b60f81b818381518110611f55577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f919190612ceb565b9450611ee9565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612027576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612062576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61206f6000858386611fa4565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16120d46001851461226f565b901b60a042901b6120e486611faa565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146121e8575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121986000878480600101955087611c97565b6121ce576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106121295782600054146121e357600080fd5b612253565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106121e9575b8160008190555050506122696000858386611fb4565b50505050565b6000819050919050565b82805461228590612e60565b90600052602060002090601f0160209004810192826122a757600085556122ee565b82601f106122c057805160ff19168380011785556122ee565b828001600101855582156122ee579182015b828111156122ed5782518255916020019190600101906122d2565b5b5090506122fb91906122ff565b5090565b5b80821115612318576000816000905550600101612300565b5090565b600061232f61232a84612bd0565b612bab565b90508281526020810184848401111561234757600080fd5b612352848285612e1e565b509392505050565b600061236d61236884612c01565b612bab565b90508281526020810184848401111561238557600080fd5b612390848285612e1e565b509392505050565b6000813590506123a7816131f3565b92915050565b6000813590506123bc8161320a565b92915050565b6000813590506123d181613221565b92915050565b6000815190506123e681613221565b92915050565b600082601f8301126123fd57600080fd5b813561240d84826020860161231c565b91505092915050565b600082601f83011261242757600080fd5b813561243784826020860161235a565b91505092915050565b60008135905061244f81613238565b92915050565b60006020828403121561246757600080fd5b600061247584828501612398565b91505092915050565b6000806040838503121561249157600080fd5b600061249f85828601612398565b92505060206124b085828601612398565b9150509250929050565b6000806000606084860312156124cf57600080fd5b60006124dd86828701612398565b93505060206124ee86828701612398565b92505060406124ff86828701612440565b9150509250925092565b6000806000806080858703121561251f57600080fd5b600061252d87828801612398565b945050602061253e87828801612398565b935050604061254f87828801612440565b925050606085013567ffffffffffffffff81111561256c57600080fd5b612578878288016123ec565b91505092959194509250565b6000806040838503121561259757600080fd5b60006125a585828601612398565b92505060206125b6858286016123ad565b9150509250929050565b600080604083850312156125d357600080fd5b60006125e185828601612398565b92505060206125f285828601612440565b9150509250929050565b60006020828403121561260e57600080fd5b600061261c848285016123c2565b91505092915050565b60006020828403121561263757600080fd5b6000612645848285016123d7565b91505092915050565b60006020828403121561266057600080fd5b600082013567ffffffffffffffff81111561267a57600080fd5b61268684828501612416565b91505092915050565b6000602082840312156126a157600080fd5b60006126af84828501612440565b91505092915050565b6126c181612daa565b82525050565b6126d081612dbc565b82525050565b60006126e182612c47565b6126eb8185612c5d565b93506126fb818560208601612e2d565b61270481612ff9565b840191505092915050565b600061271a82612c52565b6127248185612c79565b9350612734818560208601612e2d565b61273d81612ff9565b840191505092915050565b600061275382612c52565b61275d8185612c8a565b935061276d818560208601612e2d565b80840191505092915050565b6000815461278681612e60565b6127908186612c8a565b945060018216600081146127ab57600181146127bc576127ef565b60ff198316865281860193506127ef565b6127c585612c32565b60005b838110156127e7578154818901526001820191506020810190506127c8565b838801955050505b50505092915050565b6000612805601783612c79565b91506128108261300a565b602082019050919050565b6000612828600783612c79565b915061283382613033565b602082019050919050565b600061284b602683612c79565b91506128568261305c565b604082019050919050565b600061286e600583612c8a565b9150612879826130ab565b600582019050919050565b6000612891602083612c79565b915061289c826130d4565b602082019050919050565b60006128b4602f83612c79565b91506128bf826130fd565b604082019050919050565b60006128d7601d83612c79565b91506128e28261314c565b602082019050919050565b60006128fa600083612c6e565b915061290582613175565b600082019050919050565b600061291d601083612c79565b915061292882613178565b602082019050919050565b6000612940601383612c79565b915061294b826131a1565b602082019050919050565b6000612963600383612c79565b915061296e826131ca565b602082019050919050565b61298281612e14565b82525050565b60006129948285612779565b91506129a08284612748565b91506129ab82612861565b91508190509392505050565b60006129c2826128ed565b9150819050919050565b60006020820190506129e160008301846126b8565b92915050565b60006080820190506129fc60008301876126b8565b612a0960208301866126b8565b612a166040830185612979565b8181036060830152612a2881846126d6565b905095945050505050565b6000602082019050612a4860008301846126c7565b92915050565b60006020820190508181036000830152612a68818461270f565b905092915050565b60006020820190508181036000830152612a89816127f8565b9050919050565b60006020820190508181036000830152612aa98161281b565b9050919050565b60006020820190508181036000830152612ac98161283e565b9050919050565b60006020820190508181036000830152612ae981612884565b9050919050565b60006020820190508181036000830152612b09816128a7565b9050919050565b60006020820190508181036000830152612b29816128ca565b9050919050565b60006020820190508181036000830152612b4981612910565b9050919050565b60006020820190508181036000830152612b6981612933565b9050919050565b60006020820190508181036000830152612b8981612956565b9050919050565b6000602082019050612ba56000830184612979565b92915050565b6000612bb5612bc6565b9050612bc18282612e92565b919050565b6000604051905090565b600067ffffffffffffffff821115612beb57612bea612fca565b5b612bf482612ff9565b9050602081019050919050565b600067ffffffffffffffff821115612c1c57612c1b612fca565b5b612c2582612ff9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ca082612e14565b9150612cab83612e14565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ce057612cdf612f3d565b5b828201905092915050565b6000612cf682612e14565b9150612d0183612e14565b925082612d1157612d10612f6c565b5b828204905092915050565b6000612d2782612e14565b9150612d3283612e14565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d6b57612d6a612f3d565b5b828202905092915050565b6000612d8182612e14565b9150612d8c83612e14565b925082821015612d9f57612d9e612f3d565b5b828203905092915050565b6000612db582612df4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e4b578082015181840152602081019050612e30565b83811115612e5a576000848401525b50505050565b60006002820490506001821680612e7857607f821691505b60208210811415612e8c57612e8b612f9b565b5b50919050565b612e9b82612ff9565b810181811067ffffffffffffffff82111715612eba57612eb9612fca565b5b80604052505050565b6000612ece82612e14565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612f0157612f00612f3d565b5b600182019050919050565b6000612f1782612e14565b9150612f2283612e14565b925082612f3257612f31612f6c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b7f4e6f2e0000000000000000000000000000000000000000000000000000000000600082015250565b6131fc81612daa565b811461320757600080fd5b50565b61321381612dbc565b811461321e57600080fd5b50565b61322a81612dc8565b811461323557600080fd5b50565b61324181612e14565b811461324c57600080fd5b5056fea26469706673582212202d8de69a40b414ecbdab001d8a52bfe9bcffa9f4b334303a54cd46b3f448d7b164736f6c63430008040033

Deployed Bytecode Sourcemap

77506:2408:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14028:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19041:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21109:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20569:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13082:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21995:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77770:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79705:206;;;;;;;;;;;;;:::i;:::-;;22236:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77690:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79314:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18830:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14707:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44549:103;;;;;;;;;;;;;:::i;:::-;;79613:84;;;;;;;;;;;;;:::i;:::-;;43898:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79513:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79410:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19210:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77614:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78107:725;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21385:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77728:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22492:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78956:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77845:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77805:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21764:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44807:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77656:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14028:615;14113:4;14428:10;14413:25;;:11;:25;;;;:102;;;;14505:10;14490:25;;:11;:25;;;;14413:102;:179;;;;14582:10;14567:25;;:11;:25;;;;14413:179;14393:199;;14028:615;;;:::o;19041:100::-;19095:13;19128:5;19121:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19041:100;:::o;21109:204::-;21177:7;21202:16;21210:7;21202;:16::i;:::-;21197:64;;21227:34;;;;;;;;;;;;;;21197:64;21281:15;:24;21297:7;21281:24;;;;;;;;;;;;;;;;;;;;;21274:31;;21109:204;;;:::o;20569:474::-;20642:13;20674:27;20693:7;20674:18;:27::i;:::-;20642:61;;20724:5;20718:11;;:2;:11;;;20714:48;;;20738:24;;;;;;;;;;;;;;20714:48;20802:5;20779:28;;:19;:17;:19::i;:::-;:28;;;20775:175;;20827:44;20844:5;20851:19;:17;:19::i;:::-;20827:16;:44::i;:::-;20822:128;;20899:35;;;;;;;;;;;;;;20822:128;20775:175;20989:2;20962:15;:24;20978:7;20962:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;21027:7;21023:2;21007:28;;21016:5;21007:28;;;;;;;;;;;;20569:474;;;:::o;13082:315::-;13135:7;13363:15;:13;:15::i;:::-;13348:12;;13332:13;;:28;:46;13325:53;;13082:315;:::o;21995:170::-;22129:28;22139:4;22145:2;22149:7;22129:9;:28::i;:::-;21995:170;;;:::o;77770:28::-;;;;:::o;79705:206::-;44129:12;:10;:12::i;:::-;44118:23;;:7;:5;:7::i;:::-;:23;;;44110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79756:12:::1;79782:10;79774:24;;79820:21;79774:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79755:101;;;79875:7;79867:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;44189:1;79705:206::o:0;22236:185::-;22374:39;22391:4;22397:2;22401:7;22374:39;;;;;;;;;;;;:16;:39::i;:::-;22236:185;;;:::o;77690:31::-;;;;:::o;79314:88::-;44129:12;:10;:12::i;:::-;44118:23;;:7;:5;:7::i;:::-;:23;;;44110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79391:3:::1;79381:7;:13;;;;;;;;;;;;:::i;:::-;;79314:88:::0;:::o;18830:144::-;18894:7;18937:27;18956:7;18937:18;:27::i;:::-;18914:52;;18830:144;;;:::o;14707:224::-;14771:7;14812:1;14795:19;;:5;:19;;;14791:60;;;14823:28;;;;;;;;;;;;;;14791:60;10046:13;14869:18;:25;14888:5;14869:25;;;;;;;;;;;;;;;;:54;14862:61;;14707:224;;;:::o;44549:103::-;44129:12;:10;:12::i;:::-;44118:23;;:7;:5;:7::i;:::-;:23;;;44110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44614:30:::1;44641:1;44614:18;:30::i;:::-;44549:103::o:0;79613:84::-;44129:12;:10;:12::i;:::-;44118:23;;:7;:5;:7::i;:::-;:23;;;44110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79678:11:::1;;;;;;;;;;;79677:12;79663:11;;:26;;;;;;;;;;;;;;;;;;79613:84::o:0;43898:87::-;43944:7;43971:6;;;;;;;;;;;43964:13;;43898:87;:::o;79513:92::-;44129:12;:10;:12::i;:::-;44118:23;;:7;:5;:7::i;:::-;:23;;;44110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79588:9:::1;79580:5;:17;;;;79513:92:::0;:::o;79410:95::-;44129:12;:10;:12::i;:::-;44118:23;;:7;:5;:7::i;:::-;:23;;;44110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79491:6:::1;79479:9;:18;;;;79410:95:::0;:::o;19210:104::-;19266:13;19299:7;19292:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19210:104;:::o;77614:35::-;;;;:::o;78107:725::-;78164:12;78179:5;;78164:20;;78195:11;78247:1;78235:9;;:13;;;;:::i;:::-;78227:5;78211:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;78210:101;;;;;78298:12;;78289:5;78267:7;:19;78275:10;78267:19;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;:43;;78210:101;78195:117;;78329:6;78325:47;;;78359:1;78352:8;;78325:47;78424:4;78416:5;:12;;;;:::i;:::-;78403:9;:25;;78395:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;78517:1;78505:9;;:13;;;;:::i;:::-;78497:5;78481:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;78473:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;78549:11;;;;;;;;;;;78541:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;78626:1;78615:8;;:12;;;;:::i;:::-;78607:5;:20;78599:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;78693:1;78678:12;;:16;;;;:::i;:::-;78670:5;:24;78662:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;78721:6;78717:67;;;78767:5;78744:7;:19;78752:10;78744:19;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;78717:67;78796:28;78806:10;78818:5;78796:9;:28::i;:::-;78107:725;;;:::o;21385:308::-;21496:19;:17;:19::i;:::-;21484:31;;:8;:31;;;21480:61;;;21524:17;;;;;;;;;;;;;;21480:61;21606:8;21554:18;:39;21573:19;:17;:19::i;:::-;21554:39;;;;;;;;;;;;;;;:49;21594:8;21554:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;21666:8;21630:55;;21645:19;:17;:19::i;:::-;21630:55;;;21676:8;21630:55;;;;;;:::i;:::-;;;;;;;;21385:308;;:::o;77728:35::-;;;;:::o;22492:396::-;22659:28;22669:4;22675:2;22679:7;22659:9;:28::i;:::-;22720:1;22702:2;:14;;;:19;22698:183;;22741:56;22772:4;22778:2;22782:7;22791:5;22741:30;:56::i;:::-;22736:145;;22825:40;;;;;;;;;;;;;;22736:145;22698:183;22492:396;;;;:::o;78956:350::-;79074:13;79127:16;79135:7;79127;:16::i;:::-;79105:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;79260:7;79269:18;:7;:16;:18::i;:::-;79243:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79229:69;;78956:350;;;:::o;77845:30::-;;;;;;;;;;;;;:::o;77805:31::-;;;;:::o;21764:164::-;21861:4;21885:18;:25;21904:5;21885:25;;;;;;;;;;;;;;;:35;21911:8;21885:35;;;;;;;;;;;;;;;;;;;;;;;;;21878:42;;21764:164;;;;:::o;44807:201::-;44129:12;:10;:12::i;:::-;44118:23;;:7;:5;:7::i;:::-;:23;;;44110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44916:1:::1;44896:22;;:8;:22;;;;44888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44972:28;44991:8;44972:18;:28::i;:::-;44807:201:::0;:::o;77656:27::-;;;;:::o;23143:273::-;23200:4;23256:7;23237:15;:13;:15::i;:::-;:26;;:66;;;;;23290:13;;23280:7;:23;23237:66;:152;;;;;23388:1;10816:8;23341:17;:26;23359:7;23341:26;;;;;;;;;;;;:43;:48;23237:152;23217:172;;23143:273;;;:::o;16345:1129::-;16412:7;16432:12;16447:7;16432:22;;16515:4;16496:15;:13;:15::i;:::-;:23;16492:915;;16549:13;;16542:4;:20;16538:869;;;16587:14;16604:17;:23;16622:4;16604:23;;;;;;;;;;;;16587:40;;16720:1;10816:8;16693:6;:23;:28;16689:699;;;17212:113;17229:1;17219:6;:11;17212:113;;;17272:17;:25;17290:6;;;;;;;17272:25;;;;;;;;;;;;17263:34;;17212:113;;;17358:6;17351:13;;;;;;16689:699;16538:869;;16492:915;17435:31;;;;;;;;;;;;;;16345:1129;;;;:::o;37125:105::-;37185:7;37212:10;37205:17;;37125:105;:::o;12605:92::-;12661:7;12688:1;12681:8;;12605:92;:::o;28382:2515::-;28497:27;28527;28546:7;28527:18;:27::i;:::-;28497:57;;28612:4;28571:45;;28587:19;28571:45;;;28567:86;;28625:28;;;;;;;;;;;;;;28567:86;28666:22;28715:4;28692:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;28736:43;28753:4;28759:19;:17;:19::i;:::-;28736:16;:43::i;:::-;28692:87;:147;;;;28820:19;:17;:19::i;:::-;28796:43;;:20;28808:7;28796:11;:20::i;:::-;:43;;;28692:147;28666:174;;28858:17;28853:66;;28884:35;;;;;;;;;;;;;;28853:66;28948:1;28934:16;;:2;:16;;;28930:52;;;28959:23;;;;;;;;;;;;;;28930:52;28995:43;29017:4;29023:2;29027:7;29036:1;28995:21;:43::i;:::-;29111:15;:24;29127:7;29111:24;;;;;;;;;;;;29104:31;;;;;;;;;;;29503:18;:24;29522:4;29503:24;;;;;;;;;;;;;;;;29501:26;;;;;;;;;;;;29572:18;:22;29591:2;29572:22;;;;;;;;;;;;;;;;29570:24;;;;;;;;;;;11098:8;10700:3;29953:15;:41;;29911:21;29929:2;29911:17;:21::i;:::-;:84;:128;29865:17;:26;29883:7;29865:26;;;;;;;;;;;:174;;;;30209:1;11098:8;30159:19;:46;:51;30155:626;;;30231:19;30263:1;30253:7;:11;30231:33;;30420:1;30386:17;:30;30404:11;30386:30;;;;;;;;;;;;:35;30382:384;;;30524:13;;30509:11;:28;30505:242;;30704:19;30671:17;:30;30689:11;30671:30;;;;;;;;;;;:52;;;;30505:242;30382:384;30155:626;;30828:7;30824:2;30809:27;;30818:4;30809:27;;;;;;;;;;;;30847:42;30868:4;30874:2;30878:7;30887:1;30847:20;:42::i;:::-;28382:2515;;;;;:::o;42569:98::-;42622:7;42649:10;42642:17;;42569:98;:::o;45168:191::-;45242:16;45261:6;;;;;;;;;;;45242:25;;45287:8;45278:6;;:17;;;;;;;;;;;;;;;;;;45342:8;45311:40;;45332:8;45311:40;;;;;;;;;;;;45168:191;;:::o;23500:104::-;23569:27;23579:2;23583:8;23569:27;;;;;;;;;;;;:9;:27::i;:::-;23500:104;;:::o;34594:716::-;34757:4;34803:2;34778:45;;;34824:19;:17;:19::i;:::-;34845:4;34851:7;34860:5;34778:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34774:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35078:1;35061:6;:13;:18;35057:235;;;35107:40;;;;;;;;;;;;;;35057:235;35250:6;35244:13;35235:6;35231:2;35227:15;35220:38;34774:529;34947:54;;;34937:64;;;:6;:64;;;;34930:71;;;34594:716;;;;;;:::o;39770:723::-;39826:13;40056:1;40047:5;:10;40043:53;;;40074:10;;;;;;;;;;;;;;;;;;;;;40043:53;40106:12;40121:5;40106:20;;40137:14;40162:78;40177:1;40169:4;:9;40162:78;;40195:8;;;;;:::i;:::-;;;;40226:2;40218:10;;;;;:::i;:::-;;;40162:78;;;40250:19;40282:6;40272:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40250:39;;40300:154;40316:1;40307:5;:10;40300:154;;40344:1;40334:11;;;;;:::i;:::-;;;40411:2;40403:5;:10;;;;:::i;:::-;40390:2;:24;;;;:::i;:::-;40377:39;;40360:6;40367;40360:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;40440:2;40431:11;;;;;:::i;:::-;;;40300:154;;;40478:6;40464:21;;;;;39770:723;;;;:::o;35958:159::-;;;;;:::o;20130:148::-;20194:14;20255:5;20245:15;;20230:41;;;:::o;36776:158::-;;;;;:::o;23977:2236::-;24100:20;24123:13;;24100:36;;24165:1;24151:16;;:2;:16;;;24147:48;;;24176:19;;;;;;;;;;;;;;24147:48;24222:1;24210:8;:13;24206:44;;;24232:18;;;;;;;;;;;;;;24206:44;24263:61;24293:1;24297:2;24301:12;24315:8;24263:21;:61::i;:::-;24867:1;10183:2;24838:1;:25;;24837:31;24825:8;:44;24799:18;:22;24818:2;24799:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10963:3;25268:29;25295:1;25283:8;:13;25268:14;:29::i;:::-;:56;;10700:3;25205:15;:41;;25163:21;25181:2;25163:17;:21::i;:::-;:84;:162;25112:17;:31;25130:12;25112:31;;;;;;;;;;;:213;;;;25342:20;25365:12;25342:35;;25392:11;25421:8;25406:12;:23;25392:37;;25468:1;25450:2;:14;;;:19;25446:635;;25490:313;25546:12;25542:2;25521:38;;25538:1;25521:38;;;;;;;;;;;;25587:69;25626:1;25630:2;25634:14;;;;;;25650:5;25587:30;:69::i;:::-;25582:174;;25692:40;;;;;;;;;;;;;;25582:174;25798:3;25783:12;:18;25490:313;;25884:12;25867:13;;:29;25863:43;;25898:8;;;25863:43;25446:635;;;25947:119;26003:14;;;;;;25999:2;25978:40;;25995:1;25978:40;;;;;;;;;;;;26061:3;26046:12;:18;25947:119;;25446:635;26111:12;26095:13;:28;;;;23977:2236;;26145:60;26174:1;26178:2;26182:12;26196:8;26145:20;:60::i;:::-;23977:2236;;;;:::o;20365:142::-;20423:14;20484:5;20474:15;;20459:41;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7468:845::-;7571:3;7608:5;7602:12;7637:36;7663:9;7637:36;:::i;:::-;7689:89;7771:6;7766:3;7689:89;:::i;:::-;7682:96;;7809:1;7798:9;7794:17;7825:1;7820:137;;;;7971:1;7966:341;;;;7787:520;;7820:137;7904:4;7900:9;7889;7885:25;7880:3;7873:38;7940:6;7935:3;7931:16;7924:23;;7820:137;;7966:341;8033:38;8065:5;8033:38;:::i;:::-;8093:1;8107:154;8121:6;8118:1;8115:13;8107:154;;;8195:7;8189:14;8185:1;8180:3;8176:11;8169:35;8245:1;8236:7;8232:15;8221:26;;8143:4;8140:1;8136:12;8131:17;;8107:154;;;8290:6;8285:3;8281:16;8274:23;;7973:334;;7787:520;;7575:738;;;;;;:::o;8319:366::-;8461:3;8482:67;8546:2;8541:3;8482:67;:::i;:::-;8475:74;;8558:93;8647:3;8558:93;:::i;:::-;8676:2;8671:3;8667:12;8660:19;;8465:220;;;:::o;8691:365::-;8833:3;8854:66;8918:1;8913:3;8854:66;:::i;:::-;8847:73;;8929:93;9018:3;8929:93;:::i;:::-;9047:2;9042:3;9038:12;9031:19;;8837:219;;;:::o;9062:366::-;9204:3;9225:67;9289:2;9284:3;9225:67;:::i;:::-;9218:74;;9301:93;9390:3;9301:93;:::i;:::-;9419:2;9414:3;9410:12;9403:19;;9208:220;;;:::o;9434:400::-;9594:3;9615:84;9697:1;9692:3;9615:84;:::i;:::-;9608:91;;9708:93;9797:3;9708:93;:::i;:::-;9826:1;9821:3;9817:11;9810:18;;9598:236;;;:::o;9840:366::-;9982:3;10003:67;10067:2;10062:3;10003:67;:::i;:::-;9996:74;;10079:93;10168:3;10079:93;:::i;:::-;10197:2;10192:3;10188:12;10181:19;;9986:220;;;:::o;10212:366::-;10354:3;10375:67;10439:2;10434:3;10375:67;:::i;:::-;10368:74;;10451:93;10540:3;10451:93;:::i;:::-;10569:2;10564:3;10560:12;10553:19;;10358:220;;;:::o;10584:366::-;10726:3;10747:67;10811:2;10806:3;10747:67;:::i;:::-;10740:74;;10823:93;10912:3;10823:93;:::i;:::-;10941:2;10936:3;10932:12;10925:19;;10730:220;;;:::o;10956:398::-;11115:3;11136:83;11217:1;11212:3;11136:83;:::i;:::-;11129:90;;11228:93;11317:3;11228:93;:::i;:::-;11346:1;11341:3;11337:11;11330:18;;11119:235;;;:::o;11360:366::-;11502:3;11523:67;11587:2;11582:3;11523:67;:::i;:::-;11516:74;;11599:93;11688:3;11599:93;:::i;:::-;11717:2;11712:3;11708:12;11701:19;;11506:220;;;:::o;11732:366::-;11874:3;11895:67;11959:2;11954:3;11895:67;:::i;:::-;11888:74;;11971:93;12060:3;11971:93;:::i;:::-;12089:2;12084:3;12080:12;12073:19;;11878:220;;;:::o;12104:365::-;12246:3;12267:66;12331:1;12326:3;12267:66;:::i;:::-;12260:73;;12342:93;12431:3;12342:93;:::i;:::-;12460:2;12455:3;12451:12;12444:19;;12250:219;;;:::o;12475:118::-;12562:24;12580:5;12562:24;:::i;:::-;12557:3;12550:37;12540:53;;:::o;12599:695::-;12877:3;12899:92;12987:3;12978:6;12899:92;:::i;:::-;12892:99;;13008:95;13099:3;13090:6;13008:95;:::i;:::-;13001:102;;13120:148;13264:3;13120:148;:::i;:::-;13113:155;;13285:3;13278:10;;12881:413;;;;;:::o;13300:379::-;13484:3;13506:147;13649:3;13506:147;:::i;:::-;13499:154;;13670:3;13663:10;;13488:191;;;:::o;13685:222::-;13778:4;13816:2;13805:9;13801:18;13793:26;;13829:71;13897:1;13886:9;13882:17;13873:6;13829:71;:::i;:::-;13783:124;;;;:::o;13913:640::-;14108:4;14146:3;14135:9;14131:19;14123:27;;14160:71;14228:1;14217:9;14213:17;14204:6;14160:71;:::i;:::-;14241:72;14309:2;14298:9;14294:18;14285:6;14241:72;:::i;:::-;14323;14391:2;14380:9;14376:18;14367:6;14323:72;:::i;:::-;14442:9;14436:4;14432:20;14427:2;14416:9;14412:18;14405:48;14470:76;14541:4;14532:6;14470:76;:::i;:::-;14462:84;;14113:440;;;;;;;:::o;14559:210::-;14646:4;14684:2;14673:9;14669:18;14661:26;;14697:65;14759:1;14748:9;14744:17;14735:6;14697:65;:::i;:::-;14651:118;;;;:::o;14775:313::-;14888:4;14926:2;14915:9;14911:18;14903:26;;14975:9;14969:4;14965:20;14961:1;14950:9;14946:17;14939:47;15003:78;15076:4;15067:6;15003:78;:::i;:::-;14995:86;;14893:195;;;;:::o;15094:419::-;15260:4;15298:2;15287:9;15283:18;15275:26;;15347:9;15341:4;15337:20;15333:1;15322:9;15318:17;15311:47;15375:131;15501:4;15375:131;:::i;:::-;15367:139;;15265:248;;;:::o;15519:419::-;15685:4;15723:2;15712:9;15708:18;15700:26;;15772:9;15766:4;15762:20;15758:1;15747:9;15743:17;15736:47;15800:131;15926:4;15800:131;:::i;:::-;15792:139;;15690:248;;;:::o;15944:419::-;16110:4;16148:2;16137:9;16133:18;16125:26;;16197:9;16191:4;16187:20;16183:1;16172:9;16168:17;16161:47;16225:131;16351:4;16225:131;:::i;:::-;16217:139;;16115:248;;;:::o;16369:419::-;16535:4;16573:2;16562:9;16558:18;16550:26;;16622:9;16616:4;16612:20;16608:1;16597:9;16593:17;16586:47;16650:131;16776:4;16650:131;:::i;:::-;16642:139;;16540:248;;;:::o;16794:419::-;16960:4;16998:2;16987:9;16983:18;16975:26;;17047:9;17041:4;17037:20;17033:1;17022:9;17018:17;17011:47;17075:131;17201:4;17075:131;:::i;:::-;17067:139;;16965:248;;;:::o;17219:419::-;17385:4;17423:2;17412:9;17408:18;17400:26;;17472:9;17466:4;17462:20;17458:1;17447:9;17443:17;17436:47;17500:131;17626:4;17500:131;:::i;:::-;17492:139;;17390:248;;;:::o;17644:419::-;17810:4;17848:2;17837:9;17833:18;17825:26;;17897:9;17891:4;17887:20;17883:1;17872:9;17868:17;17861:47;17925:131;18051:4;17925:131;:::i;:::-;17917:139;;17815:248;;;:::o;18069:419::-;18235:4;18273:2;18262:9;18258:18;18250:26;;18322:9;18316:4;18312:20;18308:1;18297:9;18293:17;18286:47;18350:131;18476:4;18350:131;:::i;:::-;18342:139;;18240:248;;;:::o;18494:419::-;18660:4;18698:2;18687:9;18683:18;18675:26;;18747:9;18741:4;18737:20;18733:1;18722:9;18718:17;18711:47;18775:131;18901:4;18775:131;:::i;:::-;18767:139;;18665:248;;;:::o;18919:222::-;19012:4;19050:2;19039:9;19035:18;19027:26;;19063:71;19131:1;19120:9;19116:17;19107:6;19063:71;:::i;:::-;19017:124;;;;:::o;19147:129::-;19181:6;19208:20;;:::i;:::-;19198:30;;19237:33;19265:4;19257:6;19237:33;:::i;:::-;19188:88;;;:::o;19282:75::-;19315:6;19348:2;19342:9;19332:19;;19322:35;:::o;19363:307::-;19424:4;19514:18;19506:6;19503:30;19500:2;;;19536:18;;:::i;:::-;19500:2;19574:29;19596:6;19574:29;:::i;:::-;19566:37;;19658:4;19652;19648:15;19640:23;;19429:241;;;:::o;19676:308::-;19738:4;19828:18;19820:6;19817:30;19814:2;;;19850:18;;:::i;:::-;19814:2;19888:29;19910:6;19888:29;:::i;:::-;19880:37;;19972:4;19966;19962:15;19954:23;;19743:241;;;:::o;19990:141::-;20039:4;20062:3;20054:11;;20085:3;20082:1;20075:14;20119:4;20116:1;20106:18;20098:26;;20044:87;;;:::o;20137:98::-;20188:6;20222:5;20216:12;20206:22;;20195:40;;;:::o;20241:99::-;20293:6;20327:5;20321:12;20311:22;;20300:40;;;:::o;20346:168::-;20429:11;20463:6;20458:3;20451:19;20503:4;20498:3;20494:14;20479:29;;20441:73;;;;:::o;20520:147::-;20621:11;20658:3;20643:18;;20633:34;;;;:::o;20673:169::-;20757:11;20791:6;20786:3;20779:19;20831:4;20826:3;20822:14;20807:29;;20769:73;;;;:::o;20848:148::-;20950:11;20987:3;20972:18;;20962:34;;;;:::o;21002:305::-;21042:3;21061:20;21079:1;21061:20;:::i;:::-;21056:25;;21095:20;21113:1;21095:20;:::i;:::-;21090:25;;21249:1;21181:66;21177:74;21174:1;21171:81;21168:2;;;21255:18;;:::i;:::-;21168:2;21299:1;21296;21292:9;21285:16;;21046:261;;;;:::o;21313:185::-;21353:1;21370:20;21388:1;21370:20;:::i;:::-;21365:25;;21404:20;21422:1;21404:20;:::i;:::-;21399:25;;21443:1;21433:2;;21448:18;;:::i;:::-;21433:2;21490:1;21487;21483:9;21478:14;;21355:143;;;;:::o;21504:348::-;21544:7;21567:20;21585:1;21567:20;:::i;:::-;21562:25;;21601:20;21619:1;21601:20;:::i;:::-;21596:25;;21789:1;21721:66;21717:74;21714:1;21711:81;21706:1;21699:9;21692:17;21688:105;21685:2;;;21796:18;;:::i;:::-;21685:2;21844:1;21841;21837:9;21826:20;;21552:300;;;;:::o;21858:191::-;21898:4;21918:20;21936:1;21918:20;:::i;:::-;21913:25;;21952:20;21970:1;21952:20;:::i;:::-;21947:25;;21991:1;21988;21985:8;21982:2;;;21996:18;;:::i;:::-;21982:2;22041:1;22038;22034:9;22026:17;;21903:146;;;;:::o;22055:96::-;22092:7;22121:24;22139:5;22121:24;:::i;:::-;22110:35;;22100:51;;;:::o;22157:90::-;22191:7;22234:5;22227:13;22220:21;22209:32;;22199:48;;;:::o;22253:149::-;22289:7;22329:66;22322:5;22318:78;22307:89;;22297:105;;;:::o;22408:126::-;22445:7;22485:42;22478:5;22474:54;22463:65;;22453:81;;;:::o;22540:77::-;22577:7;22606:5;22595:16;;22585:32;;;:::o;22623:154::-;22707:6;22702:3;22697;22684:30;22769:1;22760:6;22755:3;22751:16;22744:27;22674:103;;;:::o;22783:307::-;22851:1;22861:113;22875:6;22872:1;22869:13;22861:113;;;22960:1;22955:3;22951:11;22945:18;22941:1;22936:3;22932:11;22925:39;22897:2;22894:1;22890:10;22885:15;;22861:113;;;22992:6;22989:1;22986:13;22983:2;;;23072:1;23063:6;23058:3;23054:16;23047:27;22983:2;22832:258;;;;:::o;23096:320::-;23140:6;23177:1;23171:4;23167:12;23157:22;;23224:1;23218:4;23214:12;23245:18;23235:2;;23301:4;23293:6;23289:17;23279:27;;23235:2;23363;23355:6;23352:14;23332:18;23329:38;23326:2;;;23382:18;;:::i;:::-;23326:2;23147:269;;;;:::o;23422:281::-;23505:27;23527:4;23505:27;:::i;:::-;23497:6;23493:40;23635:6;23623:10;23620:22;23599:18;23587:10;23584:34;23581:62;23578:2;;;23646:18;;:::i;:::-;23578:2;23686:10;23682:2;23675:22;23465:238;;;:::o;23709:233::-;23748:3;23771:24;23789:5;23771:24;:::i;:::-;23762:33;;23817:66;23810:5;23807:77;23804:2;;;23887:18;;:::i;:::-;23804:2;23934:1;23927:5;23923:13;23916:20;;23752:190;;;:::o;23948:176::-;23980:1;23997:20;24015:1;23997:20;:::i;:::-;23992:25;;24031:20;24049:1;24031:20;:::i;:::-;24026:25;;24070:1;24060:2;;24075:18;;:::i;:::-;24060:2;24116:1;24113;24109:9;24104:14;;23982:142;;;;:::o;24130:180::-;24178:77;24175:1;24168:88;24275:4;24272:1;24265:15;24299:4;24296:1;24289:15;24316:180;24364:77;24361:1;24354:88;24461:4;24458:1;24451:15;24485:4;24482:1;24475:15;24502:180;24550:77;24547:1;24540:88;24647:4;24644:1;24637:15;24671:4;24668:1;24661:15;24688:180;24736:77;24733:1;24726:88;24833:4;24830:1;24823:15;24857:4;24854:1;24847:15;24874:102;24915:6;24966:2;24962:7;24957:2;24950:5;24946:14;24942:28;24932:38;;24922:54;;;:::o;24982:173::-;25122:25;25118:1;25110:6;25106:14;25099:49;25088:67;:::o;25161:157::-;25301:9;25297:1;25289:6;25285:14;25278:33;25267:51;:::o;25324:225::-;25464:34;25460:1;25452:6;25448:14;25441:58;25533:8;25528:2;25520:6;25516:15;25509:33;25430:119;:::o;25555:155::-;25695:7;25691:1;25683:6;25679:14;25672:31;25661:49;:::o;25716:182::-;25856:34;25852:1;25844:6;25840:14;25833:58;25822:76;:::o;25904:234::-;26044:34;26040:1;26032:6;26028:14;26021:58;26113:17;26108:2;26100:6;26096:15;26089:42;26010:128;:::o;26144:179::-;26284:31;26280:1;26272:6;26268:14;26261:55;26250:73;:::o;26329:114::-;26435:8;:::o;26449:166::-;26589:18;26585:1;26577:6;26573:14;26566:42;26555:60;:::o;26621:169::-;26761:21;26757:1;26749:6;26745:14;26738:45;26727:63;:::o;26796:153::-;26936:5;26932:1;26924:6;26920:14;26913:29;26902:47;:::o;26955:122::-;27028:24;27046:5;27028:24;:::i;:::-;27021:5;27018:35;27008:2;;27067:1;27064;27057:12;27008:2;26998:79;:::o;27083:116::-;27153:21;27168:5;27153:21;:::i;:::-;27146:5;27143:32;27133:2;;27189:1;27186;27179:12;27133:2;27123:76;:::o;27205:120::-;27277:23;27294:5;27277:23;:::i;:::-;27270:5;27267:34;27257:2;;27315:1;27312;27305:12;27257:2;27247:78;:::o;27331:122::-;27404:24;27422:5;27404:24;:::i;:::-;27397:5;27394:35;27384:2;;27443:1;27440;27433:12;27384:2;27374:79;:::o

Swarm Source

ipfs://2d8de69a40b414ecbdab001d8a52bfe9bcffa9f4b334303a54cd46b3f448d7b1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.