ETH Price: $3,468.49 (+2.19%)
Gas: 17 Gwei

Token

bitpop (bitpop)
 

Overview

Max Total Supply

6,969 bitpop

Holders

2,724

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
*🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️🐳️.eth
Balance
2 bitpop
0x1b0cAe4374eBc96289D8dAB50EeFfc20D3528503
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:
Bitpop

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-23
*/

// SPDX-License-Identifier: MIT

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

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

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

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

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

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the 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.0;


contract Bitpop is ERC721A, Ownable {

    using Strings for uint256;
    string private baseURI;
    bool public mintEnabled = false;

    uint256 public price = 0.001 ether;

    uint256 public maxPerTx = 20;
    uint256 public maxFreePerWallet = 2;
    uint256 public totalFree = 6969;
    uint256 public maxSupply = 6969;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("bitpop", "bitpop") {
        _safeMint(msg.sender, 10);
        setBaseURI("ipfs://bafybeieaiskgmmswoa25ubm6qdis2aept33mxsyn22nyl56c4dbyltscui/");
    }

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

        if (isFree) {
            cost = 0;
        }

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

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

        _safeMint(msg.sender, count);
    }

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

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

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

    function setMaxFreePerWallet(uint256 amount) external onlyOwner {
        maxFreePerWallet = amount;
    }

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff02191690831515021790555066038d7ea4c68000600b556014600c556002600d55611b39600e55611b39600f553480156200004d57600080fd5b506040518060400160405280600681526020017f626974706f7000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f626974706f7000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d2929190620007b4565b508060039080519060200190620000eb929190620007b4565b50620000fc6200016760201b60201c565b600081905550505062000124620001186200016c60201b60201c565b6200017460201b60201c565b6200013733600a6200023a60201b60201c565b6200016160405180608001604052806043815260200162003d99604391396200026060201b60201c565b62000b38565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025c8282604051806020016040528060008152506200030b60201b60201c565b5050565b620002706200016c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000296620005f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e6906200098b565b60405180910390fd5b806009908051906020019062000307929190620007b4565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000379576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415620003b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620003ca60008583866200061a60201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000437600185146200062060201b60201c565b901b60a042901b6200044f866200062a60201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b1462000560575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200050c60008784806001019550876200063460201b60201c565b62000543576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620004955782600054146200055a57600080fd5b620005cc565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821062000561575b816000819055505050620005ea6000858386620007a660201b60201c565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000662620007ac60201b60201c565b8786866040518563ffffffff1660e01b815260040162000686949392919062000937565b602060405180830381600087803b158015620006a157600080fd5b505af1925050508015620006d557506040513d601f19601f82011682018060405250810190620006d291906200087b565b60015b62000753573d806000811462000708576040519150601f19603f3d011682016040523d82523d6000602084013e6200070d565b606091505b506000815114156200074b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620007c29062000a7a565b90600052602060002090601f016020900481019282620007e6576000855562000832565b82601f106200080157805160ff191683800117855562000832565b8280016001018555821562000832579182015b828111156200083157825182559160200191906001019062000814565b5b50905062000841919062000845565b5090565b5b808211156200086057600081600090555060010162000846565b5090565b600081519050620008758162000b1e565b92915050565b60006020828403121562000894576200089362000adf565b5b6000620008a48482850162000864565b91505092915050565b620008b881620009da565b82525050565b6000620008cb82620009ad565b620008d78185620009b8565b9350620008e981856020860162000a44565b620008f48162000ae4565b840191505092915050565b60006200090e602083620009c9565b91506200091b8262000af5565b602082019050919050565b620009318162000a3a565b82525050565b60006080820190506200094e6000830187620008ad565b6200095d6020830186620008ad565b6200096c604083018562000926565b8181036060830152620009808184620008be565b905095945050505050565b60006020820190508181036000830152620009a681620008ff565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620009e78262000a1a565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000a6457808201518184015260208101905062000a47565b8381111562000a74576000848401525b50505050565b6000600282049050600182168062000a9357607f821691505b6020821081141562000aaa5762000aa962000ab0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62000b2981620009ee565b811462000b3557600080fd5b50565b6132518062000b486000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb011461062d578063e985e9c514610658578063f2fde38b14610695578063f968adbe146106be576101cd565b8063a702735714610571578063b88d4fde1461059c578063c87b56dd146105c5578063d123973014610602576101cd565b806395d89b41116100d157806395d89b41146104d6578063a035b1fe14610501578063a0712d681461052c578063a22cb46514610548576101cd565b80638da5cb5b1461045957806391b7f5ed1461048457806392910eec146104ad576101cd565b80633ccfd60b1161016f5780636d7c4a4b1161013e5780636d7c4a4b146103c557806370a08231146103ee578063715018a61461042b5780637ba5e62114610442576101cd565b80633ccfd60b1461031f57806342842e0e1461033657806355f804b31461035f5780636352211e14610388576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb578063333e44e6146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612606565b6106e9565b6040516102069190612a2e565b60405180910390f35b34801561021b57600080fd5b5061022461077b565b6040516102319190612a49565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906126a9565b61080d565b60405161026e91906129c7565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906125c6565b610889565b005b3480156102ac57600080fd5b506102b5610a30565b6040516102c29190612b6b565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906124b0565b610a47565b005b34801561030057600080fd5b50610309610a57565b6040516103169190612b6b565b60405180910390f35b34801561032b57600080fd5b50610334610a5d565b005b34801561034257600080fd5b5061035d600480360381019061035891906124b0565b610b88565b005b34801561036b57600080fd5b5061038660048036038101906103819190612660565b610ba8565b005b34801561039457600080fd5b506103af60048036038101906103aa91906126a9565b610c3e565b6040516103bc91906129c7565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e791906126a9565b610c50565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612443565b610cd6565b6040516104229190612b6b565b60405180910390f35b34801561043757600080fd5b50610440610d8f565b005b34801561044e57600080fd5b50610457610e17565b005b34801561046557600080fd5b5061046e610ebf565b60405161047b91906129c7565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a691906126a9565b610ee9565b005b3480156104b957600080fd5b506104d460048036038101906104cf91906126a9565b610f6f565b005b3480156104e257600080fd5b506104eb610ff5565b6040516104f89190612a49565b60405180910390f35b34801561050d57600080fd5b50610516611087565b6040516105239190612b6b565b60405180910390f35b610546600480360381019061054191906126a9565b61108d565b005b34801561055457600080fd5b5061056f600480360381019061056a9190612586565b6112d9565b005b34801561057d57600080fd5b50610586611451565b6040516105939190612b6b565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612503565b611457565b005b3480156105d157600080fd5b506105ec60048036038101906105e791906126a9565b6114ca565b6040516105f99190612a49565b60405180910390f35b34801561060e57600080fd5b50610617611546565b6040516106249190612a2e565b60405180910390f35b34801561063957600080fd5b50610642611559565b60405161064f9190612b6b565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612470565b61155f565b60405161068c9190612a2e565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612443565b6115f3565b005b3480156106ca57600080fd5b506106d36116eb565b6040516106e09190612b6b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078a90612e3b565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690612e3b565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b6000610818826116f1565b61084e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089482611750565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fc576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091b61181e565b73ffffffffffffffffffffffffffffffffffffffff161461097e576109478161094261181e565b61155f565b61097d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a3a611826565b6001546000540303905090565b610a5283838361182b565b505050565b600e5481565b610a65611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610a83610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090612acb565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aff906129b2565b60006040518083038185875af1925050503d8060008114610b3c576040519150601f19603f3d011682016040523d82523d6000602084013e610b41565b606091505b5050905080610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90612b2b565b60405180910390fd5b50565b610ba383838360405180602001604052806000815250611457565b505050565b610bb0611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610bce610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90612acb565b60405180910390fd5b8060099080519060200190610c3a929190612257565b5050565b6000610c4982611750565b9050919050565b610c58611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610c76610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390612acb565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d97611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610db5610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0290612acb565b60405180910390fd5b610e156000611bdd565b565b610e1f611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610e3d610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90612acb565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ef1611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610f0f610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90612acb565b60405180910390fd5b80600b8190555050565b610f77611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610f95610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290612acb565b60405180910390fd5b80600e8190555050565b60606003805461100490612e3b565b80601f016020809104026020016040519081016040528092919081815260200182805461103090612e3b565b801561107d5780601f106110525761010080835404028352916020019161107d565b820191906000526020600020905b81548152906001019060200180831161106057829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546110a59190612c70565b836110ae610a30565b6110b89190612c70565b1080156111115750600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461110e9190612c70565b11155b9050801561111e57600091505b818361112a9190612cf7565b34101561116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116390612b0b565b60405180910390fd5b6001600f5461117b9190612c70565b83611184610a30565b61118e9190612c70565b106111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612a8b565b60405180910390fd5b600a60009054906101000a900460ff1661121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490612a6b565b60405180910390fd5b6001600c5461122c9190612c70565b831061126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490612b4b565b60405180910390fd5b80156112ca5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112c29190612c70565b925050819055505b6112d43384611ca3565b505050565b6112e161181e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611346576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061135361181e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661140061181e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114459190612a2e565b60405180910390a35050565b600d5481565b61146284848461182b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114c45761148d84848484611cc1565b6114c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114d5826116f1565b611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612aeb565b60405180910390fd5b600961151f83611e21565b604051602001611530929190612983565b6040516020818303038152906040529050919050565b600a60009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115fb611bd5565b73ffffffffffffffffffffffffffffffffffffffff16611619610ebf565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690612acb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690612aab565b60405180910390fd5b6116e881611bdd565b50565b600c5481565b6000816116fc611826565b1115801561170b575060005482105b8015611749575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061175f611826565b116117e7576000548110156117e65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117e4575b60008114156117da5760046000836001900393508381526020019081526020016000205490506117af565b8092505050611819565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061183682611750565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461189d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118be61181e565b73ffffffffffffffffffffffffffffffffffffffff1614806118ed57506118ec856118e761181e565b61155f565b5b8061193257506118fb61181e565b73ffffffffffffffffffffffffffffffffffffffff1661191a8461080d565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061196b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119d2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119df8585856001611f82565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611adc86611f88565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611b66576000600184019050600060046000838152602001908152602001600020541415611b64576000548114611b63578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bce8585856001611f92565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cbd828260405180602001604052806000815250611f98565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ce761181e565b8786866040518563ffffffff1660e01b8152600401611d0994939291906129e2565b602060405180830381600087803b158015611d2357600080fd5b505af1925050508015611d5457506040513d601f19601f82011682018060405250810190611d519190612633565b60015b611dce573d8060008114611d84576040519150601f19603f3d011682016040523d82523d6000602084013e611d89565b606091505b50600081511415611dc6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e69576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f7d565b600082905060005b60008214611e9b578080611e8490612e9e565b915050600a82611e949190612cc6565b9150611e71565b60008167ffffffffffffffff811115611eb757611eb6612fd4565b5b6040519080825280601f01601f191660200182016040528015611ee95781602001600182028036833780820191505090505b5090505b60008514611f7657600182611f029190612d51565b9150600a85611f119190612ee7565b6030611f1d9190612c70565b60f81b818381518110611f3357611f32612fa5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f6f9190612cc6565b9450611eed565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612005576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612040576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61204d6000858386611f82565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16120b26001851461224d565b901b60a042901b6120c286611f88565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146121c6575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121766000878480600101955087611cc1565b6121ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106121075782600054146121c157600080fd5b612231565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106121c7575b8160008190555050506122476000858386611f92565b50505050565b6000819050919050565b82805461226390612e3b565b90600052602060002090601f01602090048101928261228557600085556122cc565b82601f1061229e57805160ff19168380011785556122cc565b828001600101855582156122cc579182015b828111156122cb5782518255916020019190600101906122b0565b5b5090506122d991906122dd565b5090565b5b808211156122f65760008160009055506001016122de565b5090565b600061230d61230884612bab565b612b86565b90508281526020810184848401111561232957612328613008565b5b612334848285612df9565b509392505050565b600061234f61234a84612bdc565b612b86565b90508281526020810184848401111561236b5761236a613008565b5b612376848285612df9565b509392505050565b60008135905061238d816131bf565b92915050565b6000813590506123a2816131d6565b92915050565b6000813590506123b7816131ed565b92915050565b6000815190506123cc816131ed565b92915050565b600082601f8301126123e7576123e6613003565b5b81356123f78482602086016122fa565b91505092915050565b600082601f83011261241557612414613003565b5b813561242584826020860161233c565b91505092915050565b60008135905061243d81613204565b92915050565b60006020828403121561245957612458613012565b5b60006124678482850161237e565b91505092915050565b6000806040838503121561248757612486613012565b5b60006124958582860161237e565b92505060206124a68582860161237e565b9150509250929050565b6000806000606084860312156124c9576124c8613012565b5b60006124d78682870161237e565b93505060206124e88682870161237e565b92505060406124f98682870161242e565b9150509250925092565b6000806000806080858703121561251d5761251c613012565b5b600061252b8782880161237e565b945050602061253c8782880161237e565b935050604061254d8782880161242e565b925050606085013567ffffffffffffffff81111561256e5761256d61300d565b5b61257a878288016123d2565b91505092959194509250565b6000806040838503121561259d5761259c613012565b5b60006125ab8582860161237e565b92505060206125bc85828601612393565b9150509250929050565b600080604083850312156125dd576125dc613012565b5b60006125eb8582860161237e565b92505060206125fc8582860161242e565b9150509250929050565b60006020828403121561261c5761261b613012565b5b600061262a848285016123a8565b91505092915050565b60006020828403121561264957612648613012565b5b6000612657848285016123bd565b91505092915050565b60006020828403121561267657612675613012565b5b600082013567ffffffffffffffff8111156126945761269361300d565b5b6126a084828501612400565b91505092915050565b6000602082840312156126bf576126be613012565b5b60006126cd8482850161242e565b91505092915050565b6126df81612d85565b82525050565b6126ee81612d97565b82525050565b60006126ff82612c22565b6127098185612c38565b9350612719818560208601612e08565b61272281613017565b840191505092915050565b600061273882612c2d565b6127428185612c54565b9350612752818560208601612e08565b61275b81613017565b840191505092915050565b600061277182612c2d565b61277b8185612c65565b935061278b818560208601612e08565b80840191505092915050565b600081546127a481612e3b565b6127ae8186612c65565b945060018216600081146127c957600181146127da5761280d565b60ff1983168652818601935061280d565b6127e385612c0d565b60005b83811015612805578154818901526001820191506020810190506127e6565b838801955050505b50505092915050565b6000612823601783612c54565b915061282e82613028565b602082019050919050565b6000612846600783612c54565b915061285182613051565b602082019050919050565b6000612869602683612c54565b91506128748261307a565b604082019050919050565b600061288c602083612c54565b9150612897826130c9565b602082019050919050565b60006128af602f83612c54565b91506128ba826130f2565b604082019050919050565b60006128d2601d83612c54565b91506128dd82613141565b602082019050919050565b60006128f5600083612c49565b91506129008261316a565b600082019050919050565b6000612918600083612c65565b91506129238261316a565b600082019050919050565b600061293b601083612c54565b91506129468261316d565b602082019050919050565b600061295e601383612c54565b915061296982613196565b602082019050919050565b61297d81612def565b82525050565b600061298f8285612797565b915061299b8284612766565b91506129a68261290b565b91508190509392505050565b60006129bd826128e8565b9150819050919050565b60006020820190506129dc60008301846126d6565b92915050565b60006080820190506129f760008301876126d6565b612a0460208301866126d6565b612a116040830185612974565b8181036060830152612a2381846126f4565b905095945050505050565b6000602082019050612a4360008301846126e5565b92915050565b60006020820190508181036000830152612a63818461272d565b905092915050565b60006020820190508181036000830152612a8481612816565b9050919050565b60006020820190508181036000830152612aa481612839565b9050919050565b60006020820190508181036000830152612ac48161285c565b9050919050565b60006020820190508181036000830152612ae48161287f565b9050919050565b60006020820190508181036000830152612b04816128a2565b9050919050565b60006020820190508181036000830152612b24816128c5565b9050919050565b60006020820190508181036000830152612b448161292e565b9050919050565b60006020820190508181036000830152612b6481612951565b9050919050565b6000602082019050612b806000830184612974565b92915050565b6000612b90612ba1565b9050612b9c8282612e6d565b919050565b6000604051905090565b600067ffffffffffffffff821115612bc657612bc5612fd4565b5b612bcf82613017565b9050602081019050919050565b600067ffffffffffffffff821115612bf757612bf6612fd4565b5b612c0082613017565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c7b82612def565b9150612c8683612def565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cbb57612cba612f18565b5b828201905092915050565b6000612cd182612def565b9150612cdc83612def565b925082612cec57612ceb612f47565b5b828204905092915050565b6000612d0282612def565b9150612d0d83612def565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d4657612d45612f18565b5b828202905092915050565b6000612d5c82612def565b9150612d6783612def565b925082821015612d7a57612d79612f18565b5b828203905092915050565b6000612d9082612dcf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e26578082015181840152602081019050612e0b565b83811115612e35576000848401525b50505050565b60006002820490506001821680612e5357607f821691505b60208210811415612e6757612e66612f76565b5b50919050565b612e7682613017565b810181811067ffffffffffffffff82111715612e9557612e94612fd4565b5b80604052505050565b6000612ea982612def565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612edc57612edb612f18565b5b600182019050919050565b6000612ef282612def565b9150612efd83612def565b925082612f0d57612f0c612f47565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6131c881612d85565b81146131d357600080fd5b50565b6131df81612d97565b81146131ea57600080fd5b50565b6131f681612da3565b811461320157600080fd5b50565b61320d81612def565b811461321857600080fd5b5056fea26469706673582212202960648e0dd8a42944c7f37707cac902907981c267db6f10164db7d3a6ef2b4b64736f6c63430008070033697066733a2f2f62616679626569656169736b676d6d73776f61323575626d3671646973326165707433336d7873796e32326e796c353663346462796c74736375692f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb011461062d578063e985e9c514610658578063f2fde38b14610695578063f968adbe146106be576101cd565b8063a702735714610571578063b88d4fde1461059c578063c87b56dd146105c5578063d123973014610602576101cd565b806395d89b41116100d157806395d89b41146104d6578063a035b1fe14610501578063a0712d681461052c578063a22cb46514610548576101cd565b80638da5cb5b1461045957806391b7f5ed1461048457806392910eec146104ad576101cd565b80633ccfd60b1161016f5780636d7c4a4b1161013e5780636d7c4a4b146103c557806370a08231146103ee578063715018a61461042b5780637ba5e62114610442576101cd565b80633ccfd60b1461031f57806342842e0e1461033657806355f804b31461035f5780636352211e14610388576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb578063333e44e6146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612606565b6106e9565b6040516102069190612a2e565b60405180910390f35b34801561021b57600080fd5b5061022461077b565b6040516102319190612a49565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906126a9565b61080d565b60405161026e91906129c7565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906125c6565b610889565b005b3480156102ac57600080fd5b506102b5610a30565b6040516102c29190612b6b565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906124b0565b610a47565b005b34801561030057600080fd5b50610309610a57565b6040516103169190612b6b565b60405180910390f35b34801561032b57600080fd5b50610334610a5d565b005b34801561034257600080fd5b5061035d600480360381019061035891906124b0565b610b88565b005b34801561036b57600080fd5b5061038660048036038101906103819190612660565b610ba8565b005b34801561039457600080fd5b506103af60048036038101906103aa91906126a9565b610c3e565b6040516103bc91906129c7565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e791906126a9565b610c50565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612443565b610cd6565b6040516104229190612b6b565b60405180910390f35b34801561043757600080fd5b50610440610d8f565b005b34801561044e57600080fd5b50610457610e17565b005b34801561046557600080fd5b5061046e610ebf565b60405161047b91906129c7565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a691906126a9565b610ee9565b005b3480156104b957600080fd5b506104d460048036038101906104cf91906126a9565b610f6f565b005b3480156104e257600080fd5b506104eb610ff5565b6040516104f89190612a49565b60405180910390f35b34801561050d57600080fd5b50610516611087565b6040516105239190612b6b565b60405180910390f35b610546600480360381019061054191906126a9565b61108d565b005b34801561055457600080fd5b5061056f600480360381019061056a9190612586565b6112d9565b005b34801561057d57600080fd5b50610586611451565b6040516105939190612b6b565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612503565b611457565b005b3480156105d157600080fd5b506105ec60048036038101906105e791906126a9565b6114ca565b6040516105f99190612a49565b60405180910390f35b34801561060e57600080fd5b50610617611546565b6040516106249190612a2e565b60405180910390f35b34801561063957600080fd5b50610642611559565b60405161064f9190612b6b565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a9190612470565b61155f565b60405161068c9190612a2e565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612443565b6115f3565b005b3480156106ca57600080fd5b506106d36116eb565b6040516106e09190612b6b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461078a90612e3b565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690612e3b565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b6000610818826116f1565b61084e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089482611750565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108fc576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661091b61181e565b73ffffffffffffffffffffffffffffffffffffffff161461097e576109478161094261181e565b61155f565b61097d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a3a611826565b6001546000540303905090565b610a5283838361182b565b505050565b600e5481565b610a65611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610a83610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad090612acb565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aff906129b2565b60006040518083038185875af1925050503d8060008114610b3c576040519150601f19603f3d011682016040523d82523d6000602084013e610b41565b606091505b5050905080610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90612b2b565b60405180910390fd5b50565b610ba383838360405180602001604052806000815250611457565b505050565b610bb0611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610bce610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90612acb565b60405180910390fd5b8060099080519060200190610c3a929190612257565b5050565b6000610c4982611750565b9050919050565b610c58611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610c76610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390612acb565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d97611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610db5610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0290612acb565b60405180910390fd5b610e156000611bdd565b565b610e1f611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610e3d610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90612acb565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ef1611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610f0f610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90612acb565b60405180910390fd5b80600b8190555050565b610f77611bd5565b73ffffffffffffffffffffffffffffffffffffffff16610f95610ebf565b73ffffffffffffffffffffffffffffffffffffffff1614610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290612acb565b60405180910390fd5b80600e8190555050565b60606003805461100490612e3b565b80601f016020809104026020016040519081016040528092919081815260200182805461103090612e3b565b801561107d5780601f106110525761010080835404028352916020019161107d565b820191906000526020600020905b81548152906001019060200180831161106057829003601f168201915b5050505050905090565b600b5481565b6000600b54905060006001600e546110a59190612c70565b836110ae610a30565b6110b89190612c70565b1080156111115750600d5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461110e9190612c70565b11155b9050801561111e57600091505b818361112a9190612cf7565b34101561116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116390612b0b565b60405180910390fd5b6001600f5461117b9190612c70565b83611184610a30565b61118e9190612c70565b106111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c590612a8b565b60405180910390fd5b600a60009054906101000a900460ff1661121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490612a6b565b60405180910390fd5b6001600c5461122c9190612c70565b831061126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490612b4b565b60405180910390fd5b80156112ca5782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112c29190612c70565b925050819055505b6112d43384611ca3565b505050565b6112e161181e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611346576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061135361181e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661140061181e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114459190612a2e565b60405180910390a35050565b600d5481565b61146284848461182b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114c45761148d84848484611cc1565b6114c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606114d5826116f1565b611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612aeb565b60405180910390fd5b600961151f83611e21565b604051602001611530929190612983565b6040516020818303038152906040529050919050565b600a60009054906101000a900460ff1681565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115fb611bd5565b73ffffffffffffffffffffffffffffffffffffffff16611619610ebf565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690612acb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690612aab565b60405180910390fd5b6116e881611bdd565b50565b600c5481565b6000816116fc611826565b1115801561170b575060005482105b8015611749575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061175f611826565b116117e7576000548110156117e65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117e4575b60008114156117da5760046000836001900393508381526020019081526020016000205490506117af565b8092505050611819565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061183682611750565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461189d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166118be61181e565b73ffffffffffffffffffffffffffffffffffffffff1614806118ed57506118ec856118e761181e565b61155f565b5b8061193257506118fb61181e565b73ffffffffffffffffffffffffffffffffffffffff1661191a8461080d565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061196b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119d2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119df8585856001611f82565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611adc86611f88565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415611b66576000600184019050600060046000838152602001908152602001600020541415611b64576000548114611b63578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bce8585856001611f92565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cbd828260405180602001604052806000815250611f98565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ce761181e565b8786866040518563ffffffff1660e01b8152600401611d0994939291906129e2565b602060405180830381600087803b158015611d2357600080fd5b505af1925050508015611d5457506040513d601f19601f82011682018060405250810190611d519190612633565b60015b611dce573d8060008114611d84576040519150601f19603f3d011682016040523d82523d6000602084013e611d89565b606091505b50600081511415611dc6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611e69576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f7d565b600082905060005b60008214611e9b578080611e8490612e9e565b915050600a82611e949190612cc6565b9150611e71565b60008167ffffffffffffffff811115611eb757611eb6612fd4565b5b6040519080825280601f01601f191660200182016040528015611ee95781602001600182028036833780820191505090505b5090505b60008514611f7657600182611f029190612d51565b9150600a85611f119190612ee7565b6030611f1d9190612c70565b60f81b818381518110611f3357611f32612fa5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f6f9190612cc6565b9450611eed565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612005576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612040576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61204d6000858386611f82565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16120b26001851461224d565b901b60a042901b6120c286611f88565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146121c6575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121766000878480600101955087611cc1565b6121ac576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106121075782600054146121c157600080fd5b612231565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106121c7575b8160008190555050506122476000858386611f92565b50505050565b6000819050919050565b82805461226390612e3b565b90600052602060002090601f01602090048101928261228557600085556122cc565b82601f1061229e57805160ff19168380011785556122cc565b828001600101855582156122cc579182015b828111156122cb5782518255916020019190600101906122b0565b5b5090506122d991906122dd565b5090565b5b808211156122f65760008160009055506001016122de565b5090565b600061230d61230884612bab565b612b86565b90508281526020810184848401111561232957612328613008565b5b612334848285612df9565b509392505050565b600061234f61234a84612bdc565b612b86565b90508281526020810184848401111561236b5761236a613008565b5b612376848285612df9565b509392505050565b60008135905061238d816131bf565b92915050565b6000813590506123a2816131d6565b92915050565b6000813590506123b7816131ed565b92915050565b6000815190506123cc816131ed565b92915050565b600082601f8301126123e7576123e6613003565b5b81356123f78482602086016122fa565b91505092915050565b600082601f83011261241557612414613003565b5b813561242584826020860161233c565b91505092915050565b60008135905061243d81613204565b92915050565b60006020828403121561245957612458613012565b5b60006124678482850161237e565b91505092915050565b6000806040838503121561248757612486613012565b5b60006124958582860161237e565b92505060206124a68582860161237e565b9150509250929050565b6000806000606084860312156124c9576124c8613012565b5b60006124d78682870161237e565b93505060206124e88682870161237e565b92505060406124f98682870161242e565b9150509250925092565b6000806000806080858703121561251d5761251c613012565b5b600061252b8782880161237e565b945050602061253c8782880161237e565b935050604061254d8782880161242e565b925050606085013567ffffffffffffffff81111561256e5761256d61300d565b5b61257a878288016123d2565b91505092959194509250565b6000806040838503121561259d5761259c613012565b5b60006125ab8582860161237e565b92505060206125bc85828601612393565b9150509250929050565b600080604083850312156125dd576125dc613012565b5b60006125eb8582860161237e565b92505060206125fc8582860161242e565b9150509250929050565b60006020828403121561261c5761261b613012565b5b600061262a848285016123a8565b91505092915050565b60006020828403121561264957612648613012565b5b6000612657848285016123bd565b91505092915050565b60006020828403121561267657612675613012565b5b600082013567ffffffffffffffff8111156126945761269361300d565b5b6126a084828501612400565b91505092915050565b6000602082840312156126bf576126be613012565b5b60006126cd8482850161242e565b91505092915050565b6126df81612d85565b82525050565b6126ee81612d97565b82525050565b60006126ff82612c22565b6127098185612c38565b9350612719818560208601612e08565b61272281613017565b840191505092915050565b600061273882612c2d565b6127428185612c54565b9350612752818560208601612e08565b61275b81613017565b840191505092915050565b600061277182612c2d565b61277b8185612c65565b935061278b818560208601612e08565b80840191505092915050565b600081546127a481612e3b565b6127ae8186612c65565b945060018216600081146127c957600181146127da5761280d565b60ff1983168652818601935061280d565b6127e385612c0d565b60005b83811015612805578154818901526001820191506020810190506127e6565b838801955050505b50505092915050565b6000612823601783612c54565b915061282e82613028565b602082019050919050565b6000612846600783612c54565b915061285182613051565b602082019050919050565b6000612869602683612c54565b91506128748261307a565b604082019050919050565b600061288c602083612c54565b9150612897826130c9565b602082019050919050565b60006128af602f83612c54565b91506128ba826130f2565b604082019050919050565b60006128d2601d83612c54565b91506128dd82613141565b602082019050919050565b60006128f5600083612c49565b91506129008261316a565b600082019050919050565b6000612918600083612c65565b91506129238261316a565b600082019050919050565b600061293b601083612c54565b91506129468261316d565b602082019050919050565b600061295e601383612c54565b915061296982613196565b602082019050919050565b61297d81612def565b82525050565b600061298f8285612797565b915061299b8284612766565b91506129a68261290b565b91508190509392505050565b60006129bd826128e8565b9150819050919050565b60006020820190506129dc60008301846126d6565b92915050565b60006080820190506129f760008301876126d6565b612a0460208301866126d6565b612a116040830185612974565b8181036060830152612a2381846126f4565b905095945050505050565b6000602082019050612a4360008301846126e5565b92915050565b60006020820190508181036000830152612a63818461272d565b905092915050565b60006020820190508181036000830152612a8481612816565b9050919050565b60006020820190508181036000830152612aa481612839565b9050919050565b60006020820190508181036000830152612ac48161285c565b9050919050565b60006020820190508181036000830152612ae48161287f565b9050919050565b60006020820190508181036000830152612b04816128a2565b9050919050565b60006020820190508181036000830152612b24816128c5565b9050919050565b60006020820190508181036000830152612b448161292e565b9050919050565b60006020820190508181036000830152612b6481612951565b9050919050565b6000602082019050612b806000830184612974565b92915050565b6000612b90612ba1565b9050612b9c8282612e6d565b919050565b6000604051905090565b600067ffffffffffffffff821115612bc657612bc5612fd4565b5b612bcf82613017565b9050602081019050919050565b600067ffffffffffffffff821115612bf757612bf6612fd4565b5b612c0082613017565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c7b82612def565b9150612c8683612def565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612cbb57612cba612f18565b5b828201905092915050565b6000612cd182612def565b9150612cdc83612def565b925082612cec57612ceb612f47565b5b828204905092915050565b6000612d0282612def565b9150612d0d83612def565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d4657612d45612f18565b5b828202905092915050565b6000612d5c82612def565b9150612d6783612def565b925082821015612d7a57612d79612f18565b5b828203905092915050565b6000612d9082612dcf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612e26578082015181840152602081019050612e0b565b83811115612e35576000848401525b50505050565b60006002820490506001821680612e5357607f821691505b60208210811415612e6757612e66612f76565b5b50919050565b612e7682613017565b810181811067ffffffffffffffff82111715612e9557612e94612fd4565b5b80604052505050565b6000612ea982612def565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612edc57612edb612f18565b5b600182019050919050565b6000612ef282612def565b9150612efd83612def565b925082612f0d57612f0c612f47565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6131c881612d85565b81146131d357600080fd5b50565b6131df81612d97565b81146131ea57600080fd5b50565b6131f681612da3565b811461320157600080fd5b50565b61320d81612def565b811461321857600080fd5b5056fea26469706673582212202960648e0dd8a42944c7f37707cac902907981c267db6f10164db7d3a6ef2b4b64736f6c63430008070033

