ETH Price: $2,670.29 (+1.25%)

Token

The Pixel Kongz CLub (TPKC)
 

Overview

Max Total Supply

834 TPKC

Holders

308

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TPKC
0xedc55ddf7bef15aead2e107fd6c9515b3f24abbc
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:
TPKC

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.16;

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


pragma solidity ^0.8.16;


contract TPKC is ERC721A, Ownable {

    using Strings for uint256;

    string private baseURI ;

    uint256 public price = 0.003 ether;

    uint256 public maxPerTx = 50;

    uint256 public maxFreePerWallet = 2;

    uint256 public totalFree = 400;

    uint256 public maxSupply = 1200;

    bool public mintEnabled = true;
    
    uint   public totalFreeMinted = 0;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("The Pixel Kongz CLub", "TPKC") {}

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

        if (isFree) { 
            require(mintEnabled, "Mint is not live yet");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            if(count >= (maxFreePerWallet - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= (count * cost) - ((maxFreePerWallet - _mintedFreeAmount[msg.sender]) * cost), "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] = maxFreePerWallet;
             totalFreeMinted += maxFreePerWallet;
            }
            else if(count < (maxFreePerWallet - _mintedFreeAmount[msg.sender]))
            {
             require(msg.value >= 0, "Please send the exact ETH amount");
             _mintedFreeAmount[msg.sender] += count;
             totalFreeMinted += count;
            }
        }
        else{
        require(mintEnabled, "Mint is not live yet");
        require(msg.value >= count * cost, "Please send the exact ETH amount");
        require(totalSupply() + count <= maxSupply, "Sold out");
        require(count <= maxPerTx, "Max per TX reached.");
        }

        _safeMint(msg.sender, count);
    }

    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 toggleMint() 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":[{"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":"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":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","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":"totalFreeMinted","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"}]

6080604052660aa87bee538000600a556032600b556002600c55610190600d556104b0600e556001600f60006101000a81548160ff02191690831515021790555060006010553480156200005257600080fd5b506040518060400160405280601481526020017f54686520506978656c204b6f6e677a20434c75620000000000000000000000008152506040518060400160405280600481526020017f54504b43000000000000000000000000000000000000000000000000000000008152508160029081620000d0919062000472565b508060039081620000e2919062000472565b50620000f36200012160201b60201c565b60008190555050506200011b6200010f6200012a60201b60201c565b6200013260201b60201c565b62000559565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200027a57607f821691505b60208210810362000290576200028f62000232565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002fa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002bb565b620003068683620002bb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003536200034d62000347846200031e565b62000328565b6200031e565b9050919050565b6000819050919050565b6200036f8362000332565b620003876200037e826200035a565b848454620002c8565b825550505050565b600090565b6200039e6200038f565b620003ab81848462000364565b505050565b5b81811015620003d357620003c760008262000394565b600181019050620003b1565b5050565b601f8211156200042257620003ec8162000296565b620003f784620002ab565b8101602085101562000407578190505b6200041f6200041685620002ab565b830182620003b0565b50505b505050565b600082821c905092915050565b6000620004476000198460080262000427565b1980831691505092915050565b600062000462838362000434565b9150826002028217905092915050565b6200047d82620001f8565b67ffffffffffffffff81111562000499576200049862000203565b5b620004a5825462000261565b620004b2828285620003d7565b600060209050601f831160018114620004ea5760008415620004d5578287015190505b620004e1858262000454565b86555062000551565b601f198416620004fa8662000296565b60005b828110156200052457848901518255600182019150602085019450602081019050620004fd565b8683101562000544578489015162000540601f89168262000434565b8355505b6001600288020188555050505b505050505050565b6136c080620005696000396000f3fe6080604052600436106101cd5760003560e01c806392910eec116100f7578063c87b56dd11610095578063dad7b5c911610064578063dad7b5c91461062f578063e985e9c51461065a578063f2fde38b14610697578063f968adbe146106c0576101cd565b8063c87b56dd14610585578063d1239730146105c2578063d3dd5fe0146105ed578063d5abeb0114610604576101cd565b8063a0712d68116100d1578063a0712d68146104ec578063a22cb46514610508578063a702735714610531578063b88d4fde1461055c576101cd565b806392910eec1461046d57806395d89b4114610496578063a035b1fe146104c1576101cd565b80633ccfd60b1161016f57806370a082311161013e57806370a08231146103c5578063715018a6146104025780638da5cb5b1461041957806391b7f5ed14610444576101cd565b80633ccfd60b1461031f57806342842e0e1461033657806355f804b31461035f5780636352211e14610388576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb578063333e44e6146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612500565b6106eb565b6040516102069190612548565b60405180910390f35b34801561021b57600080fd5b5061022461077d565b60405161023191906125f3565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061264b565b61080f565b60405161026e91906126b9565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612700565b61088b565b005b3480156102ac57600080fd5b506102b5610a31565b6040516102c2919061274f565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed919061276a565b610a48565b005b34801561030057600080fd5b50610309610a58565b604051610316919061274f565b60405180910390f35b34801561032b57600080fd5b50610334610a5e565b005b34801561034257600080fd5b5061035d6004803603810190610358919061276a565b610b89565b005b34801561036b57600080fd5b50610386600480360381019061038191906128f2565b610ba9565b005b34801561039457600080fd5b506103af60048036038101906103aa919061264b565b610c38565b6040516103bc91906126b9565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e7919061293b565b610c4a565b6040516103f9919061274f565b60405180910390f35b34801561040e57600080fd5b50610417610d02565b005b34801561042557600080fd5b5061042e610d8a565b60405161043b91906126b9565b60405180910390f35b34801561045057600080fd5b5061046b6004803603810190610466919061264b565b610db4565b005b34801561047957600080fd5b50610494600480360381019061048f919061264b565b610e3a565b005b3480156104a257600080fd5b506104ab610ec0565b6040516104b891906125f3565b60405180910390f35b3480156104cd57600080fd5b506104d6610f52565b6040516104e3919061274f565b60405180910390f35b6105066004803603810190610501919061264b565b610f58565b005b34801561051457600080fd5b5061052f600480360381019061052a9190612994565b61147e565b005b34801561053d57600080fd5b506105466115f5565b604051610553919061274f565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190612a75565b6115fb565b005b34801561059157600080fd5b506105ac60048036038101906105a7919061264b565b61166e565b6040516105b991906125f3565b60405180910390f35b3480156105ce57600080fd5b506105d76116ea565b6040516105e49190612548565b60405180910390f35b3480156105f957600080fd5b506106026116fd565b005b34801561061057600080fd5b506106196117a5565b604051610626919061274f565b60405180910390f35b34801561063b57600080fd5b506106446117ab565b604051610651919061274f565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612af8565b6117b1565b60405161068e9190612548565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b9919061293b565b611845565b005b3480156106cc57600080fd5b506106d561193c565b6040516106e2919061274f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078c90612b67565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890612b67565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b600061081a82611942565b610850576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610896826119a1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108fd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091c611a6d565b73ffffffffffffffffffffffffffffffffffffffff161461097f5761094881610943611a6d565b6117b1565b61097e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a3b611a75565b6001546000540303905090565b610a53838383611a7e565b505050565b600d5481565b610a66611e25565b73ffffffffffffffffffffffffffffffffffffffff16610a84610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190612be4565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b0090612c35565b60006040518083038185875af1925050503d8060008114610b3d576040519150601f19603f3d011682016040523d82523d6000602084013e610b42565b606091505b5050905080610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90612c96565b60405180910390fd5b50565b610ba4838383604051806020016040528060008152506115fb565b505050565b610bb1611e25565b73ffffffffffffffffffffffffffffffffffffffff16610bcf610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90612be4565b60405180910390fd5b8060099081610c349190612e62565b5050565b6000610c43826119a1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d0a611e25565b73ffffffffffffffffffffffffffffffffffffffff16610d28610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590612be4565b60405180910390fd5b610d886000611e2d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610dbc611e25565b73ffffffffffffffffffffffffffffffffffffffff16610dda610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790612be4565b60405180910390fd5b80600a8190555050565b610e42611e25565b73ffffffffffffffffffffffffffffffffffffffff16610e60610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90612be4565b60405180910390fd5b80600d8190555050565b606060038054610ecf90612b67565b80601f0160208091040260200160405190810160405280929190818152602001828054610efb90612b67565b8015610f485780601f10610f1d57610100808354040283529160200191610f48565b820191906000526020600020905b815481529060010190602001808311610f2b57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610f709190612f63565b83601054610f7e9190612f63565b108015610fcb5750600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b9050801561133557600f60009054906101000a900460ff16611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101990612fe3565b60405180910390fd5b600e548361102e610a31565b6110389190612f63565b1115611079576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110709061304f565b60405180910390fd5b600b548311156110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b5906130bb565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461110b91906130db565b83106112275781601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461115f91906130db565b611169919061310f565b8284611175919061310f565b61117f91906130db565b3410156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906131b5565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c546010600082825461121b9190612f63565b92505081905550611330565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461127491906130db565b83101561132f5760003410156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906131b5565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461130e9190612f63565b9250508190555082601060008282546113279190612f63565b925050819055505b5b61146f565b600f60009054906101000a900460ff16611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90612fe3565b60405180910390fd5b8183611390919061310f565b3410156113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c9906131b5565b60405180910390fd5b600e54836113de610a31565b6113e89190612f63565b1115611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613221565b60405180910390fd5b600b5483111561146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906130bb565b60405180910390fd5b5b6114793384611ef3565b505050565b611486611a6d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f7611a6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a4611a6d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e99190612548565b60405180910390a35050565b600c5481565b611606848484611a7e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116685761163184848484611f11565b611667576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061167982611942565b6116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906132b3565b60405180910390fd5b60096116c383612061565b6040516020016116d49291906133de565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b611705611e25565b73ffffffffffffffffffffffffffffffffffffffff16611723610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090612be4565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600e5481565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184d611e25565b73ffffffffffffffffffffffffffffffffffffffff1661186b610d8a565b73ffffffffffffffffffffffffffffffffffffffff16146118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b890612be4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611930576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119279061347f565b60405180910390fd5b61193981611e2d565b50565b600b5481565b60008161194d611a75565b1115801561195c575060005482105b801561199a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806119b0611a75565b11611a3657600054811015611a355760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a33575b60008103611a295760046000836001900393508381526020019081526020016000205490506119ff565b8092505050611a68565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611a89826119a1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611af0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b11611a6d565b73ffffffffffffffffffffffffffffffffffffffff161480611b405750611b3f85611b3a611a6d565b6117b1565b5b80611b855750611b4e611a6d565b73ffffffffffffffffffffffffffffffffffffffff16611b6d8461080f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bbe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c24576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c3185858560016121c1565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611d2e866121c7565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611db65760006001840190506000600460008381526020019081526020016000205403611db4576000548114611db3578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e1e85858560016121d1565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f0d8282604051806020016040528060008152506121d7565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f37611a6d565b8786866040518563ffffffff1660e01b8152600401611f5994939291906134f4565b6020604051808303816000875af1925050508015611f9557506040513d601f19601f82011682018060405250810190611f929190613555565b60015b61200e573d8060008114611fc5576040519150601f19603f3d011682016040523d82523d6000602084013e611fca565b606091505b506000815103612006576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036120a8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121bc565b600082905060005b600082146120da5780806120c390613582565b915050600a826120d391906135f9565b91506120b0565b60008167ffffffffffffffff8111156120f6576120f56127c7565b5b6040519080825280601f01601f1916602001820160405280156121285781602001600182028036833780820191505090505b5090505b600085146121b55760018261214191906130db565b9150600a85612150919061362a565b603061215c9190612f63565b60f81b8183815181106121725761217161365b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121ae91906135f9565b945061212c565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612243576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361227d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61228a60008583866121c1565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16122ef6001851461248a565b901b60a042901b6122ff866121c7565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612403575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123b36000878480600101955087611f11565b6123e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123445782600054146123fe57600080fd5b61246e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612404575b81600081905550505061248460008583866121d1565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124dd816124a8565b81146124e857600080fd5b50565b6000813590506124fa816124d4565b92915050565b6000602082840312156125165761251561249e565b5b6000612524848285016124eb565b91505092915050565b60008115159050919050565b6125428161252d565b82525050565b600060208201905061255d6000830184612539565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561259d578082015181840152602081019050612582565b60008484015250505050565b6000601f19601f8301169050919050565b60006125c582612563565b6125cf818561256e565b93506125df81856020860161257f565b6125e8816125a9565b840191505092915050565b6000602082019050818103600083015261260d81846125ba565b905092915050565b6000819050919050565b61262881612615565b811461263357600080fd5b50565b6000813590506126458161261f565b92915050565b6000602082840312156126615761266061249e565b5b600061266f84828501612636565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126a382612678565b9050919050565b6126b381612698565b82525050565b60006020820190506126ce60008301846126aa565b92915050565b6126dd81612698565b81146126e857600080fd5b50565b6000813590506126fa816126d4565b92915050565b600080604083850312156127175761271661249e565b5b6000612725858286016126eb565b925050602061273685828601612636565b9150509250929050565b61274981612615565b82525050565b60006020820190506127646000830184612740565b92915050565b6000806000606084860312156127835761278261249e565b5b6000612791868287016126eb565b93505060206127a2868287016126eb565b92505060406127b386828701612636565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127ff826125a9565b810181811067ffffffffffffffff8211171561281e5761281d6127c7565b5b80604052505050565b6000612831612494565b905061283d82826127f6565b919050565b600067ffffffffffffffff82111561285d5761285c6127c7565b5b612866826125a9565b9050602081019050919050565b82818337600083830152505050565b600061289561289084612842565b612827565b9050828152602081018484840111156128b1576128b06127c2565b5b6128bc848285612873565b509392505050565b600082601f8301126128d9576128d86127bd565b5b81356128e9848260208601612882565b91505092915050565b6000602082840312156129085761290761249e565b5b600082013567ffffffffffffffff811115612926576129256124a3565b5b612932848285016128c4565b91505092915050565b6000602082840312156129515761295061249e565b5b600061295f848285016126eb565b91505092915050565b6129718161252d565b811461297c57600080fd5b50565b60008135905061298e81612968565b92915050565b600080604083850312156129ab576129aa61249e565b5b60006129b9858286016126eb565b92505060206129ca8582860161297f565b9150509250929050565b600067ffffffffffffffff8211156129ef576129ee6127c7565b5b6129f8826125a9565b9050602081019050919050565b6000612a18612a13846129d4565b612827565b905082815260208101848484011115612a3457612a336127c2565b5b612a3f848285612873565b509392505050565b600082601f830112612a5c57612a5b6127bd565b5b8135612a6c848260208601612a05565b91505092915050565b60008060008060808587031215612a8f57612a8e61249e565b5b6000612a9d878288016126eb565b9450506020612aae878288016126eb565b9350506040612abf87828801612636565b925050606085013567ffffffffffffffff811115612ae057612adf6124a3565b5b612aec87828801612a47565b91505092959194509250565b60008060408385031215612b0f57612b0e61249e565b5b6000612b1d858286016126eb565b9250506020612b2e858286016126eb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b7f57607f821691505b602082108103612b9257612b91612b38565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bce60208361256e565b9150612bd982612b98565b602082019050919050565b60006020820190508181036000830152612bfd81612bc1565b9050919050565b600081905092915050565b50565b6000612c1f600083612c04565b9150612c2a82612c0f565b600082019050919050565b6000612c4082612c12565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612c8060108361256e565b9150612c8b82612c4a565b602082019050919050565b60006020820190508181036000830152612caf81612c73565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612cdb565b612d228683612cdb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d5f612d5a612d5584612615565b612d3a565b612615565b9050919050565b6000819050919050565b612d7983612d44565b612d8d612d8582612d66565b848454612ce8565b825550505050565b600090565b612da2612d95565b612dad818484612d70565b505050565b5b81811015612dd157612dc6600082612d9a565b600181019050612db3565b5050565b601f821115612e1657612de781612cb6565b612df084612ccb565b81016020851015612dff578190505b612e13612e0b85612ccb565b830182612db2565b50505b505050565b600082821c905092915050565b6000612e3960001984600802612e1b565b1980831691505092915050565b6000612e528383612e28565b9150826002028217905092915050565b612e6b82612563565b67ffffffffffffffff811115612e8457612e836127c7565b5b612e8e8254612b67565b612e99828285612dd5565b600060209050601f831160018114612ecc5760008415612eba578287015190505b612ec48582612e46565b865550612f2c565b601f198416612eda86612cb6565b60005b82811015612f0257848901518255600182019150602085019450602081019050612edd565b86831015612f1f5784890151612f1b601f891682612e28565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f6e82612615565b9150612f7983612615565b9250828201905080821115612f9157612f90612f34565b5b92915050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b6000612fcd60148361256e565b9150612fd882612f97565b602082019050919050565b60006020820190508181036000830152612ffc81612fc0565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b600061303960078361256e565b915061304482613003565b602082019050919050565b600060208201905081810360008301526130688161302c565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006130a560138361256e565b91506130b08261306f565b602082019050919050565b600060208201905081810360008301526130d481613098565b9050919050565b60006130e682612615565b91506130f183612615565b925082820390508181111561310957613108612f34565b5b92915050565b600061311a82612615565b915061312583612615565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561315e5761315d612f34565b5b828202905092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b600061319f60208361256e565b91506131aa82613169565b602082019050919050565b600060208201905081810360008301526131ce81613192565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b600061320b60088361256e565b9150613216826131d5565b602082019050919050565b6000602082019050818103600083015261323a816131fe565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061329d602f8361256e565b91506132a882613241565b604082019050919050565b600060208201905081810360008301526132cc81613290565b9050919050565b600081905092915050565b600081546132eb81612b67565b6132f581866132d3565b94506001821660008114613310576001811461332557613358565b60ff1983168652811515820286019350613358565b61332e85612cb6565b60005b8381101561335057815481890152600182019150602081019050613331565b838801955050505b50505092915050565b600061336c82612563565b61337681856132d3565b935061338681856020860161257f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006133c86005836132d3565b91506133d382613392565b600582019050919050565b60006133ea82856132de565b91506133f68284613361565b9150613401826133bb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061346960268361256e565b91506134748261340d565b604082019050919050565b600060208201905081810360008301526134988161345c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134c68261349f565b6134d081856134aa565b93506134e081856020860161257f565b6134e9816125a9565b840191505092915050565b600060808201905061350960008301876126aa565b61351660208301866126aa565b6135236040830185612740565b818103606083015261353581846134bb565b905095945050505050565b60008151905061354f816124d4565b92915050565b60006020828403121561356b5761356a61249e565b5b600061357984828501613540565b91505092915050565b600061358d82612615565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135bf576135be612f34565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061360482612615565b915061360f83612615565b92508261361f5761361e6135ca565b5b828204905092915050565b600061363582612615565b915061364083612615565b9250826136505761364f6135ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220c0aa6e7f0c391257030ec427974d3f8ac32001b4996cff5c01f603322c77e43864736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806392910eec116100f7578063c87b56dd11610095578063dad7b5c911610064578063dad7b5c91461062f578063e985e9c51461065a578063f2fde38b14610697578063f968adbe146106c0576101cd565b8063c87b56dd14610585578063d1239730146105c2578063d3dd5fe0146105ed578063d5abeb0114610604576101cd565b8063a0712d68116100d1578063a0712d68146104ec578063a22cb46514610508578063a702735714610531578063b88d4fde1461055c576101cd565b806392910eec1461046d57806395d89b4114610496578063a035b1fe146104c1576101cd565b80633ccfd60b1161016f57806370a082311161013e57806370a08231146103c5578063715018a6146104025780638da5cb5b1461041957806391b7f5ed14610444576101cd565b80633ccfd60b1461031f57806342842e0e1461033657806355f804b31461035f5780636352211e14610388576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb578063333e44e6146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612500565b6106eb565b6040516102069190612548565b60405180910390f35b34801561021b57600080fd5b5061022461077d565b60405161023191906125f3565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061264b565b61080f565b60405161026e91906126b9565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612700565b61088b565b005b3480156102ac57600080fd5b506102b5610a31565b6040516102c2919061274f565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed919061276a565b610a48565b005b34801561030057600080fd5b50610309610a58565b604051610316919061274f565b60405180910390f35b34801561032b57600080fd5b50610334610a5e565b005b34801561034257600080fd5b5061035d6004803603810190610358919061276a565b610b89565b005b34801561036b57600080fd5b50610386600480360381019061038191906128f2565b610ba9565b005b34801561039457600080fd5b506103af60048036038101906103aa919061264b565b610c38565b6040516103bc91906126b9565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e7919061293b565b610c4a565b6040516103f9919061274f565b60405180910390f35b34801561040e57600080fd5b50610417610d02565b005b34801561042557600080fd5b5061042e610d8a565b60405161043b91906126b9565b60405180910390f35b34801561045057600080fd5b5061046b6004803603810190610466919061264b565b610db4565b005b34801561047957600080fd5b50610494600480360381019061048f919061264b565b610e3a565b005b3480156104a257600080fd5b506104ab610ec0565b6040516104b891906125f3565b60405180910390f35b3480156104cd57600080fd5b506104d6610f52565b6040516104e3919061274f565b60405180910390f35b6105066004803603810190610501919061264b565b610f58565b005b34801561051457600080fd5b5061052f600480360381019061052a9190612994565b61147e565b005b34801561053d57600080fd5b506105466115f5565b604051610553919061274f565b60405180910390f35b34801561056857600080fd5b50610583600480360381019061057e9190612a75565b6115fb565b005b34801561059157600080fd5b506105ac60048036038101906105a7919061264b565b61166e565b6040516105b991906125f3565b60405180910390f35b3480156105ce57600080fd5b506105d76116ea565b6040516105e49190612548565b60405180910390f35b3480156105f957600080fd5b506106026116fd565b005b34801561061057600080fd5b506106196117a5565b604051610626919061274f565b60405180910390f35b34801561063b57600080fd5b506106446117ab565b604051610651919061274f565b60405180910390f35b34801561066657600080fd5b50610681600480360381019061067c9190612af8565b6117b1565b60405161068e9190612548565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b9919061293b565b611845565b005b3480156106cc57600080fd5b506106d561193c565b6040516106e2919061274f565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078c90612b67565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890612b67565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b600061081a82611942565b610850576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610896826119a1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108fd576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091c611a6d565b73ffffffffffffffffffffffffffffffffffffffff161461097f5761094881610943611a6d565b6117b1565b61097e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a3b611a75565b6001546000540303905090565b610a53838383611a7e565b505050565b600d5481565b610a66611e25565b73ffffffffffffffffffffffffffffffffffffffff16610a84610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190612be4565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610b0090612c35565b60006040518083038185875af1925050503d8060008114610b3d576040519150601f19603f3d011682016040523d82523d6000602084013e610b42565b606091505b5050905080610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90612c96565b60405180910390fd5b50565b610ba4838383604051806020016040528060008152506115fb565b505050565b610bb1611e25565b73ffffffffffffffffffffffffffffffffffffffff16610bcf610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90612be4565b60405180910390fd5b8060099081610c349190612e62565b5050565b6000610c43826119a1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb1576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d0a611e25565b73ffffffffffffffffffffffffffffffffffffffff16610d28610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590612be4565b60405180910390fd5b610d886000611e2d565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610dbc611e25565b73ffffffffffffffffffffffffffffffffffffffff16610dda610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790612be4565b60405180910390fd5b80600a8190555050565b610e42611e25565b73ffffffffffffffffffffffffffffffffffffffff16610e60610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90612be4565b60405180910390fd5b80600d8190555050565b606060038054610ecf90612b67565b80601f0160208091040260200160405190810160405280929190818152602001828054610efb90612b67565b8015610f485780601f10610f1d57610100808354040283529160200191610f48565b820191906000526020600020905b815481529060010190602001808311610f2b57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610f709190612f63565b83601054610f7e9190612f63565b108015610fcb5750600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b9050801561133557600f60009054906101000a900460ff16611022576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101990612fe3565b60405180910390fd5b600e548361102e610a31565b6110389190612f63565b1115611079576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110709061304f565b60405180910390fd5b600b548311156110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b5906130bb565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461110b91906130db565b83106112275781601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461115f91906130db565b611169919061310f565b8284611175919061310f565b61117f91906130db565b3410156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b8906131b5565b60405180910390fd5b600c54601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c546010600082825461121b9190612f63565b92505081905550611330565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461127491906130db565b83101561132f5760003410156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b6906131b5565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461130e9190612f63565b9250508190555082601060008282546113279190612f63565b925050819055505b5b61146f565b600f60009054906101000a900460ff16611384576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137b90612fe3565b60405180910390fd5b8183611390919061310f565b3410156113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c9906131b5565b60405180910390fd5b600e54836113de610a31565b6113e89190612f63565b1115611429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142090613221565b60405180910390fd5b600b5483111561146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906130bb565b60405180910390fd5b5b6114793384611ef3565b505050565b611486611a6d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114f7611a6d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a4611a6d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e99190612548565b60405180910390a35050565b600c5481565b611606848484611a7e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116685761163184848484611f11565b611667576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061167982611942565b6116b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116af906132b3565b60405180910390fd5b60096116c383612061565b6040516020016116d49291906133de565b6040516020818303038152906040529050919050565b600f60009054906101000a900460ff1681565b611705611e25565b73ffffffffffffffffffffffffffffffffffffffff16611723610d8a565b73ffffffffffffffffffffffffffffffffffffffff1614611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090612be4565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600e5481565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61184d611e25565b73ffffffffffffffffffffffffffffffffffffffff1661186b610d8a565b73ffffffffffffffffffffffffffffffffffffffff16146118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b890612be4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611930576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119279061347f565b60405180910390fd5b61193981611e2d565b50565b600b5481565b60008161194d611a75565b1115801561195c575060005482105b801561199a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806119b0611a75565b11611a3657600054811015611a355760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a33575b60008103611a295760046000836001900393508381526020019081526020016000205490506119ff565b8092505050611a68565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611a89826119a1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611af0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b11611a6d565b73ffffffffffffffffffffffffffffffffffffffff161480611b405750611b3f85611b3a611a6d565b6117b1565b5b80611b855750611b4e611a6d565b73ffffffffffffffffffffffffffffffffffffffff16611b6d8461080f565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bbe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c24576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c3185858560016121c1565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611d2e866121c7565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831603611db65760006001840190506000600460008381526020019081526020016000205403611db4576000548114611db3578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e1e85858560016121d1565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f0d8282604051806020016040528060008152506121d7565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f37611a6d565b8786866040518563ffffffff1660e01b8152600401611f5994939291906134f4565b6020604051808303816000875af1925050508015611f9557506040513d601f19601f82011682018060405250810190611f929190613555565b60015b61200e573d8060008114611fc5576040519150601f19603f3d011682016040523d82523d6000602084013e611fca565b606091505b506000815103612006576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036120a8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121bc565b600082905060005b600082146120da5780806120c390613582565b915050600a826120d391906135f9565b91506120b0565b60008167ffffffffffffffff8111156120f6576120f56127c7565b5b6040519080825280601f01601f1916602001820160405280156121285781602001600182028036833780820191505090505b5090505b600085146121b55760018261214191906130db565b9150600a85612150919061362a565b603061215c9190612f63565b60f81b8183815181106121725761217161365b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121ae91906135f9565b945061212c565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612243576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000830361227d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61228a60008583866121c1565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16122ef6001851461248a565b901b60a042901b6122ff866121c7565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612403575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123b36000878480600101955087611f11565b6123e9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106123445782600054146123fe57600080fd5b61246e565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612404575b81600081905550505061248460008583866121d1565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6124dd816124a8565b81146124e857600080fd5b50565b6000813590506124fa816124d4565b92915050565b6000602082840312156125165761251561249e565b5b6000612524848285016124eb565b91505092915050565b60008115159050919050565b6125428161252d565b82525050565b600060208201905061255d6000830184612539565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561259d578082015181840152602081019050612582565b60008484015250505050565b6000601f19601f8301169050919050565b60006125c582612563565b6125cf818561256e565b93506125df81856020860161257f565b6125e8816125a9565b840191505092915050565b6000602082019050818103600083015261260d81846125ba565b905092915050565b6000819050919050565b61262881612615565b811461263357600080fd5b50565b6000813590506126458161261f565b92915050565b6000602082840312156126615761266061249e565b5b600061266f84828501612636565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126a382612678565b9050919050565b6126b381612698565b82525050565b60006020820190506126ce60008301846126aa565b92915050565b6126dd81612698565b81146126e857600080fd5b50565b6000813590506126fa816126d4565b92915050565b600080604083850312156127175761271661249e565b5b6000612725858286016126eb565b925050602061273685828601612636565b9150509250929050565b61274981612615565b82525050565b60006020820190506127646000830184612740565b92915050565b6000806000606084860312156127835761278261249e565b5b6000612791868287016126eb565b93505060206127a2868287016126eb565b92505060406127b386828701612636565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6127ff826125a9565b810181811067ffffffffffffffff8211171561281e5761281d6127c7565b5b80604052505050565b6000612831612494565b905061283d82826127f6565b919050565b600067ffffffffffffffff82111561285d5761285c6127c7565b5b612866826125a9565b9050602081019050919050565b82818337600083830152505050565b600061289561289084612842565b612827565b9050828152602081018484840111156128b1576128b06127c2565b5b6128bc848285612873565b509392505050565b600082601f8301126128d9576128d86127bd565b5b81356128e9848260208601612882565b91505092915050565b6000602082840312156129085761290761249e565b5b600082013567ffffffffffffffff811115612926576129256124a3565b5b612932848285016128c4565b91505092915050565b6000602082840312156129515761295061249e565b5b600061295f848285016126eb565b91505092915050565b6129718161252d565b811461297c57600080fd5b50565b60008135905061298e81612968565b92915050565b600080604083850312156129ab576129aa61249e565b5b60006129b9858286016126eb565b92505060206129ca8582860161297f565b9150509250929050565b600067ffffffffffffffff8211156129ef576129ee6127c7565b5b6129f8826125a9565b9050602081019050919050565b6000612a18612a13846129d4565b612827565b905082815260208101848484011115612a3457612a336127c2565b5b612a3f848285612873565b509392505050565b600082601f830112612a5c57612a5b6127bd565b5b8135612a6c848260208601612a05565b91505092915050565b60008060008060808587031215612a8f57612a8e61249e565b5b6000612a9d878288016126eb565b9450506020612aae878288016126eb565b9350506040612abf87828801612636565b925050606085013567ffffffffffffffff811115612ae057612adf6124a3565b5b612aec87828801612a47565b91505092959194509250565b60008060408385031215612b0f57612b0e61249e565b5b6000612b1d858286016126eb565b9250506020612b2e858286016126eb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b7f57607f821691505b602082108103612b9257612b91612b38565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bce60208361256e565b9150612bd982612b98565b602082019050919050565b60006020820190508181036000830152612bfd81612bc1565b9050919050565b600081905092915050565b50565b6000612c1f600083612c04565b9150612c2a82612c0f565b600082019050919050565b6000612c4082612c12565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612c8060108361256e565b9150612c8b82612c4a565b602082019050919050565b60006020820190508181036000830152612caf81612c73565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612cdb565b612d228683612cdb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d5f612d5a612d5584612615565b612d3a565b612615565b9050919050565b6000819050919050565b612d7983612d44565b612d8d612d8582612d66565b848454612ce8565b825550505050565b600090565b612da2612d95565b612dad818484612d70565b505050565b5b81811015612dd157612dc6600082612d9a565b600181019050612db3565b5050565b601f821115612e1657612de781612cb6565b612df084612ccb565b81016020851015612dff578190505b612e13612e0b85612ccb565b830182612db2565b50505b505050565b600082821c905092915050565b6000612e3960001984600802612e1b565b1980831691505092915050565b6000612e528383612e28565b9150826002028217905092915050565b612e6b82612563565b67ffffffffffffffff811115612e8457612e836127c7565b5b612e8e8254612b67565b612e99828285612dd5565b600060209050601f831160018114612ecc5760008415612eba578287015190505b612ec48582612e46565b865550612f2c565b601f198416612eda86612cb6565b60005b82811015612f0257848901518255600182019150602085019450602081019050612edd565b86831015612f1f5784890151612f1b601f891682612e28565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f6e82612615565b9150612f7983612615565b9250828201905080821115612f9157612f90612f34565b5b92915050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b6000612fcd60148361256e565b9150612fd882612f97565b602082019050919050565b60006020820190508181036000830152612ffc81612fc0565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b600061303960078361256e565b915061304482613003565b602082019050919050565b600060208201905081810360008301526130688161302c565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b60006130a560138361256e565b91506130b08261306f565b602082019050919050565b600060208201905081810360008301526130d481613098565b9050919050565b60006130e682612615565b91506130f183612615565b925082820390508181111561310957613108612f34565b5b92915050565b600061311a82612615565b915061312583612615565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561315e5761315d612f34565b5b828202905092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b600061319f60208361256e565b91506131aa82613169565b602082019050919050565b600060208201905081810360008301526131ce81613192565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b600061320b60088361256e565b9150613216826131d5565b602082019050919050565b6000602082019050818103600083015261323a816131fe565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061329d602f8361256e565b91506132a882613241565b604082019050919050565b600060208201905081810360008301526132cc81613290565b9050919050565b600081905092915050565b600081546132eb81612b67565b6132f581866132d3565b94506001821660008114613310576001811461332557613358565b60ff1983168652811515820286019350613358565b61332e85612cb6565b60005b8381101561335057815481890152600182019150602081019050613331565b838801955050505b50505092915050565b600061336c82612563565b61337681856132d3565b935061338681856020860161257f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006133c86005836132d3565b91506133d382613392565b600582019050919050565b60006133ea82856132de565b91506133f68284613361565b9150613401826133bb565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061346960268361256e565b91506134748261340d565b604082019050919050565b600060208201905081810360008301526134988161345c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134c68261349f565b6134d081856134aa565b93506134e081856020860161257f565b6134e9816125a9565b840191505092915050565b600060808201905061350960008301876126aa565b61351660208301866126aa565b6135236040830185612740565b818103606083015261353581846134bb565b905095945050505050565b60008151905061354f816124d4565b92915050565b60006020828403121561356b5761356a61249e565b5b600061357984828501613540565b91505092915050565b600061358d82612615565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036135bf576135be612f34565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061360482612615565b915061360f83612615565b92508261361f5761361e6135ca565b5b828204905092915050565b600061363582612615565b915061364083612615565b9250826136505761364f6135ca565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220c0aa6e7f0c391257030ec427974d3f8ac32001b4996cff5c01f603322c77e43864736f6c63430008100033