Deployed Bytecode Sourcemap

76546:2470:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13103:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18116:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20184:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19644:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12157:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21070:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76812:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78807:206;;;;;;;;;;;;;:::i;:::-;;21311:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78300:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17905:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78396:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13782:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43624:103;;;;;;;;;;;;;:::i;:::-;;78715:84;;;;;;;;;;;;;:::i;:::-;;42973:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78615:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78512:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18285:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76692:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77138:685;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20460:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76770:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21567:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77947:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76652:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76850;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20839:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43882:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76735:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13103:615;13188:4;13503:10;13488:25;;:11;:25;;;;:102;;;;13580:10;13565:25;;:11;:25;;;;13488:102;:179;;;;13657:10;13642:25;;:11;:25;;;;13488:179;13468:199;;13103:615;;;:::o;18116:100::-;18170:13;18203:5;18196:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18116:100;:::o;20184:204::-;20252:7;20277:16;20285:7;20277;:16::i;:::-;20272:64;;20302:34;;;;;;;;;;;;;;20272:64;20356:15;:24;20372:7;20356:24;;;;;;;;;;;;;;;;;;;;;20349:31;;20184:204;;;:::o;19644:474::-;19717:13;19749:27;19768:7;19749:18;:27::i;:::-;19717:61;;19799:5;19793:11;;:2;:11;;;19789:48;;;19813:24;;;;;;;;;;;;;;19789:48;19877:5;19854:28;;:19;:17;:19::i;:::-;:28;;;19850:175;;19902:44;19919:5;19926:19;:17;:19::i;:::-;19902:16;:44::i;:::-;19897:128;;19974:35;;;;;;;;;;;;;;19897:128;19850:175;20064:2;20037:15;:24;20053:7;20037:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;20102:7;20098:2;20082:28;;20091:5;20082:28;;;;;;;;;;;;19706:412;19644:474;;:::o;12157:315::-;12210:7;12438:15;:13;:15::i;:::-;12423:12;;12407:13;;:28;:46;12400:53;;12157:315;:::o;21070:170::-;21204:28;21214:4;21220:2;21224:7;21204:9;:28::i;:::-;21070:170;;;:::o;76812:31::-;;;;:::o;78807:206::-;43204:12;:10;:12::i;:::-;43193:23;;:7;:5;:7::i;:::-;:23;;;43185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78858:12:::1;78884:10;78876:24;;78922:21;78876:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78857:101;;;78977:7;78969:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;78846:167;78807:206::o:0;21311:185::-;21449:39;21466:4;21472:2;21476:7;21449:39;;;;;;;;;;;;:16;:39::i;:::-;21311:185;;;:::o;78300:88::-;43204:12;:10;:12::i;:::-;43193:23;;:7;:5;:7::i;:::-;:23;;;43185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78377:3:::1;78367:7;:13;;;;;;;;;;;;:::i;:::-;;78300:88:::0;:::o;17905:144::-;17969:7;18012:27;18031:7;18012:18;:27::i;:::-;17989:52;;17905:144;;;:::o;78396:108::-;43204:12;:10;:12::i;:::-;43193:23;;:7;:5;:7::i;:::-;:23;;;43185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78490:6:::1;78471:16;:25;;;;78396:108:::0;:::o;13782:224::-;13846:7;13887:1;13870:19;;:5;:19;;;13866:60;;;13898:28;;;;;;;;;;;;;;13866:60;9121:13;13944:18;:25;13963:5;13944:25;;;;;;;;;;;;;;;;:54;13937:61;;13782:224;;;:::o;43624:103::-;43204:12;:10;:12::i;:::-;43193:23;;:7;:5;:7::i;:::-;:23;;;43185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43689:30:::1;43716:1;43689:18;:30::i;:::-;43624:103::o:0;78715:84::-;43204:12;:10;:12::i;:::-;43193:23;;:7;:5;:7::i;:::-;:23;;;43185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78780:11:::1;;;;;;;;;;;78779:12;78765:11;;:26;;;;;;;;;;;;;;;;;;78715:84::o:0;42973:87::-;43019:7;43046:6;;;;;;;;;;;43039:13;;42973:87;:::o;78615:92::-;43204:12;:10;:12::i;:::-;43193:23;;:7;:5;:7::i;:::-;:23;;;43185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78690:9:::1;78682:5;:17;;;;78615:92:::0;:::o;78512:95::-;43204:12;:10;:12::i;:::-;43193:23;;:7;:5;:7::i;:::-;:23;;;43185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;78593:6:::1;78581:9;:18;;;;78512:95:::0;:::o;18285:104::-;18341:13;18374:7;18367:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18285:104;:::o;76692:34::-;;;;:::o;77138:685::-;77195:12;77210:5;;77195:20;;77226:11;77278:1;77266:9;;:13;;;;:::i;:::-;77258:5;77242:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;77241:115;;;;;77339:16;;77330:5;77298:17;:29;77316:10;77298:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;77241:115;77226:131;;77374:6;77370:47;;;77404:1;77397:8;;77370:47;77458:4;77450:5;:12;;;;:::i;:::-;77437:9;:25;;77429:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;77551:1;77539:9;;:13;;;;:::i;:::-;77531:5;77515:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;77507:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;77583:11;;;;;;;;;;;77575:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;77660:1;77649:8;;:12;;;;:::i;:::-;77641:5;:20;77633:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;77702:6;77698:77;;;77758:5;77725:17;:29;77743:10;77725:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;77698:77;77787:28;77797:10;77809:5;77787:9;:28::i;:::-;77184:639;;77138:685;:::o;20460:308::-;20571:19;:17;:19::i;:::-;20559:31;;:8;:31;;;20555:61;;;20599:17;;;;;;;;;;;;;;20555:61;20681:8;20629:18;:39;20648:19;:17;:19::i;:::-;20629:39;;;;;;;;;;;;;;;:49;20669:8;20629:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;20741:8;20705:55;;20720:19;:17;:19::i;:::-;20705:55;;;20751:8;20705:55;;;;;;:::i;:::-;;;;;;;;20460:308;;:::o;76770:35::-;;;;:::o;21567:396::-;21734:28;21744:4;21750:2;21754:7;21734:9;:28::i;:::-;21795:1;21777:2;:14;;;:19;21773:183;;21816:56;21847:4;21853:2;21857:7;21866:5;21816:30;:56::i;:::-;21811:145;;21900:40;;;;;;;;;;;;;;21811:145;21773:183;21567:396;;;;:::o;77947:345::-;78065:13;78118:16;78126:7;78118;:16::i;:::-;78096:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;78251:7;78260:18;:7;:16;:18::i;:::-;78234:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78220:64;;77947:345;;;:::o;76652:31::-;;;;;;;;;;;;;:::o;76850:::-;;;;:::o;20839:164::-;20936:4;20960:18;:25;20979:5;20960:25;;;;;;;;;;;;;;;:35;20986:8;20960:35;;;;;;;;;;;;;;;;;;;;;;;;;20953:42;;20839:164;;;;:::o;43882:201::-;43204:12;:10;:12::i;:::-;43193:23;;:7;:5;:7::i;:::-;:23;;;43185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43991:1:::1;43971:22;;:8;:22;;;;43963:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44047:28;44066:8;44047:18;:28::i;:::-;43882:201:::0;:::o;76735:28::-;;;;:::o;22218:273::-;22275:4;22331:7;22312:15;:13;:15::i;:::-;:26;;:66;;;;;22365:13;;22355:7;:23;22312:66;:152;;;;;22463:1;9891:8;22416:17;:26;22434:7;22416:26;;;;;;;;;;;;:43;:48;22312:152;22292:172;;22218:273;;;:::o;15420:1129::-;15487:7;15507:12;15522:7;15507:22;;15590:4;15571:15;:13;:15::i;:::-;:23;15567:915;;15624:13;;15617:4;:20;15613:869;;;15662:14;15679:17;:23;15697:4;15679:23;;;;;;;;;;;;15662:40;;15795:1;9891:8;15768:6;:23;:28;15764:699;;;16287:113;16304:1;16294:6;:11;16287:113;;;16347:17;:25;16365:6;;;;;;;16347:25;;;;;;;;;;;;16338:34;;16287:113;;;16433:6;16426:13;;;;;;15764:699;15639:843;15613:869;15567:915;16510:31;;;;;;;;;;;;;;15420:1129;;;;:::o;36200:105::-;36260:7;36287:10;36280:17;;36200:105;:::o;11680:92::-;11736:7;11680:92;:::o;27457:2515::-;27572:27;27602;27621:7;27602:18;:27::i;:::-;27572:57;;27687:4;27646:45;;27662:19;27646:45;;;27642:86;;27700:28;;;;;;;;;;;;;;27642:86;27741:22;27790:4;27767:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;27811:43;27828:4;27834:19;:17;:19::i;:::-;27811:16;:43::i;:::-;27767:87;:147;;;;27895:19;:17;:19::i;:::-;27871:43;;:20;27883:7;27871:11;:20::i;:::-;:43;;;27767:147;27741:174;;27933:17;27928:66;;27959:35;;;;;;;;;;;;;;27928:66;28023:1;28009:16;;:2;:16;;;28005:52;;;28034:23;;;;;;;;;;;;;;28005:52;28070:43;28092:4;28098:2;28102:7;28111:1;28070:21;:43::i;:::-;28186:15;:24;28202:7;28186:24;;;;;;;;;;;;28179:31;;;;;;;;;;;28578:18;:24;28597:4;28578:24;;;;;;;;;;;;;;;;28576:26;;;;;;;;;;;;28647:18;:22;28666:2;28647:22;;;;;;;;;;;;;;;;28645:24;;;;;;;;;;;10173:8;9775:3;29028:15;:41;;28986:21;29004:2;28986:17;:21::i;:::-;:84;:128;28940:17;:26;28958:7;28940:26;;;;;;;;;;;:174;;;;29284:1;10173:8;29234:19;:46;:51;29230:626;;;29306:19;29338:1;29328:7;:11;29306:33;;29495:1;29461:17;:30;29479:11;29461:30;;;;;;;;;;;;:35;29457:384;;;29599:13;;29584:11;:28;29580:242;;29779:19;29746:17;:30;29764:11;29746:30;;;;;;;;;;;:52;;;;29580:242;29457:384;29287:569;29230:626;29903:7;29899:2;29884:27;;29893:4;29884:27;;;;;;;;;;;;29922:42;29943:4;29949:2;29953:7;29962:1;29922:20;:42::i;:::-;27561:2411;;27457:2515;;;:::o;41644:98::-;41697:7;41724:10;41717:17;;41644:98;:::o;44243:191::-;44317:16;44336:6;;;;;;;;;;;44317:25;;44362:8;44353:6;;:17;;;;;;;;;;;;;;;;;;44417:8;44386:40;;44407:8;44386:40;;;;;;;;;;;;44306:128;44243:191;:::o;22575:104::-;22644:27;22654:2;22658:8;22644:27;;;;;;;;;;;;:9;:27::i;:::-;22575:104;;:::o;33669:716::-;33832:4;33878:2;33853:45;;;33899:19;:17;:19::i;:::-;33920:4;33926:7;33935:5;33853:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33849:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34153:1;34136:6;:13;:18;34132:235;;;34182:40;;;;;;;;;;;;;;34132:235;34325:6;34319:13;34310:6;34306:2;34302:15;34295:38;33849:529;34022:54;;;34012:64;;;:6;:64;;;;34005:71;;;33669:716;;;;;;:::o;38845:723::-;38901:13;39131:1;39122:5;:10;39118:53;;;39149:10;;;;;;;;;;;;;;;;;;;;;39118:53;39181:12;39196:5;39181:20;;39212:14;39237:78;39252:1;39244:4;:9;39237:78;;39270:8;;;;;:::i;:::-;;;;39301:2;39293:10;;;;;:::i;:::-;;;39237:78;;;39325:19;39357:6;39347:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39325:39;;39375:154;39391:1;39382:5;:10;39375:154;;39419:1;39409:11;;;;;:::i;:::-;;;39486:2;39478:5;:10;;;;:::i;:::-;39465:2;:24;;;;:::i;:::-;39452:39;;39435:6;39442;39435:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;39515:2;39506:11;;;;;:::i;:::-;;;39375:154;;;39553:6;39539:21;;;;;38845:723;;;;:::o;35033:159::-;;;;;:::o;19205:148::-;19269:14;19330:5;19320:15;;19205:148;;;:::o;35851:158::-;;;;;:::o;23052:2236::-;23175:20;23198:13;;23175:36;;23240:1;23226:16;;:2;:16;;;23222:48;;;23251:19;;;;;;;;;;;;;;23222:48;23297:1;23285:8;:13;23281:44;;;23307:18;;;;;;;;;;;;;;23281:44;23338:61;23368:1;23372:2;23376:12;23390:8;23338:21;:61::i;:::-;23942:1;9258:2;23913:1;:25;;23912:31;23900:8;:44;23874:18;:22;23893:2;23874:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;10038:3;24343:29;24370:1;24358:8;:13;24343:14;:29::i;:::-;:56;;9775:3;24280:15;:41;;24238:21;24256:2;24238:17;:21::i;:::-;:84;:162;24187:17;:31;24205:12;24187:31;;;;;;;;;;;:213;;;;24417:20;24440:12;24417:35;;24467:11;24496:8;24481:12;:23;24467:37;;24543:1;24525:2;:14;;;:19;24521:635;;24565:313;24621:12;24617:2;24596:38;;24613:1;24596:38;;;;;;;;;;;;24662:69;24701:1;24705:2;24709:14;;;;;;24725:5;24662:30;:69::i;:::-;24657:174;;24767:40;;;;;;;;;;;;;;24657:174;24873:3;24858:12;:18;24565:313;;24959:12;24942:13;;:29;24938:43;;24973:8;;;24938:43;24521:635;;;25022:119;25078:14;;;;;;25074:2;25053:40;;25070:1;25053:40;;;;;;;;;;;;25136:3;25121:12;:18;25022:119;;24521:635;25186:12;25170:13;:28;;;;23651:1559;;25220:60;25249:1;25253:2;25257:12;25271:8;25220:20;:60::i;:::-;23164:2124;23052:2236;;;:::o;19440:142::-;19498:14;19559:5;19549:15;;19440:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:365::-;9905:3;9926:66;9990:1;9985:3;9926:66;:::i;:::-;9919:73;;10001:93;10090:3;10001:93;:::i;:::-;10119:2;10114:3;10110:12;10103:19;;9763:365;;;:::o;10134:366::-;10276:3;10297:67;10361:2;10356:3;10297:67;:::i;:::-;10290:74;;10373:93;10462:3;10373:93;:::i;:::-;10491:2;10486:3;10482:12;10475:19;;10134:366;;;:::o;10506:::-;10648:3;10669:67;10733:2;10728:3;10669:67;:::i;:::-;10662:74;;10745:93;10834:3;10745:93;:::i;:::-;10863:2;10858:3;10854:12;10847:19;;10506:366;;;:::o;10878:::-;11020:3;11041:67;11105:2;11100:3;11041:67;:::i;:::-;11034:74;;11117:93;11206:3;11117:93;:::i;:::-;11235:2;11230:3;11226:12;11219:19;;10878:366;;;:::o;11250:::-;11392:3;11413:67;11477:2;11472:3;11413:67;:::i;:::-;11406:74;;11489:93;11578:3;11489:93;:::i;:::-;11607:2;11602:3;11598:12;11591:19;;11250:366;;;:::o;11622:398::-;11781:3;11802:83;11883:1;11878:3;11802:83;:::i;:::-;11795:90;;11894:93;11983:3;11894:93;:::i;:::-;12012:1;12007:3;12003:11;11996:18;;11622:398;;;:::o;12026:400::-;12186:3;12207:84;12289:1;12284:3;12207:84;:::i;:::-;12200:91;;12300:93;12389:3;12300:93;:::i;:::-;12418:1;12413:3;12409:11;12402:18;;12026:400;;;:::o;12432:366::-;12574:3;12595:67;12659:2;12654:3;12595:67;:::i;:::-;12588:74;;12671:93;12760:3;12671:93;:::i;:::-;12789:2;12784:3;12780:12;12773:19;;12432:366;;;:::o;12804:::-;12946:3;12967:67;13031:2;13026:3;12967:67;:::i;:::-;12960:74;;13043:93;13132:3;13043:93;:::i;:::-;13161:2;13156:3;13152:12;13145:19;;12804:366;;;:::o;13176:118::-;13263:24;13281:5;13263:24;:::i;:::-;13258:3;13251:37;13176:118;;:::o;13300:695::-;13578:3;13600:92;13688:3;13679:6;13600:92;:::i;:::-;13593:99;;13709:95;13800:3;13791:6;13709:95;:::i;:::-;13702:102;;13821:148;13965:3;13821:148;:::i;:::-;13814:155;;13986:3;13979:10;;13300:695;;;;;:::o;14001:379::-;14185:3;14207:147;14350:3;14207:147;:::i;:::-;14200:154;;14371:3;14364:10;;14001:379;;;:::o;14386:222::-;14479:4;14517:2;14506:9;14502:18;14494:26;;14530:71;14598:1;14587:9;14583:17;14574:6;14530:71;:::i;:::-;14386:222;;;;:::o;14614:640::-;14809:4;14847:3;14836:9;14832:19;14824:27;;14861:71;14929:1;14918:9;14914:17;14905:6;14861:71;:::i;:::-;14942:72;15010:2;14999:9;14995:18;14986:6;14942:72;:::i;:::-;15024;15092:2;15081:9;15077:18;15068:6;15024:72;:::i;:::-;15143:9;15137:4;15133:20;15128:2;15117:9;15113:18;15106:48;15171:76;15242:4;15233:6;15171:76;:::i;:::-;15163:84;;14614:640;;;;;;;:::o;15260:210::-;15347:4;15385:2;15374:9;15370:18;15362:26;;15398:65;15460:1;15449:9;15445:17;15436:6;15398:65;:::i;:::-;15260:210;;;;:::o;15476:313::-;15589:4;15627:2;15616:9;15612:18;15604:26;;15676:9;15670:4;15666:20;15662:1;15651:9;15647:17;15640:47;15704:78;15777:4;15768:6;15704:78;:::i;:::-;15696:86;;15476:313;;;;:::o;15795:419::-;15961:4;15999:2;15988:9;15984:18;15976:26;;16048:9;16042:4;16038:20;16034:1;16023:9;16019:17;16012:47;16076:131;16202:4;16076:131;:::i;:::-;16068:139;;15795:419;;;:::o;16220:::-;16386:4;16424:2;16413:9;16409:18;16401:26;;16473:9;16467:4;16463:20;16459:1;16448:9;16444:17;16437:47;16501:131;16627:4;16501:131;:::i;:::-;16493:139;;16220:419;;;:::o;16645:::-;16811:4;16849:2;16838:9;16834:18;16826:26;;16898:9;16892:4;16888:20;16884:1;16873:9;16869:17;16862:47;16926:131;17052:4;16926:131;:::i;:::-;16918:139;;16645:419;;;:::o;17070:::-;17236:4;17274:2;17263:9;17259:18;17251:26;;17323:9;17317:4;17313:20;17309:1;17298:9;17294:17;17287:47;17351:131;17477:4;17351:131;:::i;:::-;17343:139;;17070:419;;;:::o;17495:::-;17661:4;17699:2;17688:9;17684:18;17676:26;;17748:9;17742:4;17738:20;17734:1;17723:9;17719:17;17712:47;17776:131;17902:4;17776:131;:::i;:::-;17768:139;;17495:419;;;:::o;17920:::-;18086:4;18124:2;18113:9;18109:18;18101:26;;18173:9;18167:4;18163:20;18159:1;18148:9;18144:17;18137:47;18201:131;18327:4;18201:131;:::i;:::-;18193:139;;17920:419;;;:::o;18345:::-;18511:4;18549:2;18538:9;18534:18;18526:26;;18598:9;18592:4;18588:20;18584:1;18573:9;18569:17;18562:47;18626:131;18752:4;18626:131;:::i;:::-;18618:139;;18345:419;;;:::o;18770:::-;18936:4;18974:2;18963:9;18959:18;18951:26;;19023:9;19017:4;19013:20;19009:1;18998:9;18994:17;18987:47;19051:131;19177:4;19051:131;:::i;:::-;19043:139;;18770:419;;;:::o;19195:222::-;19288:4;19326:2;19315:9;19311:18;19303:26;;19339:71;19407:1;19396:9;19392:17;19383:6;19339:71;:::i;:::-;19195:222;;;;:::o;19423:129::-;19457:6;19484:20;;:::i;:::-;19474:30;;19513:33;19541:4;19533:6;19513:33;:::i;:::-;19423:129;;;:::o;19558:75::-;19591:6;19624:2;19618:9;19608:19;;19558:75;:::o;19639:307::-;19700:4;19790:18;19782:6;19779:30;19776:56;;;19812:18;;:::i;:::-;19776:56;19850:29;19872:6;19850:29;:::i;:::-;19842:37;;19934:4;19928;19924:15;19916:23;;19639:307;;;:::o;19952:308::-;20014:4;20104:18;20096:6;20093:30;20090:56;;;20126:18;;:::i;:::-;20090:56;20164:29;20186:6;20164:29;:::i;:::-;20156:37;;20248:4;20242;20238:15;20230:23;;19952:308;;;:::o;20266:141::-;20315:4;20338:3;20330:11;;20361:3;20358:1;20351:14;20395:4;20392:1;20382:18;20374:26;;20266:141;;;:::o;20413:98::-;20464:6;20498:5;20492:12;20482:22;;20413:98;;;:::o;20517:99::-;20569:6;20603:5;20597:12;20587:22;;20517:99;;;:::o;20622:168::-;20705:11;20739:6;20734:3;20727:19;20779:4;20774:3;20770:14;20755:29;;20622:168;;;;:::o;20796:147::-;20897:11;20934:3;20919:18;;20796:147;;;;:::o;20949:169::-;21033:11;21067:6;21062:3;21055:19;21107:4;21102:3;21098:14;21083:29;;20949:169;;;;:::o;21124:148::-;21226:11;21263:3;21248:18;;21124:148;;;;:::o;21278:305::-;21318:3;21337:20;21355:1;21337:20;:::i;:::-;21332:25;;21371:20;21389:1;21371:20;:::i;:::-;21366:25;;21525:1;21457:66;21453:74;21450:1;21447:81;21444:107;;;21531:18;;:::i;:::-;21444:107;21575:1;21572;21568:9;21561:16;;21278:305;;;;:::o;21589:185::-;21629:1;21646:20;21664:1;21646:20;:::i;:::-;21641:25;;21680:20;21698:1;21680:20;:::i;:::-;21675:25;;21719:1;21709:35;;21724:18;;:::i;:::-;21709:35;21766:1;21763;21759:9;21754:14;;21589:185;;;;:::o;21780:348::-;21820:7;21843:20;21861:1;21843:20;:::i;:::-;21838:25;;21877:20;21895:1;21877:20;:::i;:::-;21872:25;;22065:1;21997:66;21993:74;21990:1;21987:81;21982:1;21975:9;21968:17;21964:105;21961:131;;;22072:18;;:::i;:::-;21961:131;22120:1;22117;22113:9;22102:20;;21780:348;;;;:::o;22134:191::-;22174:4;22194:20;22212:1;22194:20;:::i;:::-;22189:25;;22228:20;22246:1;22228:20;:::i;:::-;22223:25;;22267:1;22264;22261:8;22258:34;;;22272:18;;:::i;:::-;22258:34;22317:1;22314;22310:9;22302:17;;22134:191;;;;:::o;22331:96::-;22368:7;22397:24;22415:5;22397:24;:::i;:::-;22386:35;;22331:96;;;:::o;22433:90::-;22467:7;22510:5;22503:13;22496:21;22485:32;;22433:90;;;:::o;22529:149::-;22565:7;22605:66;22598:5;22594:78;22583:89;;22529:149;;;:::o;22684:126::-;22721:7;22761:42;22754:5;22750:54;22739:65;;22684:126;;;:::o;22816:77::-;22853:7;22882:5;22871:16;;22816:77;;;:::o;22899:154::-;22983:6;22978:3;22973;22960:30;23045:1;23036:6;23031:3;23027:16;23020:27;22899:154;;;:::o;23059:307::-;23127:1;23137:113;23151:6;23148:1;23145:13;23137:113;;;23236:1;23231:3;23227:11;23221:18;23217:1;23212:3;23208:11;23201:39;23173:2;23170:1;23166:10;23161:15;;23137:113;;;23268:6;23265:1;23262:13;23259:101;;;23348:1;23339:6;23334:3;23330:16;23323:27;23259:101;23108:258;23059:307;;;:::o;23372:320::-;23416:6;23453:1;23447:4;23443:12;23433:22;;23500:1;23494:4;23490:12;23521:18;23511:81;;23577:4;23569:6;23565:17;23555:27;;23511:81;23639:2;23631:6;23628:14;23608:18;23605:38;23602:84;;;23658:18;;:::i;:::-;23602:84;23423:269;23372:320;;;:::o;23698:281::-;23781:27;23803:4;23781:27;:::i;:::-;23773:6;23769:40;23911:6;23899:10;23896:22;23875:18;23863:10;23860:34;23857:62;23854:88;;;23922:18;;:::i;:::-;23854:88;23962:10;23958:2;23951:22;23741:238;23698:281;;:::o;23985:233::-;24024:3;24047:24;24065:5;24047:24;:::i;:::-;24038:33;;24093:66;24086:5;24083:77;24080:103;;;24163:18;;:::i;:::-;24080:103;24210:1;24203:5;24199:13;24192:20;;23985:233;;;:::o;24224:176::-;24256:1;24273:20;24291:1;24273:20;:::i;:::-;24268:25;;24307:20;24325:1;24307:20;:::i;:::-;24302:25;;24346:1;24336:35;;24351:18;;:::i;:::-;24336:35;24392:1;24389;24385:9;24380:14;;24224:176;;;;:::o;24406:180::-;24454:77;24451:1;24444:88;24551:4;24548:1;24541:15;24575:4;24572:1;24565:15;24592:180;24640:77;24637:1;24630:88;24737:4;24734:1;24727:15;24761:4;24758:1;24751:15;24778:180;24826:77;24823:1;24816:88;24923:4;24920:1;24913:15;24947:4;24944:1;24937:15;24964:180;25012:77;25009:1;25002:88;25109:4;25106:1;25099:15;25133:4;25130:1;25123:15;25150:180;25198:77;25195:1;25188:88;25295:4;25292:1;25285:15;25319:4;25316:1;25309:15;25336:117;25445:1;25442;25435:12;25459:117;25568:1;25565;25558:12;25582:117;25691:1;25688;25681:12;25705:117;25814:1;25811;25804:12;25828:102;25869:6;25920:2;25916:7;25911:2;25904:5;25900:14;25896:28;25886:38;;25828:102;;;:::o;25936:173::-;26076:25;26072:1;26064:6;26060:14;26053:49;25936:173;:::o;26115:157::-;26255:9;26251:1;26243:6;26239:14;26232:33;26115:157;:::o;26278:225::-;26418:34;26414:1;26406:6;26402:14;26395:58;26487:8;26482:2;26474:6;26470:15;26463:33;26278:225;:::o;26509:182::-;26649:34;26645:1;26637:6;26633:14;26626:58;26509:182;:::o;26697:234::-;26837:34;26833:1;26825:6;26821:14;26814:58;26906:17;26901:2;26893:6;26889:15;26882:42;26697:234;:::o;26937:179::-;27077:31;27073:1;27065:6;27061:14;27054:55;26937:179;:::o;27122:114::-;;:::o;27242:166::-;27382:18;27378:1;27370:6;27366:14;27359:42;27242:166;:::o;27414:169::-;27554:21;27550:1;27542:6;27538:14;27531:45;27414:169;:::o;27589:122::-;27662:24;27680:5;27662:24;:::i;:::-;27655:5;27652:35;27642:63;;27701:1;27698;27691:12;27642:63;27589:122;:::o;27717:116::-;27787:21;27802:5;27787:21;:::i;:::-;27780:5;27777:32;27767:60;;27823:1;27820;27813:12;27767:60;27717:116;:::o;27839:120::-;27911:23;27928:5;27911:23;:::i;:::-;27904:5;27901:34;27891:62;;27949:1;27946;27939:12;27891:62;27839:120;:::o;27965:122::-;28038:24;28056:5;28038:24;:::i;:::-;28031:5;28028:35;28018:63;;28077:1;28074;28067:12;28018:63;27965:122;:::o

Swarm Source

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