Deployed Bytecode Sourcemap

76477:2887:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13049:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18062:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20130:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19590:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12103:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21016:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76710:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79147:206;;;;;;;;;;;;;:::i;:::-;;21257:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78754:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17851:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13728:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43570:103;;;;;;;;;;;;;:::i;:::-;;42919:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78953:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78850:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18231:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76586:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76999:1430;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20406:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76666:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21513:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78437:309;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76789:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79053:86;;;;;;;;;;;;;:::i;:::-;;76749:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76832:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20785:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43828:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76629:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13049:615;13134:4;13449:10;13434:25;;:11;:25;;;;:102;;;;13526:10;13511:25;;:11;:25;;;;13434:102;:179;;;;13603:10;13588:25;;:11;:25;;;;13434:179;13414:199;;13049:615;;;:::o;18062:100::-;18116:13;18149:5;18142:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18062:100;:::o;20130:204::-;20198:7;20223:16;20231:7;20223;:16::i;:::-;20218:64;;20248:34;;;;;;;;;;;;;;20218:64;20302:15;:24;20318:7;20302:24;;;;;;;;;;;;;;;;;;;;;20295:31;;20130:204;;;:::o;19590:474::-;19663:13;19695:27;19714:7;19695:18;:27::i;:::-;19663:61;;19745:5;19739:11;;:2;:11;;;19735:48;;19759:24;;;;;;;;;;;;;;19735:48;19823:5;19800:28;;:19;:17;:19::i;:::-;:28;;;19796:175;;19848:44;19865:5;19872:19;:17;:19::i;:::-;19848:16;:44::i;:::-;19843:128;;19920:35;;;;;;;;;;;;;;19843:128;19796:175;20010:2;19983:15;:24;19999:7;19983:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20048:7;20044:2;20028:28;;20037:5;20028:28;;;;;;;;;;;;19652:412;19590:474;;:::o;12103:315::-;12156:7;12384:15;:13;:15::i;:::-;12369:12;;12353:13;;:28;:46;12346:53;;12103:315;:::o;21016:170::-;21150:28;21160:4;21166:2;21170:7;21150:9;:28::i;:::-;21016:170;;;:::o;76710:30::-;;;;:::o;79147:206::-;43150:12;:10;:12::i;:::-;43139:23;;:7;:5;:7::i;:::-;:23;;;43131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79198:12:::1;79224:10;79216:24;;79262:21;79216:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79197:101;;;79317:7;79309:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;79186:167;79147:206::o:0;21257:185::-;21395:39;21412:4;21418:2;21422:7;21395:39;;;;;;;;;;;;:16;:39::i;:::-;21257:185;;;:::o;78754:88::-;43150:12;:10;:12::i;:::-;43139:23;;:7;:5;:7::i;:::-;:23;;;43131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78831:3:::1;78821:7;:13;;;;;;:::i;:::-;;78754:88:::0;:::o;17851:144::-;17915:7;17958:27;17977:7;17958:18;:27::i;:::-;17935:52;;17851:144;;;:::o;13728:224::-;13792:7;13833:1;13816:19;;:5;:19;;;13812:60;;13844:28;;;;;;;;;;;;;;13812:60;9067:13;13890:18;:25;13909:5;13890:25;;;;;;;;;;;;;;;;:54;13883:61;;13728:224;;;:::o;43570:103::-;43150:12;:10;:12::i;:::-;43139:23;;:7;:5;:7::i;:::-;:23;;;43131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43635:30:::1;43662:1;43635:18;:30::i;:::-;43570:103::o:0;42919:87::-;42965:7;42992:6;;;;;;;;;;;42985:13;;42919:87;:::o;78953:92::-;43150:12;:10;:12::i;:::-;43139:23;;:7;:5;:7::i;:::-;:23;;;43131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79028:9:::1;79020:5;:17;;;;78953:92:::0;:::o;78850:95::-;43150:12;:10;:12::i;:::-;43139:23;;:7;:5;:7::i;:::-;:23;;;43131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78931:6:::1;78919:9;:18;;;;78850:95:::0;:::o;18231:104::-;18287:13;18320:7;18313:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18231:104;:::o;76586:34::-;;;;:::o;76999:1430::-;77056:12;77071:5;;77056:20;;77087:11;77141:1;77129:9;;:13;;;;:::i;:::-;77121:5;77103:15;;:23;;;;:::i;:::-;:39;77102:108;;;;;77193:16;;77161:17;:29;77179:10;77161:29;;;;;;;;;;;;;;;;:48;77102:108;77087:124;;77228:6;77224:1157;;;77260:11;;;;;;;;;;;77252:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;77344:9;;77335:5;77319:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;77311:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;77397:8;;77388:5;:17;;77380:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;77476:17;:29;77494:10;77476:29;;;;;;;;;;;;;;;;77457:16;;:48;;;;:::i;:::-;77447:5;:59;77444:638;;77629:4;77596:17;:29;77614:10;77596:29;;;;;;;;;;;;;;;;77577:16;;:48;;;;:::i;:::-;77576:57;;;;:::i;:::-;77567:4;77559:5;:12;;;;:::i;:::-;77558:76;;;;:::i;:::-;77545:9;:89;;77537:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;77719:16;;77687:17;:29;77705:10;77687:29;;;;;;;;;;;;;;;:48;;;;77770:16;;77751:15;;:35;;;;;;;:::i;:::-;;;;;;;;77444:638;;;77852:17;:29;77870:10;77852:29;;;;;;;;;;;;;;;;77833:16;;:48;;;;:::i;:::-;77824:5;:58;77821:261;;;77934:1;77921:9;:14;;77913:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;78021:5;77988:17;:29;78006:10;77988:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;78061:5;78042:15;;:24;;;;;;;:::i;:::-;;;;;;;;77821:261;77444:638;77224:1157;;;78126:11;;;;;;;;;;;78118:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;78202:4;78194:5;:12;;;;:::i;:::-;78181:9;:25;;78173:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;78287:9;;78278:5;78262:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;78254:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;78337:8;;78328:5;:17;;78320:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;77224:1157;78393:28;78403:10;78415:5;78393:9;:28::i;:::-;77045:1384;;76999:1430;:::o;20406:308::-;20517:19;:17;:19::i;:::-;20505:31;;:8;:31;;;20501:61;;20545:17;;;;;;;;;;;;;;20501:61;20627:8;20575:18;:39;20594:19;:17;:19::i;:::-;20575:39;;;;;;;;;;;;;;;:49;20615:8;20575:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20687:8;20651:55;;20666:19;:17;:19::i;:::-;20651:55;;;20697:8;20651:55;;;;;;:::i;:::-;;;;;;;;20406:308;;:::o;76666:35::-;;;;:::o;21513:396::-;21680:28;21690:4;21696:2;21700:7;21680:9;:28::i;:::-;21741:1;21723:2;:14;;;:19;21719:183;;21762:56;21793:4;21799:2;21803:7;21812:5;21762:30;:56::i;:::-;21757:145;;21846:40;;;;;;;;;;;;;;21757:145;21719:183;21513:396;;;;:::o;78437:309::-;78519:13;78567:16;78575:7;78567;:16::i;:::-;78545:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;78700:7;78709:18;:7;:16;:18::i;:::-;78683:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78669:69;;78437:309;;;:::o;76789:30::-;;;;;;;;;;;;;:::o;79053:86::-;43150:12;:10;:12::i;:::-;43139:23;;:7;:5;:7::i;:::-;:23;;;43131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;79120:11:::1;;;;;;;;;;;79119:12;79105:11;;:26;;;;;;;;;;;;;;;;;;79053:86::o:0;76749:31::-;;;;:::o;76832:33::-;;;;:::o;20785:164::-;20882:4;20906:18;:25;20925:5;20906:25;;;;;;;;;;;;;;;:35;20932:8;20906:35;;;;;;;;;;;;;;;;;;;;;;;;;20899:42;;20785:164;;;;:::o;43828:201::-;43150:12;:10;:12::i;:::-;43139:23;;:7;:5;:7::i;:::-;:23;;;43131:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43937:1:::1;43917:22;;:8;:22;;::::0;43909:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43993:28;44012:8;43993:18;:28::i;:::-;43828:201:::0;:::o;76629:28::-;;;;:::o;22164:273::-;22221:4;22277:7;22258:15;:13;:15::i;:::-;:26;;:66;;;;;22311:13;;22301:7;:23;22258:66;:152;;;;;22409:1;9837:8;22362:17;:26;22380:7;22362:26;;;;;;;;;;;;:43;:48;22258:152;22238:172;;22164:273;;;:::o;15366:1129::-;15433:7;15453:12;15468:7;15453:22;;15536:4;15517:15;:13;:15::i;:::-;:23;15513:915;;15570:13;;15563:4;:20;15559:869;;;15608:14;15625:17;:23;15643:4;15625:23;;;;;;;;;;;;15608:40;;15741:1;9837:8;15714:6;:23;:28;15710:699;;16233:113;16250:1;16240:6;:11;16233:113;;16293:17;:25;16311:6;;;;;;;16293:25;;;;;;;;;;;;16284:34;;16233:113;;;16379:6;16372:13;;;;;;15710:699;15585:843;15559:869;15513:915;16456:31;;;;;;;;;;;;;;15366:1129;;;;:::o;36146:105::-;36206:7;36233:10;36226:17;;36146:105;:::o;11626:92::-;11682:7;11709:1;11702:8;;11626:92;:::o;27403:2515::-;27518:27;27548;27567:7;27548:18;:27::i;:::-;27518:57;;27633:4;27592:45;;27608:19;27592:45;;;27588:86;;27646:28;;;;;;;;;;;;;;27588:86;27687:22;27736:4;27713:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27757:43;27774:4;27780:19;:17;:19::i;:::-;27757:16;:43::i;:::-;27713:87;:147;;;;27841:19;:17;:19::i;:::-;27817:43;;:20;27829:7;27817:11;:20::i;:::-;:43;;;27713:147;27687:174;;27879:17;27874:66;;27905:35;;;;;;;;;;;;;;27874:66;27969:1;27955:16;;:2;:16;;;27951:52;;27980:23;;;;;;;;;;;;;;27951:52;28016:43;28038:4;28044:2;28048:7;28057:1;28016:21;:43::i;:::-;28132:15;:24;28148:7;28132:24;;;;;;;;;;;;28125:31;;;;;;;;;;;28524:18;:24;28543:4;28524:24;;;;;;;;;;;;;;;;28522:26;;;;;;;;;;;;28593:18;:22;28612:2;28593:22;;;;;;;;;;;;;;;;28591:24;;;;;;;;;;;10119:8;9721:3;28974:15;:41;;28932:21;28950:2;28932:17;:21::i;:::-;:84;:128;28886:17;:26;28904:7;28886:26;;;;;;;;;;;:174;;;;29230:1;10119:8;29180:19;:46;:51;29176:626;;29252:19;29284:1;29274:7;:11;29252:33;;29441:1;29407:17;:30;29425:11;29407:30;;;;;;;;;;;;:35;29403:384;;29545:13;;29530:11;:28;29526:242;;29725:19;29692:17;:30;29710:11;29692:30;;;;;;;;;;;:52;;;;29526:242;29403:384;29233:569;29176:626;29849:7;29845:2;29830:27;;29839:4;29830:27;;;;;;;;;;;;29868:42;29889:4;29895:2;29899:7;29908:1;29868:20;:42::i;:::-;27507:2411;;27403:2515;;;:::o;41590:98::-;41643:7;41670:10;41663:17;;41590:98;:::o;44189:191::-;44263:16;44282:6;;;;;;;;;;;44263:25;;44308:8;44299:6;;:17;;;;;;;;;;;;;;;;;;44363:8;44332:40;;44353:8;44332:40;;;;;;;;;;;;44252:128;44189:191;:::o;22521:104::-;22590:27;22600:2;22604:8;22590:27;;;;;;;;;;;;:9;:27::i;:::-;22521:104;;:::o;33615:716::-;33778:4;33824:2;33799:45;;;33845:19;:17;:19::i;:::-;33866:4;33872:7;33881:5;33799:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33795:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34099:1;34082:6;:13;:18;34078:235;;34128:40;;;;;;;;;;;;;;34078:235;34271:6;34265:13;34256:6;34252:2;34248:15;34241:38;33795:529;33968:54;;;33958:64;;;:6;:64;;;;33951:71;;;33615:716;;;;;;:::o;38791:723::-;38847:13;39077:1;39068:5;:10;39064:53;;39095:10;;;;;;;;;;;;;;;;;;;;;39064:53;39127:12;39142:5;39127:20;;39158:14;39183:78;39198:1;39190:4;:9;39183:78;;39216:8;;;;;:::i;:::-;;;;39247:2;39239:10;;;;;:::i;:::-;;;39183:78;;;39271:19;39303:6;39293:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39271:39;;39321:154;39337:1;39328:5;:10;39321:154;;39365:1;39355:11;;;;;:::i;:::-;;;39432:2;39424:5;:10;;;;:::i;:::-;39411:2;:24;;;;:::i;:::-;39398:39;;39381:6;39388;39381:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39461:2;39452:11;;;;;:::i;:::-;;;39321:154;;;39499:6;39485:21;;;;;38791:723;;;;:::o;34979:159::-;;;;;:::o;19151:148::-;19215:14;19276:5;19266:15;;19151:148;;;:::o;35797:158::-;;;;;:::o;22998:2236::-;23121:20;23144:13;;23121:36;;23186:1;23172:16;;:2;:16;;;23168:48;;23197:19;;;;;;;;;;;;;;23168:48;23243:1;23231:8;:13;23227:44;;23253:18;;;;;;;;;;;;;;23227:44;23284:61;23314:1;23318:2;23322:12;23336:8;23284:21;:61::i;:::-;23888:1;9204:2;23859:1;:25;;23858:31;23846:8;:44;23820:18;:22;23839:2;23820:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;9984:3;24289:29;24316:1;24304:8;:13;24289:14;:29::i;:::-;:56;;9721:3;24226:15;:41;;24184:21;24202:2;24184:17;:21::i;:::-;:84;:162;24133:17;:31;24151:12;24133:31;;;;;;;;;;;:213;;;;24363:20;24386:12;24363:35;;24413:11;24442:8;24427:12;:23;24413:37;;24489:1;24471:2;:14;;;:19;24467:635;;24511:313;24567:12;24563:2;24542:38;;24559:1;24542:38;;;;;;;;;;;;24608:69;24647:1;24651:2;24655:14;;;;;;24671:5;24608:30;:69::i;:::-;24603:174;;24713:40;;;;;;;;;;;;;;24603:174;24819:3;24804:12;:18;24511:313;;24905:12;24888:13;;:29;24884:43;;24919:8;;;24884:43;24467:635;;;24968:119;25024:14;;;;;;25020:2;24999:40;;25016:1;24999:40;;;;;;;;;;;;25082:3;25067:12;:18;24968:119;;24467:635;25132:12;25116:13;:28;;;;23597:1559;;25166:60;25195:1;25199:2;25203:12;25217:8;25166:20;:60::i;:::-;23110:2124;22998:2236;;;:::o;19386:142::-;19444:14;19505:5;19495:15;;19386:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:182::-;12743:34;12739:1;12731:6;12727:14;12720:58;12603:182;:::o;12791:366::-;12933:3;12954:67;13018:2;13013:3;12954:67;:::i;:::-;12947:74;;13030:93;13119:3;13030:93;:::i;:::-;13148:2;13143:3;13139:12;13132:19;;12791:366;;;:::o;13163:419::-;13329:4;13367:2;13356:9;13352:18;13344:26;;13416:9;13410:4;13406:20;13402:1;13391:9;13387:17;13380:47;13444:131;13570:4;13444:131;:::i;:::-;13436:139;;13163:419;;;:::o;13588:147::-;13689:11;13726:3;13711:18;;13588:147;;;;:::o;13741:114::-;;:::o;13861:398::-;14020:3;14041:83;14122:1;14117:3;14041:83;:::i;:::-;14034:90;;14133:93;14222:3;14133:93;:::i;:::-;14251:1;14246:3;14242:11;14235:18;;13861:398;;;:::o;14265:379::-;14449:3;14471:147;14614:3;14471:147;:::i;:::-;14464:154;;14635:3;14628:10;;14265:379;;;:::o;14650:166::-;14790:18;14786:1;14778:6;14774:14;14767:42;14650:166;:::o;14822:366::-;14964:3;14985:67;15049:2;15044:3;14985:67;:::i;:::-;14978:74;;15061:93;15150:3;15061:93;:::i;:::-;15179:2;15174:3;15170:12;15163:19;;14822:366;;;:::o;15194:419::-;15360:4;15398:2;15387:9;15383:18;15375:26;;15447:9;15441:4;15437:20;15433:1;15422:9;15418:17;15411:47;15475:131;15601:4;15475:131;:::i;:::-;15467:139;;15194:419;;;:::o;15619:141::-;15668:4;15691:3;15683:11;;15714:3;15711:1;15704:14;15748:4;15745:1;15735:18;15727:26;;15619:141;;;:::o;15766:93::-;15803:6;15850:2;15845;15838:5;15834:14;15830:23;15820:33;;15766:93;;;:::o;15865:107::-;15909:8;15959:5;15953:4;15949:16;15928:37;;15865:107;;;;:::o;15978:393::-;16047:6;16097:1;16085:10;16081:18;16120:97;16150:66;16139:9;16120:97;:::i;:::-;16238:39;16268:8;16257:9;16238:39;:::i;:::-;16226:51;;16310:4;16306:9;16299:5;16295:21;16286:30;;16359:4;16349:8;16345:19;16338:5;16335:30;16325:40;;16054:317;;15978:393;;;;;:::o;16377:60::-;16405:3;16426:5;16419:12;;16377:60;;;:::o;16443:142::-;16493:9;16526:53;16544:34;16553:24;16571:5;16553:24;:::i;:::-;16544:34;:::i;:::-;16526:53;:::i;:::-;16513:66;;16443:142;;;:::o;16591:75::-;16634:3;16655:5;16648:12;;16591:75;;;:::o;16672:269::-;16782:39;16813:7;16782:39;:::i;:::-;16843:91;16892:41;16916:16;16892:41;:::i;:::-;16884:6;16877:4;16871:11;16843:91;:::i;:::-;16837:4;16830:105;16748:193;16672:269;;;:::o;16947:73::-;16992:3;16947:73;:::o;17026:189::-;17103:32;;:::i;:::-;17144:65;17202:6;17194;17188:4;17144:65;:::i;:::-;17079:136;17026:189;;:::o;17221:186::-;17281:120;17298:3;17291:5;17288:14;17281:120;;;17352:39;17389:1;17382:5;17352:39;:::i;:::-;17325:1;17318:5;17314:13;17305:22;;17281:120;;;17221:186;;:::o;17413:543::-;17514:2;17509:3;17506:11;17503:446;;;17548:38;17580:5;17548:38;:::i;:::-;17632:29;17650:10;17632:29;:::i;:::-;17622:8;17618:44;17815:2;17803:10;17800:18;17797:49;;;17836:8;17821:23;;17797:49;17859:80;17915:22;17933:3;17915:22;:::i;:::-;17905:8;17901:37;17888:11;17859:80;:::i;:::-;17518:431;;17503:446;17413:543;;;:::o;17962:117::-;18016:8;18066:5;18060:4;18056:16;18035:37;;17962:117;;;;:::o;18085:169::-;18129:6;18162:51;18210:1;18206:6;18198:5;18195:1;18191:13;18162:51;:::i;:::-;18158:56;18243:4;18237;18233:15;18223:25;;18136:118;18085:169;;;;:::o;18259:295::-;18335:4;18481:29;18506:3;18500:4;18481:29;:::i;:::-;18473:37;;18543:3;18540:1;18536:11;18530:4;18527:21;18519:29;;18259:295;;;;:::o;18559:1395::-;18676:37;18709:3;18676:37;:::i;:::-;18778:18;18770:6;18767:30;18764:56;;;18800:18;;:::i;:::-;18764:56;18844:38;18876:4;18870:11;18844:38;:::i;:::-;18929:67;18989:6;18981;18975:4;18929:67;:::i;:::-;19023:1;19047:4;19034:17;;19079:2;19071:6;19068:14;19096:1;19091:618;;;;19753:1;19770:6;19767:77;;;19819:9;19814:3;19810:19;19804:26;19795:35;;19767:77;19870:67;19930:6;19923:5;19870:67;:::i;:::-;19864:4;19857:81;19726:222;19061:887;;19091:618;19143:4;19139:9;19131:6;19127:22;19177:37;19209:4;19177:37;:::i;:::-;19236:1;19250:208;19264:7;19261:1;19258:14;19250:208;;;19343:9;19338:3;19334:19;19328:26;19320:6;19313:42;19394:1;19386:6;19382:14;19372:24;;19441:2;19430:9;19426:18;19413:31;;19287:4;19284:1;19280:12;19275:17;;19250:208;;;19486:6;19477:7;19474:19;19471:179;;;19544:9;19539:3;19535:19;19529:26;19587:48;19629:4;19621:6;19617:17;19606:9;19587:48;:::i;:::-;19579:6;19572:64;19494:156;19471:179;19696:1;19692;19684:6;19680:14;19676:22;19670:4;19663:36;19098:611;;;19061:887;;18651:1303;;;18559:1395;;:::o;19960:180::-;20008:77;20005:1;19998:88;20105:4;20102:1;20095:15;20129:4;20126:1;20119:15;20146:191;20186:3;20205:20;20223:1;20205:20;:::i;:::-;20200:25;;20239:20;20257:1;20239:20;:::i;:::-;20234:25;;20282:1;20279;20275:9;20268:16;;20303:3;20300:1;20297:10;20294:36;;;20310:18;;:::i;:::-;20294:36;20146:191;;;;:::o;20343:170::-;20483:22;20479:1;20471:6;20467:14;20460:46;20343:170;:::o;20519:366::-;20661:3;20682:67;20746:2;20741:3;20682:67;:::i;:::-;20675:74;;20758:93;20847:3;20758:93;:::i;:::-;20876:2;20871:3;20867:12;20860:19;;20519:366;;;:::o;20891:419::-;21057:4;21095:2;21084:9;21080:18;21072:26;;21144:9;21138:4;21134:20;21130:1;21119:9;21115:17;21108:47;21172:131;21298:4;21172:131;:::i;:::-;21164:139;;20891:419;;;:::o;21316:157::-;21456:9;21452:1;21444:6;21440:14;21433:33;21316:157;:::o;21479:365::-;21621:3;21642:66;21706:1;21701:3;21642:66;:::i;:::-;21635:73;;21717:93;21806:3;21717:93;:::i;:::-;21835:2;21830:3;21826:12;21819:19;;21479:365;;;:::o;21850:419::-;22016:4;22054:2;22043:9;22039:18;22031:26;;22103:9;22097:4;22093:20;22089:1;22078:9;22074:17;22067:47;22131:131;22257:4;22131:131;:::i;:::-;22123:139;;21850:419;;;:::o;22275:169::-;22415:21;22411:1;22403:6;22399:14;22392:45;22275:169;:::o;22450:366::-;22592:3;22613:67;22677:2;22672:3;22613:67;:::i;:::-;22606:74;;22689:93;22778:3;22689:93;:::i;:::-;22807:2;22802:3;22798:12;22791:19;;22450:366;;;:::o;22822:419::-;22988:4;23026:2;23015:9;23011:18;23003:26;;23075:9;23069:4;23065:20;23061:1;23050:9;23046:17;23039:47;23103:131;23229:4;23103:131;:::i;:::-;23095:139;;22822:419;;;:::o;23247:194::-;23287:4;23307:20;23325:1;23307:20;:::i;:::-;23302:25;;23341:20;23359:1;23341:20;:::i;:::-;23336:25;;23385:1;23382;23378:9;23370:17;;23409:1;23403:4;23400:11;23397:37;;;23414:18;;:::i;:::-;23397:37;23247:194;;;;:::o;23447:348::-;23487:7;23510:20;23528:1;23510:20;:::i;:::-;23505:25;;23544:20;23562:1;23544:20;:::i;:::-;23539:25;;23732:1;23664:66;23660:74;23657:1;23654:81;23649:1;23642:9;23635:17;23631:105;23628:131;;;23739:18;;:::i;:::-;23628:131;23787:1;23784;23780:9;23769:20;;23447:348;;;;:::o;23801:182::-;23941:34;23937:1;23929:6;23925:14;23918:58;23801:182;:::o;23989:366::-;24131:3;24152:67;24216:2;24211:3;24152:67;:::i;:::-;24145:74;;24228:93;24317:3;24228:93;:::i;:::-;24346:2;24341:3;24337:12;24330:19;;23989:366;;;:::o;24361:419::-;24527:4;24565:2;24554:9;24550:18;24542:26;;24614:9;24608:4;24604:20;24600:1;24589:9;24585:17;24578:47;24642:131;24768:4;24642:131;:::i;:::-;24634:139;;24361:419;;;:::o;24786:158::-;24926:10;24922:1;24914:6;24910:14;24903:34;24786:158;:::o;24950:365::-;25092:3;25113:66;25177:1;25172:3;25113:66;:::i;:::-;25106:73;;25188:93;25277:3;25188:93;:::i;:::-;25306:2;25301:3;25297:12;25290:19;;24950:365;;;:::o;25321:419::-;25487:4;25525:2;25514:9;25510:18;25502:26;;25574:9;25568:4;25564:20;25560:1;25549:9;25545:17;25538:47;25602:131;25728:4;25602:131;:::i;:::-;25594:139;;25321:419;;;:::o;25746:234::-;25886:34;25882:1;25874:6;25870:14;25863:58;25955:17;25950:2;25942:6;25938:15;25931:42;25746:234;:::o;25986:366::-;26128:3;26149:67;26213:2;26208:3;26149:67;:::i;:::-;26142:74;;26225:93;26314:3;26225:93;:::i;:::-;26343:2;26338:3;26334:12;26327:19;;25986:366;;;:::o;26358:419::-;26524:4;26562:2;26551:9;26547:18;26539:26;;26611:9;26605:4;26601:20;26597:1;26586:9;26582:17;26575:47;26639:131;26765:4;26639:131;:::i;:::-;26631:139;;26358:419;;;:::o;26783:148::-;26885:11;26922:3;26907:18;;26783:148;;;;:::o;26961:874::-;27064:3;27101:5;27095:12;27130:36;27156:9;27130:36;:::i;:::-;27182:89;27264:6;27259:3;27182:89;:::i;:::-;27175:96;;27302:1;27291:9;27287:17;27318:1;27313:166;;;;27493:1;27488:341;;;;27280:549;;27313:166;27397:4;27393:9;27382;27378:25;27373:3;27366:38;27459:6;27452:14;27445:22;27437:6;27433:35;27428:3;27424:45;27417:52;;27313:166;;27488:341;27555:38;27587:5;27555:38;:::i;:::-;27615:1;27629:154;27643:6;27640:1;27637:13;27629:154;;;27717:7;27711:14;27707:1;27702:3;27698:11;27691:35;27767:1;27758:7;27754:15;27743:26;;27665:4;27662:1;27658:12;27653:17;;27629:154;;;27812:6;27807:3;27803:16;27796:23;;27495:334;;27280:549;;27068:767;;26961:874;;;;:::o;27841:390::-;27947:3;27975:39;28008:5;27975:39;:::i;:::-;28030:89;28112:6;28107:3;28030:89;:::i;:::-;28023:96;;28128:65;28186:6;28181:3;28174:4;28167:5;28163:16;28128:65;:::i;:::-;28218:6;28213:3;28209:16;28202:23;;27951:280;27841:390;;;;:::o;28237:155::-;28377:7;28373:1;28365:6;28361:14;28354:31;28237:155;:::o;28398:400::-;28558:3;28579:84;28661:1;28656:3;28579:84;:::i;:::-;28572:91;;28672:93;28761:3;28672:93;:::i;:::-;28790:1;28785:3;28781:11;28774:18;;28398:400;;;:::o;28804:695::-;29082:3;29104:92;29192:3;29183:6;29104:92;:::i;:::-;29097:99;;29213:95;29304:3;29295:6;29213:95;:::i;:::-;29206:102;;29325:148;29469:3;29325:148;:::i;:::-;29318:155;;29490:3;29483:10;;28804:695;;;;;:::o;29505:225::-;29645:34;29641:1;29633:6;29629:14;29622:58;29714:8;29709:2;29701:6;29697:15;29690:33;29505:225;:::o;29736:366::-;29878:3;29899:67;29963:2;29958:3;29899:67;:::i;:::-;29892:74;;29975:93;30064:3;29975:93;:::i;:::-;30093:2;30088:3;30084:12;30077:19;;29736:366;;;:::o;30108:419::-;30274:4;30312:2;30301:9;30297:18;30289:26;;30361:9;30355:4;30351:20;30347:1;30336:9;30332:17;30325:47;30389:131;30515:4;30389:131;:::i;:::-;30381:139;;30108:419;;;:::o;30533:98::-;30584:6;30618:5;30612:12;30602:22;;30533:98;;;:::o;30637:168::-;30720:11;30754:6;30749:3;30742:19;30794:4;30789:3;30785:14;30770:29;;30637:168;;;;:::o;30811:373::-;30897:3;30925:38;30957:5;30925:38;:::i;:::-;30979:70;31042:6;31037:3;30979:70;:::i;:::-;30972:77;;31058:65;31116:6;31111:3;31104:4;31097:5;31093:16;31058:65;:::i;:::-;31148:29;31170:6;31148:29;:::i;:::-;31143:3;31139:39;31132:46;;30901:283;30811:373;;;;:::o;31190:640::-;31385:4;31423:3;31412:9;31408:19;31400:27;;31437:71;31505:1;31494:9;31490:17;31481:6;31437:71;:::i;:::-;31518:72;31586:2;31575:9;31571:18;31562:6;31518:72;:::i;:::-;31600;31668:2;31657:9;31653:18;31644:6;31600:72;:::i;:::-;31719:9;31713:4;31709:20;31704:2;31693:9;31689:18;31682:48;31747:76;31818:4;31809:6;31747:76;:::i;:::-;31739:84;;31190:640;;;;;;;:::o;31836:141::-;31892:5;31923:6;31917:13;31908:22;;31939:32;31965:5;31939:32;:::i;:::-;31836:141;;;;:::o;31983:349::-;32052:6;32101:2;32089:9;32080:7;32076:23;32072:32;32069:119;;;32107:79;;:::i;:::-;32069:119;32227:1;32252:63;32307:7;32298:6;32287:9;32283:22;32252:63;:::i;:::-;32242:73;;32198:127;31983:349;;;;:::o;32338:233::-;32377:3;32400:24;32418:5;32400:24;:::i;:::-;32391:33;;32446:66;32439:5;32436:77;32433:103;;32516:18;;:::i;:::-;32433:103;32563:1;32556:5;32552:13;32545:20;;32338:233;;;:::o;32577:180::-;32625:77;32622:1;32615:88;32722:4;32719:1;32712:15;32746:4;32743:1;32736:15;32763:185;32803:1;32820:20;32838:1;32820:20;:::i;:::-;32815:25;;32854:20;32872:1;32854:20;:::i;:::-;32849:25;;32893:1;32883:35;;32898:18;;:::i;:::-;32883:35;32940:1;32937;32933:9;32928:14;;32763:185;;;;:::o;32954:176::-;32986:1;33003:20;33021:1;33003:20;:::i;:::-;32998:25;;33037:20;33055:1;33037:20;:::i;:::-;33032:25;;33076:1;33066:35;;33081:18;;:::i;:::-;33066:35;33122:1;33119;33115:9;33110:14;;32954:176;;;;:::o;33136:180::-;33184:77;33181:1;33174:88;33281:4;33278:1;33271:15;33305:4;33302:1;33295:15

Swarm Source

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