ETH Price: $3,514.51 (+4.69%)
Gas: 4 Gwei

Token

MoonDoge (MOONDOGE)
 

Overview

Max Total Supply

712 MOONDOGE

Holders

702

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MOONDOGE
0xdFA3880c3643c72805413f24557E2Ff1f2226Faa
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:
MoonDoge

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.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: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.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: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: @openzeppelin/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";

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

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

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

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

// File: @openzeppelin/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: @openzeppelin/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: @openzeppelin/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: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

// File: DOGE/MainContract.sol


pragma solidity ^0.8.9;






contract MoonDoge is ERC2981, ERC721AQueryable, Ownable {
    using Address for address payable;
    using Strings for uint256;

    uint256 public immutable _price;
    uint32 public immutable _txLimit;
    uint32 public immutable _maxSupply;
    uint32 public immutable _teamReserved;
    uint32 public immutable _walletLimit;

    bool public _started;
    uint32 public _teamMinted;
    string public _metadataURI = "https://mintmoondoge.com/metadata/";

    struct HelperState {
        uint256 price;
        uint32 txLimit;
        uint32 walletLimit;
        uint32 maxSupply;
        uint32 teamReserved;
        uint32 totalMinted;
        uint32 userMinted;
        bool started;
    }

    constructor( uint256 price, uint32 maxSupply, uint32 txLimit, uint32 walletLimit, uint32 teamReserved) ERC721A("MoonDoge", "MOONDOGE") {
        _price = price;
        _maxSupply = maxSupply;
        _txLimit = txLimit;
        _walletLimit = walletLimit;
        _teamReserved = teamReserved;

        _setDefaultRoyalty(owner(), 500);
    }

    function mint(uint32 amount) external payable {
        require(_started, "MoonDoge: Sale is not started");
        require(amount + _totalMinted() <= _maxSupply - _teamReserved, "MoonDoge: Sold out");
        require(amount <= _txLimit, "MoonDoge: Exceed transaction limit");

        uint256 minted = _numberMinted(msg.sender);
        if (minted > 0) {
            require(msg.value >= amount * _price, "MoonDoge: insufficient funds");
        } else {
            require(msg.value >= (amount - 1) * _price, "MoonDoge: insufficient funds");
        }

        require(minted + amount <= _walletLimit, "MoonDoge: Exceed wallet limit");

        _safeMint(msg.sender, amount);
    }

    function _state(address minter) external view returns (HelperState memory) {
        return
            HelperState({
                price: _price,
                txLimit: _txLimit,
                walletLimit: _walletLimit,
                maxSupply: _maxSupply,
                teamReserved: _teamReserved,
                totalMinted: uint32(ERC721A._totalMinted()),
                userMinted: uint32(_numberMinted(minter)),
                started: _started
            });
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _metadataURI;
        return string(abi.encodePacked(baseURI, tokenId.toString(), ""));
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC2981, ERC721A) returns (bool) {
        return
            interfaceId == type(IERC2981).interfaceId ||
            interfaceId == type(IERC721).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function devMint(address to, uint32 amount) external onlyOwner {
        _teamMinted += amount;
        require (_teamMinted <= _teamReserved, "MoonDoge: Exceed max supply");
        _safeMint(to, amount);
    }

    function setFeeNumerator(uint96 feeNumerator) external onlyOwner {
        _setDefaultRoyalty(owner(), feeNumerator);
    }

    function setStarted(bool started) external onlyOwner {
        _started = started;
    }

    function setMetadataURI(string memory uri) external onlyOwner {
        _metadataURI = uri;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).sendValue(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint32","name":"maxSupply","type":"uint32"},{"internalType":"uint32","name":"txLimit","type":"uint32"},{"internalType":"uint32","name":"walletLimit","type":"uint32"},{"internalType":"uint32","name":"teamReserved","type":"uint32"}],"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":"InvalidQueryRange","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":[],"name":"_maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_metadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint32","name":"txLimit","type":"uint32"},{"internalType":"uint32","name":"walletLimit","type":"uint32"},{"internalType":"uint32","name":"maxSupply","type":"uint32"},{"internalType":"uint32","name":"teamReserved","type":"uint32"},{"internalType":"uint32","name":"totalMinted","type":"uint32"},{"internalType":"uint32","name":"userMinted","type":"uint32"},{"internalType":"bool","name":"started","type":"bool"}],"internalType":"struct MoonDoge.HelperState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamMinted","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamReserved","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_txLimit","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_walletLimit","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"amount","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"started","type":"bool"}],"name":"setStarted","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","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"}]

61018060405260226101208181529062002f126101403980516200002c91600b9160209091019062000284565b503480156200003a57600080fd5b5060405162002f3438038062002f348339810160408190526200005d9162000344565b604051806040016040528060088152602001674d6f6f6e446f676560c01b815250604051806040016040528060088152602001674d4f4f4e444f474560c01b8152508160049080519060200190620000b792919062000284565b508051620000cd90600590602084019062000284565b5050600060025550620000e0336200012d565b608085905263ffffffff80851660c05283811660a05282811661010052811660e0526200012262000119600a546001600160a01b031690565b6101f46200017f565b5050505050620003e8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001f35760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200024b5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001ea565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b8280546200029290620003ab565b90600052602060002090601f016020900481019282620002b6576000855562000301565b82601f10620002d157805160ff191683800117855562000301565b8280016001018555821562000301579182015b8281111562000301578251825591602001919060010190620002e4565b506200030f92915062000313565b5090565b5b808211156200030f576000815560010162000314565b805163ffffffff811681146200033f57600080fd5b919050565b600080600080600060a086880312156200035d57600080fd5b855194506200036f602087016200032a565b93506200037f604087016200032a565b92506200038f606087016200032a565b91506200039f608087016200032a565b90509295509295909350565b600181811c90821680620003c057607f821691505b60208210811415620003e257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051612a9162000481600039600081816102e201528181610c3a01526114e1015260008181610767015281816109ec01528181610c92015261127f01526000818161036e01528181610c6601526112a001526000818161050501528181610c0e01526113280152600081816103a201528181610be8015281816113d501526114560152612a916000f3fe60806040526004361061021a5760003560e01c8063653a819e11610123578063a71bbebe116100ab578063dd48f07d1161006f578063dd48f07d146106d1578063e985e9c5146106f5578063ef6b141a14610715578063f2fde38b14610735578063f4e2ae581461075557600080fd5b8063a71bbebe1461063c578063b88d4fde1461064f578063c23dc68f1461066f578063c87b56dd1461069c578063d4a67623146106bc57600080fd5b80638462151c116100f25780638462151c1461059c5780638da5cb5b146105c957806395d89b41146105e757806399a2557a146105fc578063a22cb4651461061c57600080fd5b8063653a819e1461052757806370a0823114610547578063715018a614610567578063750521f51461057c57600080fd5b806323b872dd116101a65780634df22a54116101755780634df22a54146104585780634df8bb45146104795780635bbb2177146104a65780636352211e146104d357806363553e7c146104f357600080fd5b806323b872dd146103c45780632a55205a146103e45780633ccfd60b1461042357806342842e0e1461043857600080fd5b80630e2351e2116101ed5780630e2351e2146102d057806317a5aced1461031957806318160ddd1461033957806322f4596f1461035c578063235b6ea11461039057600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461225b565b610789565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696107cf565b60405161024b91906122d0565b34801561028257600080fd5b506102966102913660046122e3565b610861565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612318565b6108a5565b005b3480156102dc57600080fd5b506103047f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff909116815260200161024b565b34801561032557600080fd5b506102ce610334366004612356565b610978565b34801561034557600080fd5b50600354600254035b60405190815260200161024b565b34801561036857600080fd5b506103047f000000000000000000000000000000000000000000000000000000000000000081565b34801561039c57600080fd5b5061034e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103d057600080fd5b506102ce6103df366004612389565b610a8c565b3480156103f057600080fd5b506104046103ff3660046123c5565b610a9c565b604080516001600160a01b03909316835260208301919091520161024b565b34801561042f57600080fd5b506102ce610b48565b34801561044457600080fd5b506102ce610453366004612389565b610b7e565b34801561046457600080fd5b50600a5461023f90600160a01b900460ff1681565b34801561048557600080fd5b506104996104943660046123e7565b610b99565b60405161024b9190612402565b3480156104b257600080fd5b506104c66104c13660046124bf565b610d1f565b60405161024b9190612564565b3480156104df57600080fd5b506102966104ee3660046122e3565b610de5565b3480156104ff57600080fd5b506103047f000000000000000000000000000000000000000000000000000000000000000081565b34801561053357600080fd5b506102ce6105423660046125ce565b610df0565b34801561055357600080fd5b5061034e6105623660046123e7565b610e38565b34801561057357600080fd5b506102ce610e86565b34801561058857600080fd5b506102ce61059736600461264e565b610eba565b3480156105a857600080fd5b506105bc6105b73660046123e7565b610ef7565b60405161024b9190612696565b3480156105d557600080fd5b50600a546001600160a01b0316610296565b3480156105f357600080fd5b50610269610fff565b34801561060857600080fd5b506105bc6106173660046126ce565b61100e565b34801561062857600080fd5b506102ce610637366004612711565b61118b565b6102ce61064a36600461273b565b611221565b34801561065b57600080fd5b506102ce61066a366004612756565b611576565b34801561067b57600080fd5b5061068f61068a3660046122e3565b6115c0565b60405161024b91906127d1565b3480156106a857600080fd5b506102696106b73660046122e3565b611629565b3480156106c857600080fd5b50610269611712565b3480156106dd57600080fd5b50600a5461030490600160a81b900463ffffffff1681565b34801561070157600080fd5b5061023f610710366004612806565b6117a0565b34801561072157600080fd5b506102ce610730366004612830565b6117ce565b34801561074157600080fd5b506102ce6107503660046123e7565b611816565b34801561076157600080fd5b506103047f000000000000000000000000000000000000000000000000000000000000000081565b60006001600160e01b0319821663152a902d60e11b14806107ba57506001600160e01b031982166380ac58cd60e01b145b806107c957506107c9826118ae565b92915050565b6060600480546107de9061284b565b80601f016020809104026020016040519081016040528092919081815260200182805461080a9061284b565b80156108575780601f1061082c57610100808354040283529160200191610857565b820191906000526020600020905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b600061086c826118fc565b610889576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006108b082611924565b9050806001600160a01b0316836001600160a01b031614156108e55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461091c576108ff81336117a0565b61091c576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a546001600160a01b031633146109ab5760405162461bcd60e51b81526004016109a290612886565b60405180910390fd5b80600a60158282829054906101000a900463ffffffff166109cc91906128d1565b92506101000a81548163ffffffff021916908363ffffffff1602179055507f000000000000000000000000000000000000000000000000000000000000000063ffffffff16600a60159054906101000a900463ffffffff1663ffffffff161115610a785760405162461bcd60e51b815260206004820152601b60248201527f4d6f6f6e446f67653a20457863656564206d617820737570706c79000000000060448201526064016109a2565b610a88828263ffffffff16611985565b5050565b610a9783838361199f565b505050565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b115750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610b30906001600160601b0316876128f9565b610b3a919061292e565b915196919550909350505050565b600a546001600160a01b03163314610b725760405162461bcd60e51b81526004016109a290612886565b610b7c3347611b42565b565b610a9783838360405180602001604052806000815250611576565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526040518061010001604052807f000000000000000000000000000000000000000000000000000000000000000081526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000063ffffffff168152602001610cc560025490565b63ffffffff168152602001610cfc846001600160a01b03166000908152600760205260409081902054901c6001600160401b031690565b63ffffffff168152600a54600160a01b900460ff16151560209091015292915050565b80516060906000816001600160401b03811115610d3e57610d3e612479565b604051908082528060200260200182016040528015610d8957816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610d5c5790505b50905060005b828114610ddd57610db8858281518110610dab57610dab612942565b60200260200101516115c0565b828281518110610dca57610dca612942565b6020908102919091010152600101610d8f565b509392505050565b60006107c982611924565b600a546001600160a01b03163314610e1a5760405162461bcd60e51b81526004016109a290612886565b610e35610e2f600a546001600160a01b031690565b82611c5b565b50565b60006001600160a01b038216610e61576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b600a546001600160a01b03163314610eb05760405162461bcd60e51b81526004016109a290612886565b610b7c6000611d58565b600a546001600160a01b03163314610ee45760405162461bcd60e51b81526004016109a290612886565b8051610a8890600b9060208401906121ac565b60606000806000610f0785610e38565b90506000816001600160401b03811115610f2357610f23612479565b604051908082528060200260200182016040528015610f4c578160200160208202803683370190505b509050610f72604080516060810182526000808252602082018190529181019190915290565b60005b838614610ff357610f8581611daa565b9150816040015115610f9657610feb565b81516001600160a01b031615610fab57815194505b876001600160a01b0316856001600160a01b03161415610feb5780838780600101985081518110610fde57610fde612942565b6020026020010181815250505b600101610f75565b50909695505050505050565b6060600580546107de9061284b565b606081831061103057604051631960ccad60e11b815260040160405180910390fd5b60008061103c60025490565b90508084111561104a578093505b600061105587610e38565b905084861015611074578585038181101561106e578091505b50611078565b5060005b6000816001600160401b0381111561109257611092612479565b6040519080825280602002602001820160405280156110bb578160200160208202803683370190505b509050816110ce57935061118492505050565b60006110d9886115c0565b9050600081604001516110ea575080515b885b8881141580156110fc5750848714155b156111785761110a81611daa565b925082604001511561111b57611170565b82516001600160a01b03161561113057825191505b8a6001600160a01b0316826001600160a01b03161415611170578084888060010199508151811061116357611163612942565b6020026020010181815250505b6001016110ec565b50505092835250909150505b9392505050565b6001600160a01b0382163314156111b55760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a54600160a01b900460ff1661127a5760405162461bcd60e51b815260206004820152601d60248201527f4d6f6f6e446f67653a2053616c65206973206e6f74207374617274656400000060448201526064016109a2565b6112c47f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000612958565b63ffffffff166112d360025490565b6112e39063ffffffff841661297d565b11156113265760405162461bcd60e51b8152602060048201526012602482015271135bdbdb911bd9d94e8814dbdb19081bdd5d60721b60448201526064016109a2565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168163ffffffff1611156113ad5760405162461bcd60e51b815260206004820152602260248201527f4d6f6f6e446f67653a20457863656564207472616e73616374696f6e206c696d6044820152611a5d60f21b60648201526084016109a2565b336000908152600760205260409081902054901c6001600160401b03168015611454576114007f000000000000000000000000000000000000000000000000000000000000000063ffffffff84166128f9565b34101561144f5760405162461bcd60e51b815260206004820152601c60248201527f4d6f6f6e446f67653a20696e73756666696369656e742066756e64730000000060448201526064016109a2565b6114df565b7f0000000000000000000000000000000000000000000000000000000000000000611480600184612958565b63ffffffff1661149091906128f9565b3410156114df5760405162461bcd60e51b815260206004820152601c60248201527f4d6f6f6e446f67653a20696e73756666696369656e742066756e64730000000060448201526064016109a2565b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168263ffffffff1682611518919061297d565b11156115665760405162461bcd60e51b815260206004820152601d60248201527f4d6f6f6e446f67653a204578636565642077616c6c6574206c696d697400000060448201526064016109a2565b610a88338363ffffffff16611985565b61158184848461199f565b6001600160a01b0383163b156115ba5761159d84848484611ddf565b6115ba576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060025483106116055792915050565b61160e83611daa565b90508060400151156116205792915050565b61118483611ed7565b6060611634826118fc565b61165157604051630a14c4b560e41b815260040160405180910390fd5b6000600b80546116609061284b565b80601f016020809104026020016040519081016040528092919081815260200182805461168c9061284b565b80156116d95780601f106116ae576101008083540402835291602001916116d9565b820191906000526020600020905b8154815290600101906020018083116116bc57829003601f168201915b50505050509050806116ea84611f05565b6040516020016116fb929190612995565b604051602081830303815290604052915050919050565b600b805461171f9061284b565b80601f016020809104026020016040519081016040528092919081815260200182805461174b9061284b565b80156117985780601f1061176d57610100808354040283529160200191611798565b820191906000526020600020905b81548152906001019060200180831161177b57829003601f168201915b505050505081565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146117f85760405162461bcd60e51b81526004016109a290612886565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b600a546001600160a01b031633146118405760405162461bcd60e51b81526004016109a290612886565b6001600160a01b0381166118a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a2565b610e3581611d58565b60006301ffc9a760e01b6001600160e01b0319831614806118df57506380ac58cd60e01b6001600160e01b03198316145b806107c95750506001600160e01b031916635b5e139f60e01b1490565b6000600254821080156107c9575050600090815260066020526040902054600160e01b161590565b60008160025481101561196c57600081815260066020526040902054600160e01b811661196a575b8061118457506000190160008181526006602052604090205461194c565b505b604051636f96cda160e11b815260040160405180910390fd5b610a88828260405180602001604052806000815250612002565b60006119aa82611924565b9050836001600160a01b0316816001600160a01b0316146119dd5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119fb57506119fb85336117a0565b80611a16575033611a0b84610861565b6001600160a01b0316145b905080611a3657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a5d57604051633a954ecd60e21b815260040160405180910390fd5b600083815260086020908152604080832080546001600160a01b03191690556001600160a01b038881168452600783528184208054600019019055871683528083208054600101905585835260069091529020600160e11b4260a01b861781179091558216611afa5760018301600081815260066020526040902054611af8576002548114611af85760008181526006602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80471015611b925760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109a2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bdf576040519150601f19603f3d011682016040523d82523d6000602084013e611be4565b606091505b5050905080610a975760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109a2565b6127106001600160601b0382161115611cc95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016109a2565b6001600160a01b038216611d1f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016109a2565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526000828152600660205260409020546107c990612172565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e149033908990889088906004016129bb565b602060405180830381600087803b158015611e2e57600080fd5b505af1925050508015611e5e575060408051601f3d908101601f19168201909252611e5b918101906129f8565b60015b611eb9573d808015611e8c576040519150601f19603f3d011682016040523d82523d6000602084013e611e91565b606091505b508051611eb1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051606081018252600080825260208201819052918101919091526107c9611f0083611924565b612172565b606081611f295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f535780611f3d81612a15565b9150611f4c9050600a8361292e565b9150611f2d565b6000816001600160401b03811115611f6d57611f6d612479565b6040519080825280601f01601f191660200182016040528015611f97576020820181803683370190505b5090505b8415611ecf57611fac600183612a30565b9150611fb9600a86612a47565b611fc490603061297d565b60f81b818381518110611fd957611fd9612942565b60200101906001600160f81b031916908160001a905350611ffb600a8661292e565b9450611f9b565b6002546001600160a01b03841661202b57604051622e076360e81b815260040160405180910390fd5b826120495760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526007602090815260408083208054680100000000000000018902019055848352600690915290204260a01b86176001861460e11b1790558190818501903b1561211e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120e76000878480600101955087611ddf565b612104576040516368d2bf6b60e11b815260040160405180910390fd5b80821061209c57826002541461211957600080fd5b612163565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061211f575b506002556115ba600085838684565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b8280546121b89061284b565b90600052602060002090601f0160209004810192826121da5760008555612220565b82601f106121f357805160ff1916838001178555612220565b82800160010185558215612220579182015b82811115612220578251825591602001919060010190612205565b5061222c929150612230565b5090565b5b8082111561222c5760008155600101612231565b6001600160e01b031981168114610e3557600080fd5b60006020828403121561226d57600080fd5b813561118481612245565b60005b8381101561229357818101518382015260200161227b565b838111156115ba5750506000910152565b600081518084526122bc816020860160208601612278565b601f01601f19169290920160200192915050565b60208152600061118460208301846122a4565b6000602082840312156122f557600080fd5b5035919050565b80356001600160a01b038116811461231357600080fd5b919050565b6000806040838503121561232b57600080fd5b612334836122fc565b946020939093013593505050565b803563ffffffff8116811461231357600080fd5b6000806040838503121561236957600080fd5b612372836122fc565b915061238060208401612342565b90509250929050565b60008060006060848603121561239e57600080fd5b6123a7846122fc565b92506123b5602085016122fc565b9150604084013590509250925092565b600080604083850312156123d857600080fd5b50508035926020909101359150565b6000602082840312156123f957600080fd5b611184826122fc565b60006101008201905082518252602083015163ffffffff80821660208501528060408601511660408501528060608601511660608501528060808601511660808501528060a08601511660a08501528060c08601511660c0850152505060e083015161247260e084018215159052565b5092915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156124b7576124b7612479565b604052919050565b600060208083850312156124d257600080fd5b82356001600160401b03808211156124e957600080fd5b818501915085601f8301126124fd57600080fd5b81358181111561250f5761250f612479565b8060051b915061252084830161248f565b818152918301840191848101908884111561253a57600080fd5b938501935b838510156125585784358252938501939085019061253f565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610ff3576125bb83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612580565b6000602082840312156125e057600080fd5b81356001600160601b038116811461118457600080fd5b60006001600160401b0383111561261057612610612479565b612623601f8401601f191660200161248f565b905082815283838301111561263757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561266057600080fd5b81356001600160401b0381111561267657600080fd5b8201601f8101841361268757600080fd5b611ecf848235602084016125f7565b6020808252825182820181905260009190848201906040850190845b81811015610ff3578351835292840192918401916001016126b2565b6000806000606084860312156126e357600080fd5b6126ec846122fc565b95602085013595506040909401359392505050565b8035801515811461231357600080fd5b6000806040838503121561272457600080fd5b61272d836122fc565b915061238060208401612701565b60006020828403121561274d57600080fd5b61118482612342565b6000806000806080858703121561276c57600080fd5b612775856122fc565b9350612783602086016122fc565b92506040850135915060608501356001600160401b038111156127a557600080fd5b8501601f810187136127b657600080fd5b6127c5878235602084016125f7565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016107c9565b6000806040838503121561281957600080fd5b612822836122fc565b9150612380602084016122fc565b60006020828403121561284257600080fd5b61118482612701565b600181811c9082168061285f57607f821691505b6020821081141561288057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff8083168185168083038211156128f0576128f06128bb565b01949350505050565b6000816000190483118215151615612913576129136128bb565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261293d5761293d612918565b500490565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff83811690831681811015612975576129756128bb565b039392505050565b60008219821115612990576129906128bb565b500190565b600083516129a7818460208801612278565b8351908301906128f0818360208801612278565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ee908301846122a4565b9695505050505050565b600060208284031215612a0a57600080fd5b815161118481612245565b6000600019821415612a2957612a296128bb565b5060010190565b600082821015612a4257612a426128bb565b500390565b600082612a5657612a56612918565b50069056fea26469706673582212202c74dfa2fac07758ce4a5ec3147c9d9e4f0323364a1b225a5bb16ef931e7134764736f6c6343000809003368747470733a2f2f6d696e746d6f6f6e646f67652e636f6d2f6d657461646174612f0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063653a819e11610123578063a71bbebe116100ab578063dd48f07d1161006f578063dd48f07d146106d1578063e985e9c5146106f5578063ef6b141a14610715578063f2fde38b14610735578063f4e2ae581461075557600080fd5b8063a71bbebe1461063c578063b88d4fde1461064f578063c23dc68f1461066f578063c87b56dd1461069c578063d4a67623146106bc57600080fd5b80638462151c116100f25780638462151c1461059c5780638da5cb5b146105c957806395d89b41146105e757806399a2557a146105fc578063a22cb4651461061c57600080fd5b8063653a819e1461052757806370a0823114610547578063715018a614610567578063750521f51461057c57600080fd5b806323b872dd116101a65780634df22a54116101755780634df22a54146104585780634df8bb45146104795780635bbb2177146104a65780636352211e146104d357806363553e7c146104f357600080fd5b806323b872dd146103c45780632a55205a146103e45780633ccfd60b1461042357806342842e0e1461043857600080fd5b80630e2351e2116101ed5780630e2351e2146102d057806317a5aced1461031957806318160ddd1461033957806322f4596f1461035c578063235b6ea11461039057600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461225b565b610789565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696107cf565b60405161024b91906122d0565b34801561028257600080fd5b506102966102913660046122e3565b610861565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004612318565b6108a5565b005b3480156102dc57600080fd5b506103047f000000000000000000000000000000000000000000000000000000000000001481565b60405163ffffffff909116815260200161024b565b34801561032557600080fd5b506102ce610334366004612356565b610978565b34801561034557600080fd5b50600354600254035b60405190815260200161024b565b34801561036857600080fd5b506103047f000000000000000000000000000000000000000000000000000000000000271081565b34801561039c57600080fd5b5061034e7f0000000000000000000000000000000000000000000000000011c37937e0800081565b3480156103d057600080fd5b506102ce6103df366004612389565b610a8c565b3480156103f057600080fd5b506104046103ff3660046123c5565b610a9c565b604080516001600160a01b03909316835260208301919091520161024b565b34801561042f57600080fd5b506102ce610b48565b34801561044457600080fd5b506102ce610453366004612389565b610b7e565b34801561046457600080fd5b50600a5461023f90600160a01b900460ff1681565b34801561048557600080fd5b506104996104943660046123e7565b610b99565b60405161024b9190612402565b3480156104b257600080fd5b506104c66104c13660046124bf565b610d1f565b60405161024b9190612564565b3480156104df57600080fd5b506102966104ee3660046122e3565b610de5565b3480156104ff57600080fd5b506103047f000000000000000000000000000000000000000000000000000000000000001481565b34801561053357600080fd5b506102ce6105423660046125ce565b610df0565b34801561055357600080fd5b5061034e6105623660046123e7565b610e38565b34801561057357600080fd5b506102ce610e86565b34801561058857600080fd5b506102ce61059736600461264e565b610eba565b3480156105a857600080fd5b506105bc6105b73660046123e7565b610ef7565b60405161024b9190612696565b3480156105d557600080fd5b50600a546001600160a01b0316610296565b3480156105f357600080fd5b50610269610fff565b34801561060857600080fd5b506105bc6106173660046126ce565b61100e565b34801561062857600080fd5b506102ce610637366004612711565b61118b565b6102ce61064a36600461273b565b611221565b34801561065b57600080fd5b506102ce61066a366004612756565b611576565b34801561067b57600080fd5b5061068f61068a3660046122e3565b6115c0565b60405161024b91906127d1565b3480156106a857600080fd5b506102696106b73660046122e3565b611629565b3480156106c857600080fd5b50610269611712565b3480156106dd57600080fd5b50600a5461030490600160a81b900463ffffffff1681565b34801561070157600080fd5b5061023f610710366004612806565b6117a0565b34801561072157600080fd5b506102ce610730366004612830565b6117ce565b34801561074157600080fd5b506102ce6107503660046123e7565b611816565b34801561076157600080fd5b506103047f000000000000000000000000000000000000000000000000000000000000000a81565b60006001600160e01b0319821663152a902d60e11b14806107ba57506001600160e01b031982166380ac58cd60e01b145b806107c957506107c9826118ae565b92915050565b6060600480546107de9061284b565b80601f016020809104026020016040519081016040528092919081815260200182805461080a9061284b565b80156108575780601f1061082c57610100808354040283529160200191610857565b820191906000526020600020905b81548152906001019060200180831161083a57829003601f168201915b5050505050905090565b600061086c826118fc565b610889576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b60006108b082611924565b9050806001600160a01b0316836001600160a01b031614156108e55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161461091c576108ff81336117a0565b61091c576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600a546001600160a01b031633146109ab5760405162461bcd60e51b81526004016109a290612886565b60405180910390fd5b80600a60158282829054906101000a900463ffffffff166109cc91906128d1565b92506101000a81548163ffffffff021916908363ffffffff1602179055507f000000000000000000000000000000000000000000000000000000000000000a63ffffffff16600a60159054906101000a900463ffffffff1663ffffffff161115610a785760405162461bcd60e51b815260206004820152601b60248201527f4d6f6f6e446f67653a20457863656564206d617820737570706c79000000000060448201526064016109a2565b610a88828263ffffffff16611985565b5050565b610a9783838361199f565b505050565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610b115750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610b30906001600160601b0316876128f9565b610b3a919061292e565b915196919550909350505050565b600a546001600160a01b03163314610b725760405162461bcd60e51b81526004016109a290612886565b610b7c3347611b42565b565b610a9783838360405180602001604052806000815250611576565b6040805161010081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101919091526040518061010001604052807f0000000000000000000000000000000000000000000000000011c37937e0800081526020017f000000000000000000000000000000000000000000000000000000000000001463ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000001463ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000271063ffffffff1681526020017f000000000000000000000000000000000000000000000000000000000000000a63ffffffff168152602001610cc560025490565b63ffffffff168152602001610cfc846001600160a01b03166000908152600760205260409081902054901c6001600160401b031690565b63ffffffff168152600a54600160a01b900460ff16151560209091015292915050565b80516060906000816001600160401b03811115610d3e57610d3e612479565b604051908082528060200260200182016040528015610d8957816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610d5c5790505b50905060005b828114610ddd57610db8858281518110610dab57610dab612942565b60200260200101516115c0565b828281518110610dca57610dca612942565b6020908102919091010152600101610d8f565b509392505050565b60006107c982611924565b600a546001600160a01b03163314610e1a5760405162461bcd60e51b81526004016109a290612886565b610e35610e2f600a546001600160a01b031690565b82611c5b565b50565b60006001600160a01b038216610e61576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600760205260409020546001600160401b031690565b600a546001600160a01b03163314610eb05760405162461bcd60e51b81526004016109a290612886565b610b7c6000611d58565b600a546001600160a01b03163314610ee45760405162461bcd60e51b81526004016109a290612886565b8051610a8890600b9060208401906121ac565b60606000806000610f0785610e38565b90506000816001600160401b03811115610f2357610f23612479565b604051908082528060200260200182016040528015610f4c578160200160208202803683370190505b509050610f72604080516060810182526000808252602082018190529181019190915290565b60005b838614610ff357610f8581611daa565b9150816040015115610f9657610feb565b81516001600160a01b031615610fab57815194505b876001600160a01b0316856001600160a01b03161415610feb5780838780600101985081518110610fde57610fde612942565b6020026020010181815250505b600101610f75565b50909695505050505050565b6060600580546107de9061284b565b606081831061103057604051631960ccad60e11b815260040160405180910390fd5b60008061103c60025490565b90508084111561104a578093505b600061105587610e38565b905084861015611074578585038181101561106e578091505b50611078565b5060005b6000816001600160401b0381111561109257611092612479565b6040519080825280602002602001820160405280156110bb578160200160208202803683370190505b509050816110ce57935061118492505050565b60006110d9886115c0565b9050600081604001516110ea575080515b885b8881141580156110fc5750848714155b156111785761110a81611daa565b925082604001511561111b57611170565b82516001600160a01b03161561113057825191505b8a6001600160a01b0316826001600160a01b03161415611170578084888060010199508151811061116357611163612942565b6020026020010181815250505b6001016110ec565b50505092835250909150505b9392505050565b6001600160a01b0382163314156111b55760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a54600160a01b900460ff1661127a5760405162461bcd60e51b815260206004820152601d60248201527f4d6f6f6e446f67653a2053616c65206973206e6f74207374617274656400000060448201526064016109a2565b6112c47f000000000000000000000000000000000000000000000000000000000000000a7f0000000000000000000000000000000000000000000000000000000000002710612958565b63ffffffff166112d360025490565b6112e39063ffffffff841661297d565b11156113265760405162461bcd60e51b8152602060048201526012602482015271135bdbdb911bd9d94e8814dbdb19081bdd5d60721b60448201526064016109a2565b7f000000000000000000000000000000000000000000000000000000000000001463ffffffff168163ffffffff1611156113ad5760405162461bcd60e51b815260206004820152602260248201527f4d6f6f6e446f67653a20457863656564207472616e73616374696f6e206c696d6044820152611a5d60f21b60648201526084016109a2565b336000908152600760205260409081902054901c6001600160401b03168015611454576114007f0000000000000000000000000000000000000000000000000011c37937e0800063ffffffff84166128f9565b34101561144f5760405162461bcd60e51b815260206004820152601c60248201527f4d6f6f6e446f67653a20696e73756666696369656e742066756e64730000000060448201526064016109a2565b6114df565b7f0000000000000000000000000000000000000000000000000011c37937e08000611480600184612958565b63ffffffff1661149091906128f9565b3410156114df5760405162461bcd60e51b815260206004820152601c60248201527f4d6f6f6e446f67653a20696e73756666696369656e742066756e64730000000060448201526064016109a2565b7f000000000000000000000000000000000000000000000000000000000000001463ffffffff168263ffffffff1682611518919061297d565b11156115665760405162461bcd60e51b815260206004820152601d60248201527f4d6f6f6e446f67653a204578636565642077616c6c6574206c696d697400000060448201526064016109a2565b610a88338363ffffffff16611985565b61158184848461199f565b6001600160a01b0383163b156115ba5761159d84848484611ddf565b6115ba576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810183905290915060025483106116055792915050565b61160e83611daa565b90508060400151156116205792915050565b61118483611ed7565b6060611634826118fc565b61165157604051630a14c4b560e41b815260040160405180910390fd5b6000600b80546116609061284b565b80601f016020809104026020016040519081016040528092919081815260200182805461168c9061284b565b80156116d95780601f106116ae576101008083540402835291602001916116d9565b820191906000526020600020905b8154815290600101906020018083116116bc57829003601f168201915b50505050509050806116ea84611f05565b6040516020016116fb929190612995565b604051602081830303815290604052915050919050565b600b805461171f9061284b565b80601f016020809104026020016040519081016040528092919081815260200182805461174b9061284b565b80156117985780601f1061176d57610100808354040283529160200191611798565b820191906000526020600020905b81548152906001019060200180831161177b57829003601f168201915b505050505081565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146117f85760405162461bcd60e51b81526004016109a290612886565b600a8054911515600160a01b0260ff60a01b19909216919091179055565b600a546001600160a01b031633146118405760405162461bcd60e51b81526004016109a290612886565b6001600160a01b0381166118a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a2565b610e3581611d58565b60006301ffc9a760e01b6001600160e01b0319831614806118df57506380ac58cd60e01b6001600160e01b03198316145b806107c95750506001600160e01b031916635b5e139f60e01b1490565b6000600254821080156107c9575050600090815260066020526040902054600160e01b161590565b60008160025481101561196c57600081815260066020526040902054600160e01b811661196a575b8061118457506000190160008181526006602052604090205461194c565b505b604051636f96cda160e11b815260040160405180910390fd5b610a88828260405180602001604052806000815250612002565b60006119aa82611924565b9050836001600160a01b0316816001600160a01b0316146119dd5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119fb57506119fb85336117a0565b80611a16575033611a0b84610861565b6001600160a01b0316145b905080611a3657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a5d57604051633a954ecd60e21b815260040160405180910390fd5b600083815260086020908152604080832080546001600160a01b03191690556001600160a01b038881168452600783528184208054600019019055871683528083208054600101905585835260069091529020600160e11b4260a01b861781179091558216611afa5760018301600081815260066020526040902054611af8576002548114611af85760008181526006602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b80471015611b925760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109a2565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611bdf576040519150601f19603f3d011682016040523d82523d6000602084013e611be4565b606091505b5050905080610a975760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109a2565b6127106001600160601b0382161115611cc95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084016109a2565b6001600160a01b038216611d1f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016109a2565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526000828152600660205260409020546107c990612172565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e149033908990889088906004016129bb565b602060405180830381600087803b158015611e2e57600080fd5b505af1925050508015611e5e575060408051601f3d908101601f19168201909252611e5b918101906129f8565b60015b611eb9573d808015611e8c576040519150601f19603f3d011682016040523d82523d6000602084013e611e91565b606091505b508051611eb1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60408051606081018252600080825260208201819052918101919091526107c9611f0083611924565b612172565b606081611f295750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f535780611f3d81612a15565b9150611f4c9050600a8361292e565b9150611f2d565b6000816001600160401b03811115611f6d57611f6d612479565b6040519080825280601f01601f191660200182016040528015611f97576020820181803683370190505b5090505b8415611ecf57611fac600183612a30565b9150611fb9600a86612a47565b611fc490603061297d565b60f81b818381518110611fd957611fd9612942565b60200101906001600160f81b031916908160001a905350611ffb600a8661292e565b9450611f9b565b6002546001600160a01b03841661202b57604051622e076360e81b815260040160405180910390fd5b826120495760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526007602090815260408083208054680100000000000000018902019055848352600690915290204260a01b86176001861460e11b1790558190818501903b1561211e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120e76000878480600101955087611ddf565b612104576040516368d2bf6b60e11b815260040160405180910390fd5b80821061209c57826002541461211957600080fd5b612163565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061211f575b506002556115ba600085838684565b604080516060810182526001600160a01b038316815260a083901c6001600160401b03166020820152600160e01b90921615159082015290565b8280546121b89061284b565b90600052602060002090601f0160209004810192826121da5760008555612220565b82601f106121f357805160ff1916838001178555612220565b82800160010185558215612220579182015b82811115612220578251825591602001919060010190612205565b5061222c929150612230565b5090565b5b8082111561222c5760008155600101612231565b6001600160e01b031981168114610e3557600080fd5b60006020828403121561226d57600080fd5b813561118481612245565b60005b8381101561229357818101518382015260200161227b565b838111156115ba5750506000910152565b600081518084526122bc816020860160208601612278565b601f01601f19169290920160200192915050565b60208152600061118460208301846122a4565b6000602082840312156122f557600080fd5b5035919050565b80356001600160a01b038116811461231357600080fd5b919050565b6000806040838503121561232b57600080fd5b612334836122fc565b946020939093013593505050565b803563ffffffff8116811461231357600080fd5b6000806040838503121561236957600080fd5b612372836122fc565b915061238060208401612342565b90509250929050565b60008060006060848603121561239e57600080fd5b6123a7846122fc565b92506123b5602085016122fc565b9150604084013590509250925092565b600080604083850312156123d857600080fd5b50508035926020909101359150565b6000602082840312156123f957600080fd5b611184826122fc565b60006101008201905082518252602083015163ffffffff80821660208501528060408601511660408501528060608601511660608501528060808601511660808501528060a08601511660a08501528060c08601511660c0850152505060e083015161247260e084018215159052565b5092915050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156124b7576124b7612479565b604052919050565b600060208083850312156124d257600080fd5b82356001600160401b03808211156124e957600080fd5b818501915085601f8301126124fd57600080fd5b81358181111561250f5761250f612479565b8060051b915061252084830161248f565b818152918301840191848101908884111561253a57600080fd5b938501935b838510156125585784358252938501939085019061253f565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610ff3576125bb83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b9284019260609290920191600101612580565b6000602082840312156125e057600080fd5b81356001600160601b038116811461118457600080fd5b60006001600160401b0383111561261057612610612479565b612623601f8401601f191660200161248f565b905082815283838301111561263757600080fd5b828260208301376000602084830101529392505050565b60006020828403121561266057600080fd5b81356001600160401b0381111561267657600080fd5b8201601f8101841361268757600080fd5b611ecf848235602084016125f7565b6020808252825182820181905260009190848201906040850190845b81811015610ff3578351835292840192918401916001016126b2565b6000806000606084860312156126e357600080fd5b6126ec846122fc565b95602085013595506040909401359392505050565b8035801515811461231357600080fd5b6000806040838503121561272457600080fd5b61272d836122fc565b915061238060208401612701565b60006020828403121561274d57600080fd5b61118482612342565b6000806000806080858703121561276c57600080fd5b612775856122fc565b9350612783602086016122fc565b92506040850135915060608501356001600160401b038111156127a557600080fd5b8501601f810187136127b657600080fd5b6127c5878235602084016125f7565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016107c9565b6000806040838503121561281957600080fd5b612822836122fc565b9150612380602084016122fc565b60006020828403121561284257600080fd5b61118482612701565b600181811c9082168061285f57607f821691505b6020821081141561288057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600063ffffffff8083168185168083038211156128f0576128f06128bb565b01949350505050565b6000816000190483118215151615612913576129136128bb565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261293d5761293d612918565b500490565b634e487b7160e01b600052603260045260246000fd5b600063ffffffff83811690831681811015612975576129756128bb565b039392505050565b60008219821115612990576129906128bb565b500190565b600083516129a7818460208801612278565b8351908301906128f0818360208801612278565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ee908301846122a4565b9695505050505050565b600060208284031215612a0a57600080fd5b815161118481612245565b6000600019821415612a2957612a296128bb565b5060010190565b600082821015612a4257612a426128bb565b500390565b600082612a5657612a56612918565b50069056fea26469706673582212202c74dfa2fac07758ce4a5ec3147c9d9e4f0323364a1b225a5bb16ef931e7134764736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : price (uint256): 5000000000000000
Arg [1] : maxSupply (uint32): 10000
Arg [2] : txLimit (uint32): 20
Arg [3] : walletLimit (uint32): 20
Arg [4] : teamReserved (uint32): 10

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a


Deployed Bytecode Sourcemap

72990:3578:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75587:299;;;;;;;;;;-1:-1:-1;75587:299:0;;;;;:::i;:::-;;:::i;:::-;;;661:14:1;;654:22;636:41;;624:2;609:18;75587:299:0;;;;;;;;18086:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20154:204::-;;;;;;;;;;-1:-1:-1;20154:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1788:32:1;;;1770:51;;1758:2;1743:18;20154:204:0;1624:203:1;19614:474:0;;;;;;;;;;-1:-1:-1;19614:474:0;;;;;:::i;:::-;;:::i;:::-;;73289:36;;;;;;;;;;;;;;;;;;2443:10:1;2431:23;;;2413:42;;2401:2;2386:18;73289:36:0;2269:192:1;75894:215:0;;;;;;;;;;-1:-1:-1;75894:215:0;;;;;:::i;:::-;;:::i;12127:315::-;;;;;;;;;;-1:-1:-1;12393:12:0;;12377:13;;:28;12127:315;;;3043:25:1;;;3031:2;3016:18;12127:315:0;2897:177:1;73204:34:0;;;;;;;;;;;;;;;73127:31;;;;;;;;;;;;;;;21040:170;;;;;;;;;;-1:-1:-1;21040:170:0;;;;;:::i;:::-;;:::i;62123:442::-;;;;;;;;;;-1:-1:-1;62123:442:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3857:32:1;;;3839:51;;3921:2;3906:18;;3899:34;;;;3812:18;62123:442:0;3665:274:1;76455:110:0;;;;;;;;;;;;;:::i;21281:185::-;;;;;;;;;;-1:-1:-1;21281:185:0;;;;;:::i;:::-;;:::i;73334:20::-;;;;;;;;;;-1:-1:-1;73334:20:0;;;;-1:-1:-1;;;73334:20:0;;;;;;74783:498;;;;;;;;;;-1:-1:-1;74783:498:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42285:468::-;;;;;;;;;;-1:-1:-1;42285:468:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;17875:144::-;;;;;;;;;;-1:-1:-1;17875:144:0;;;;;:::i;:::-;;:::i;73165:32::-;;;;;;;;;;;;;;;76117:125;;;;;;;;;;-1:-1:-1;76117:125:0;;;;;:::i;:::-;;:::i;13752:224::-;;;;;;;;;;-1:-1:-1;13752:224:0;;;;;:::i;:::-;;:::i;67270:103::-;;;;;;;;;;;;;:::i;76348:99::-;;;;;;;;;;-1:-1:-1;76348:99:0;;;;;:::i;:::-;;:::i;46097:892::-;;;;;;;;;;-1:-1:-1;46097:892:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;66619:87::-;;;;;;;;;;-1:-1:-1;66692:6:0;;-1:-1:-1;;;;;66692:6:0;66619:87;;18255:104;;;;;;;;;;;;;:::i;43143:2505::-;;;;;;;;;;-1:-1:-1;43143:2505:0;;;;;:::i;:::-;;:::i;20430:308::-;;;;;;;;;;-1:-1:-1;20430:308:0;;;;;:::i;:::-;;:::i;74076:699::-;;;;;;:::i;:::-;;:::i;21537:396::-;;;;;;;;;;-1:-1:-1;21537:396:0;;;;;:::i;:::-;;:::i;41706:420::-;;;;;;;;;;-1:-1:-1;41706:420:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;75289:290::-;;;;;;;;;;-1:-1:-1;75289:290:0;;;;;:::i;:::-;;:::i;73393:65::-;;;;;;;;;;;;;:::i;73361:25::-;;;;;;;;;;-1:-1:-1;73361:25:0;;;;-1:-1:-1;;;73361:25:0;;;;;;20809:164;;;;;;;;;;-1:-1:-1;20809:164:0;;;;;:::i;:::-;;:::i;76250:90::-;;;;;;;;;;-1:-1:-1;76250:90:0;;;;;:::i;:::-;;:::i;67528:201::-;;;;;;;;;;-1:-1:-1;67528:201:0;;;;;:::i;:::-;;:::i;73245:37::-;;;;;;;;;;;;;;;75587:299;75690:4;-1:-1:-1;;;;;;75727:41:0;;-1:-1:-1;;;75727:41:0;;:98;;-1:-1:-1;;;;;;;75785:40:0;;-1:-1:-1;;;75785:40:0;75727:98;:151;;;;75842:36;75866:11;75842:23;:36::i;:::-;75707:171;75587:299;-1:-1:-1;;75587:299:0:o;18086:100::-;18140:13;18173:5;18166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18086:100;:::o;20154:204::-;20222:7;20247:16;20255:7;20247;:16::i;:::-;20242:64;;20272:34;;-1:-1:-1;;;20272:34:0;;;;;;;;;;;20242:64;-1:-1:-1;20326:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20326:24:0;;20154:204::o;19614:474::-;19687:13;19719:27;19738:7;19719:18;:27::i;:::-;19687:61;;19769:5;-1:-1:-1;;;;;19763:11:0;:2;-1:-1:-1;;;;;19763:11:0;;19759:48;;;19783:24;;-1:-1:-1;;;19783:24:0;;;;;;;;;;;19759:48;36257:10;-1:-1:-1;;;;;19824:28:0;;;19820:175;;19872:44;19889:5;36257:10;20809:164;:::i;19872:44::-;19867:128;;19944:35;;-1:-1:-1;;;19944:35:0;;;;;;;;;;;19867:128;20007:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20007:29:0;-1:-1:-1;;;;;20007:29:0;;;;;;;;;20052:28;;20007:24;;20052:28;;;;;;;19676:412;19614:474;;:::o;75894:215::-;66692:6;;-1:-1:-1;;;;;66692:6:0;36257:10;66839:23;66831:68;;;;-1:-1:-1;;;66831:68:0;;;;;;;:::i;:::-;;;;;;;;;75983:6:::1;75968:11;;:21;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;76024:13;76009:28;;:11;;;;;;;;;;;:28;;;;76000:69;;;::::0;-1:-1:-1;;;76000:69:0;;12818:2:1;76000:69:0::1;::::0;::::1;12800:21:1::0;12857:2;12837:18;;;12830:30;12896:29;12876:18;;;12869:57;12943:18;;76000:69:0::1;12616:351:1::0;76000:69:0::1;76080:21;76090:2;76094:6;76080:21;;:9;:21::i;:::-;75894:215:::0;;:::o;21040:170::-;21174:28;21184:4;21190:2;21194:7;21174:9;:28::i;:::-;21040:170;;;:::o;62123:442::-;62220:7;62278:27;;;:17;:27;;;;;;;;62249:56;;;;;;;;;-1:-1:-1;;;;;62249:56:0;;;;;-1:-1:-1;;;62249:56:0;;;-1:-1:-1;;;;;62249:56:0;;;;;;;;62220:7;;62318:92;;-1:-1:-1;62369:29:0;;;;;;;;;-1:-1:-1;62369:29:0;-1:-1:-1;;;;;62369:29:0;;;;-1:-1:-1;;;62369:29:0;;-1:-1:-1;;;;;62369:29:0;;;;;62318:92;62460:23;;;;62422:21;;62931:5;;62447:36;;-1:-1:-1;;;;;62447:36:0;:10;:36;:::i;:::-;62446:58;;;;:::i;:::-;62525:16;;;;;-1:-1:-1;62123:442:0;;-1:-1:-1;;;;62123:442:0:o;76455:110::-;66692:6;;-1:-1:-1;;;;;66692:6:0;36257:10;66839:23;66831:68;;;;-1:-1:-1;;;66831:68:0;;;;;;;:::i;:::-;76505:52:::1;76513:10;76535:21;76505:29;:52::i;:::-;76455:110::o:0;21281:185::-;21419:39;21436:4;21442:2;21446:7;21419:39;;;;;;;;;;;;:16;:39::i;74783:498::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74889:384:0;;;;;;;;74927:6;74889:384;;;;74961:8;74889:384;;;;;;75001:12;74889:384;;;;;;75043:10;74889:384;;;;;;75086:13;74889:384;;;;;;75138:22;12775:13;;;12540:285;75138:22;74889:384;;;;;;75199:21;75213:6;-1:-1:-1;;;;;14147:25:0;14119:7;14147:25;;;:18;:25;;9228:2;14147:25;;;;;:49;;-1:-1:-1;;;;;14146:80:0;;14058:176;75199:21;74889:384;;;;75249:8;;-1:-1:-1;;;75249:8:0;;;;74889:384;;;;;;;74869:404;;-1:-1:-1;;74783:498:0:o;42285:468::-;42460:15;;42374:23;;42435:22;42460:15;-1:-1:-1;;;;;42527:36:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;42527:36:0;;-1:-1:-1;;42527:36:0;;;;;;;;;;;;42490:73;;42583:9;42578:125;42599:14;42594:1;:19;42578:125;;42655:32;42675:8;42684:1;42675:11;;;;;;;;:::i;:::-;;;;;;;42655:19;:32::i;:::-;42639:10;42650:1;42639:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;42615:3;;42578:125;;;-1:-1:-1;42724:10:0;42285:468;-1:-1:-1;;;42285:468:0:o;17875:144::-;17939:7;17982:27;18001:7;17982:18;:27::i;76117:125::-;66692:6;;-1:-1:-1;;;;;66692:6:0;36257:10;66839:23;66831:68;;;;-1:-1:-1;;;66831:68:0;;;;;;;:::i;:::-;76193:41:::1;76212:7;66692:6:::0;;-1:-1:-1;;;;;66692:6:0;;66619:87;76212:7:::1;76221:12;76193:18;:41::i;:::-;76117:125:::0;:::o;13752:224::-;13816:7;-1:-1:-1;;;;;13840:19:0;;13836:60;;13868:28;;-1:-1:-1;;;13868:28:0;;;;;;;;;;;13836:60;-1:-1:-1;;;;;;13914:25:0;;;;;:18;:25;;;;;;-1:-1:-1;;;;;13914:54:0;;13752:224::o;67270:103::-;66692:6;;-1:-1:-1;;;;;66692:6:0;36257:10;66839:23;66831:68;;;;-1:-1:-1;;;66831:68:0;;;;;;;:::i;:::-;67335:30:::1;67362:1;67335:18;:30::i;76348:99::-:0;66692:6;;-1:-1:-1;;;;;66692:6:0;36257:10;66839:23;66831:68;;;;-1:-1:-1;;;66831:68:0;;;;;;;:::i;:::-;76421:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;46097:892::-:0;46167:16;46221:19;46255:25;46295:22;46320:16;46330:5;46320:9;:16::i;:::-;46295:41;;46351:25;46393:14;-1:-1:-1;;;;;46379:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46379:29:0;;46351:57;;46423:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;46423:31:0;46474:9;46469:472;46518:14;46503:11;:29;46469:472;;46570:15;46583:1;46570:12;:15::i;:::-;46558:27;;46608:9;:16;;;46604:73;;;46649:8;;46604:73;46699:14;;-1:-1:-1;;;;;46699:28:0;;46695:111;;46772:14;;;-1:-1:-1;46695:111:0;46849:5;-1:-1:-1;;;;;46828:26:0;:17;-1:-1:-1;;;;;46828:26:0;;46824:102;;;46905:1;46879:8;46888:13;;;;;;46879:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;46824:102;46534:3;;46469:472;;;-1:-1:-1;46962:8:0;;46097:892;-1:-1:-1;;;;;;46097:892:0:o;18255:104::-;18311:13;18344:7;18337:14;;;;;:::i;43143:2505::-;43278:16;43345:4;43336:5;:13;43332:45;;43358:19;;-1:-1:-1;;;43358:19:0;;;;;;;;;;;43332:45;43392:19;43426:17;43446:14;11895:13;;;11821:95;43446:14;43426:34;-1:-1:-1;43697:9:0;43690:4;:16;43686:73;;;43734:9;43727:16;;43686:73;43773:25;43801:16;43811:5;43801:9;:16::i;:::-;43773:44;;43995:4;43987:5;:12;43983:278;;;44042:12;;;44077:31;;;44073:111;;;44153:11;44133:31;;44073:111;44001:198;43983:278;;;-1:-1:-1;44244:1:0;43983:278;44275:25;44317:17;-1:-1:-1;;;;;44303:32:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44303:32:0;-1:-1:-1;44275:60:0;-1:-1:-1;44354:22:0;44350:78;;44404:8;-1:-1:-1;44397:15:0;;-1:-1:-1;;;44397:15:0;44350:78;44572:31;44606:26;44626:5;44606:19;:26::i;:::-;44572:60;;44647:25;44892:9;:16;;;44887:92;;-1:-1:-1;44949:14:0;;44887:92;45010:5;44993:478;45022:4;45017:1;:9;;:45;;;;;45045:17;45030:11;:32;;45017:45;44993:478;;;45100:15;45113:1;45100:12;:15::i;:::-;45088:27;;45138:9;:16;;;45134:73;;;45179:8;;45134:73;45229:14;;-1:-1:-1;;;;;45229:28:0;;45225:111;;45302:14;;;-1:-1:-1;45225:111:0;45379:5;-1:-1:-1;;;;;45358:26:0;:17;-1:-1:-1;;;;;45358:26:0;;45354:102;;;45435:1;45409:8;45418:13;;;;;;45409:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;45354:102;45064:3;;44993:478;;;-1:-1:-1;;;45556:29:0;;;-1:-1:-1;45563:8:0;;-1:-1:-1;;43143:2505:0;;;;;;:::o;20430:308::-;-1:-1:-1;;;;;20529:31:0;;36257:10;20529:31;20525:61;;;20569:17;;-1:-1:-1;;;20569:17:0;;;;;;;;;;;20525:61;36257:10;20599:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20599:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20599:60:0;;;;;;;;;;20675:55;;636:41:1;;;20599:49:0;;36257:10;20675:55;;609:18:1;20675:55:0;;;;;;;20430:308;;:::o;74076:699::-;74141:8;;-1:-1:-1;;;74141:8:0;;;;74133:50;;;;-1:-1:-1;;;74133:50:0;;13736:2:1;74133:50:0;;;13718:21:1;13775:2;13755:18;;;13748:30;13814:31;13794:18;;;13787:59;13863:18;;74133:50:0;13534:353:1;74133:50:0;74229:26;74242:13;74229:10;:26;:::i;:::-;74202:53;;74211:14;12775:13;;;12540:285;74211:14;74202:23;;;;;;:::i;:::-;:53;;74194:84;;;;-1:-1:-1;;;74194:84:0;;14453:2:1;74194:84:0;;;14435:21:1;14492:2;14472:18;;;14465:30;-1:-1:-1;;;14511:18:1;;;14504:48;14569:18;;74194:84:0;14251:342:1;74194:84:0;74307:8;74297:18;;:6;:18;;;;74289:65;;;;-1:-1:-1;;;74289:65:0;;14800:2:1;74289:65:0;;;14782:21:1;14839:2;14819:18;;;14812:30;14878:34;14858:18;;;14851:62;-1:-1:-1;;;14929:18:1;;;14922:32;14971:19;;74289:65:0;14598:398:1;74289:65:0;74398:10;74367:14;14147:25;;;:18;:25;;9228:2;14147:25;;;;;:49;;-1:-1:-1;;;;;14146:80:0;74424:10;;74420:220;;74472:15;74481:6;74472:15;;;;:::i;:::-;74459:9;:28;;74451:69;;;;-1:-1:-1;;;74451:69:0;;15203:2:1;74451:69:0;;;15185:21:1;15242:2;15222:18;;;15215:30;15281;15261:18;;;15254:58;15329:18;;74451:69:0;15001:352:1;74451:69:0;74420:220;;;74589:6;74575:10;74584:1;74575:6;:10;:::i;:::-;74574:21;;;;;;:::i;:::-;74561:9;:34;;74553:75;;;;-1:-1:-1;;;74553:75:0;;15203:2:1;74553:75:0;;;15185:21:1;15242:2;15222:18;;;15215:30;15281;15261:18;;;15254:58;15329:18;;74553:75:0;15001:352:1;74553:75:0;74679:12;74660:31;;74669:6;74660:15;;:6;:15;;;;:::i;:::-;:31;;74652:73;;;;-1:-1:-1;;;74652:73:0;;15560:2:1;74652:73:0;;;15542:21:1;15599:2;15579:18;;;15572:30;15638:31;15618:18;;;15611:59;15687:18;;74652:73:0;15358:353:1;74652:73:0;74738:29;74748:10;74760:6;74738:29;;:9;:29::i;21537:396::-;21704:28;21714:4;21720:2;21724:7;21704:9;:28::i;:::-;-1:-1:-1;;;;;21747:14:0;;;:19;21743:183;;21786:56;21817:4;21823:2;21827:7;21836:5;21786:30;:56::i;:::-;21781:145;;21870:40;;-1:-1:-1;;;21870:40:0;;;;;;;;;;;21781:145;21537:396;;;;:::o;41706:420::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11895:13:0;;41891:7;:25;41858:103;;41940:9;41706:420;-1:-1:-1;;41706:420:0:o;41858:103::-;41983:21;41996:7;41983:12;:21::i;:::-;41971:33;;42019:9;:16;;;42015:65;;;42059:9;41706:420;-1:-1:-1;;41706:420:0:o;42015:65::-;42097:21;42110:7;42097:12;:21::i;75289:290::-;75362:13;75393:16;75401:7;75393;:16::i;:::-;75388:59;;75418:29;;-1:-1:-1;;;75418:29:0;;;;;;;;;;;75388:59;75460:21;75484:12;75460:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75538:7;75547:18;:7;:16;:18::i;:::-;75521:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75507:64;;;75289:290;;;:::o;73393:65::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20809:164::-;-1:-1:-1;;;;;20930:25:0;;;20906:4;20930:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20809:164::o;76250:90::-;66692:6;;-1:-1:-1;;;;;66692:6:0;36257:10;66839:23;66831:68;;;;-1:-1:-1;;;66831:68:0;;;;;;;:::i;:::-;76314:8:::1;:18:::0;;;::::1;;-1:-1:-1::0;;;76314:18:0::1;-1:-1:-1::0;;;;76314:18:0;;::::1;::::0;;;::::1;::::0;;76250:90::o;67528:201::-;66692:6;;-1:-1:-1;;;;;66692:6:0;36257:10;66839:23;66831:68;;;;-1:-1:-1;;;66831:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;67617:22:0;::::1;67609:73;;;::::0;-1:-1:-1;;;67609:73:0;;16494:2:1;67609:73:0::1;::::0;::::1;16476:21:1::0;16533:2;16513:18;;;16506:30;16572:34;16552:18;;;16545:62;-1:-1:-1;;;16623:18:1;;;16616:36;16669:19;;67609:73:0::1;16292:402:1::0;67609:73:0::1;67693:28;67712:8;67693:18;:28::i;13073:615::-:0;13158:4;-1:-1:-1;;;;;;;;;13458:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13535:25:0;;;13458:102;:179;;;-1:-1:-1;;;;;;;;13612:25:0;-1:-1:-1;;;13612:25:0;;13073:615::o;22188:273::-;22245:4;22335:13;;22325:7;:23;22282:152;;;;-1:-1:-1;;22386:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22386:43:0;:48;;22188:273::o;15390:1129::-;15457:7;15492;15594:13;;15587:4;:20;15583:869;;;15632:14;15649:23;;;:17;:23;;;;;;-1:-1:-1;;;15738:23:0;;15734:699;;16257:113;16264:11;16257:113;;-1:-1:-1;;;16335:6:0;16317:25;;;;:17;:25;;;;;;16257:113;;15734:699;15609:843;15583:869;16480:31;;-1:-1:-1;;;16480:31:0;;;;;;;;;;;22545:104;22614:27;22624:2;22628:8;22614:27;;;;;;;;;;;;:9;:27::i;27427:2515::-;27542:27;27572;27591:7;27572:18;:27::i;:::-;27542:57;;27657:4;-1:-1:-1;;;;;27616:45:0;27632:19;-1:-1:-1;;;;;27616:45:0;;27612:86;;27670:28;;-1:-1:-1;;;27670:28:0;;;;;;;;;;;27612:86;27711:22;36257:10;-1:-1:-1;;;;;27737:27:0;;;;:87;;-1:-1:-1;27781:43:0;27798:4;36257:10;20809:164;:::i;27781:43::-;27737:147;;;-1:-1:-1;36257:10:0;27841:20;27853:7;27841:11;:20::i;:::-;-1:-1:-1;;;;;27841:43:0;;27737:147;27711:174;;27903:17;27898:66;;27929:35;;-1:-1:-1;;;27929:35:0;;;;;;;;;;;27898:66;-1:-1:-1;;;;;27979:16:0;;27975:52;;28004:23;;-1:-1:-1;;;28004:23:0;;;;;;;;;;;27975:52;28156:24;;;;:15;:24;;;;;;;;28149:31;;-1:-1:-1;;;;;;28149:31:0;;;-1:-1:-1;;;;;28548:24:0;;;;;:18;:24;;;;;28546:26;;-1:-1:-1;;28546:26:0;;;28617:22;;;;;;;28615:24;;-1:-1:-1;28615:24:0;;;28910:26;;;:17;:26;;;;;-1:-1:-1;;;28998:15:0;9745:3;28998:41;28956:84;;:128;;28910:174;;;29204:46;;29200:626;;29308:1;29298:11;;29276:19;29431:30;;;:17;:30;;;;;;29427:384;;29569:13;;29554:11;:28;29550:242;;29716:30;;;;:17;:30;;;;;:52;;;29550:242;29257:569;29200:626;29873:7;29869:2;-1:-1:-1;;;;;29854:27:0;29863:4;-1:-1:-1;;;;;29854:27:0;;;;;;;;;;;27531:2411;;27427:2515;;;:::o;51614:317::-;51729:6;51704:21;:31;;51696:73;;;;-1:-1:-1;;;51696:73:0;;16901:2:1;51696:73:0;;;16883:21:1;16940:2;16920:18;;;16913:30;16979:31;16959:18;;;16952:59;17028:18;;51696:73:0;16699:353:1;51696:73:0;51783:12;51801:9;-1:-1:-1;;;;;51801:14:0;51823:6;51801:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51782:52;;;51853:7;51845:78;;;;-1:-1:-1;;;51845:78:0;;17469:2:1;51845:78:0;;;17451:21:1;17508:2;17488:18;;;17481:30;17547:34;17527:18;;;17520:62;17618:28;17598:18;;;17591:56;17664:19;;51845:78:0;17267:422:1;63215:332:0;62931:5;-1:-1:-1;;;;;63318:33:0;;;;63310:88;;;;-1:-1:-1;;;63310:88:0;;17896:2:1;63310:88:0;;;17878:21:1;17935:2;17915:18;;;17908:30;17974:34;17954:18;;;17947:62;-1:-1:-1;;;18025:18:1;;;18018:40;18075:19;;63310:88:0;17694:406:1;63310:88:0;-1:-1:-1;;;;;63417:22:0;;63409:60;;;;-1:-1:-1;;;63409:60:0;;18307:2:1;63409:60:0;;;18289:21:1;18346:2;18326:18;;;18319:30;18385:27;18365:18;;;18358:55;18430:18;;63409:60:0;18105:349:1;63409:60:0;63504:35;;;;;;;;;-1:-1:-1;;;;;63504:35:0;;;;;;-1:-1:-1;;;;;63504:35:0;;;;;;;;;;-1:-1:-1;;;63482:57:0;;;;-1:-1:-1;63482:57:0;63215:332::o;67889:191::-;67982:6;;;-1:-1:-1;;;;;67999:17:0;;;-1:-1:-1;;;;;;67999:17:0;;;;;;;68032:40;;67982:6;;;67999:17;67982:6;;68032:40;;67963:16;;68032:40;67952:128;67889:191;:::o;16999:153::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;17119:24:0;;;;:17;:24;;;;;;17100:44;;:18;:44::i;33639:716::-;33823:88;;-1:-1:-1;;;33823:88:0;;33802:4;;-1:-1:-1;;;;;33823:45:0;;;;;:88;;36257:10;;33890:4;;33896:7;;33905:5;;33823:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33823:88:0;;;;;;;;-1:-1:-1;;33823:88:0;;;;;;;;;;;;:::i;:::-;;;33819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34106:13:0;;34102:235;;34152:40;;-1:-1:-1;;;34152:40:0;;;;;;;;;;;34102:235;34295:6;34289:13;34280:6;34276:2;34272:15;34265:38;33819:529;-1:-1:-1;;;;;;33982:64:0;-1:-1:-1;;;33982:64:0;;-1:-1:-1;33819:529:0;33639:716;;;;;;:::o;17655:158::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;17758:47:0;17777:27;17796:7;17777:18;:27::i;:::-;17758:18;:47::i;47361:723::-;47417:13;47638:10;47634:53;;-1:-1:-1;;47665:10:0;;;;;;;;;;;;-1:-1:-1;;;47665:10:0;;;;;47361:723::o;47634:53::-;47712:5;47697:12;47753:78;47760:9;;47753:78;;47786:8;;;;:::i;:::-;;-1:-1:-1;47809:10:0;;-1:-1:-1;47817:2:0;47809:10;;:::i;:::-;;;47753:78;;;47841:19;47873:6;-1:-1:-1;;;;;47863:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47863:17:0;;47841:39;;47891:154;47898:10;;47891:154;;47925:11;47935:1;47925:11;;:::i;:::-;;-1:-1:-1;47994:10:0;48002:2;47994:5;:10;:::i;:::-;47981:24;;:2;:24;:::i;:::-;47968:39;;47951:6;47958;47951:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;47951:56:0;;;;;;;;-1:-1:-1;48022:11:0;48031:2;48022:11;;:::i;:::-;;;47891:154;;23022:2236;23168:13;;-1:-1:-1;;;;;23196:16:0;;23192:48;;23221:19;;-1:-1:-1;;;23221:19:0;;;;;;;;;;;23192:48;23255:13;23251:44;;23277:18;;-1:-1:-1;;;23277:18:0;;;;;;;;;;;23251:44;-1:-1:-1;;;;;23844:22:0;;;;;;:18;:22;;;;9228:2;23844:22;;;:70;;23882:31;23870:44;;23844:70;;;24157:31;;;:17;:31;;;;;24250:15;9745:3;24250:41;24208:84;;-1:-1:-1;24328:13:0;;10008:3;24313:56;24208:162;24157:213;;:31;;24451:23;;;;24495:14;:19;24491:635;;24535:313;24566:38;;24591:12;;-1:-1:-1;;;;;24566:38:0;;;24583:1;;24566:38;;24583:1;;24566:38;24632:69;24671:1;24675:2;24679:14;;;;;;24695:5;24632:30;:69::i;:::-;24627:174;;24737:40;;-1:-1:-1;;;24737:40:0;;;;;;;;;;;24627:174;24843:3;24828:12;:18;24535:313;;24929:12;24912:13;;:29;24908:43;;24943:8;;;24908:43;24491:635;;;24992:119;25023:40;;25048:14;;;;;-1:-1:-1;;;;;25023:40:0;;;25040:1;;25023:40;;25040:1;;25023:40;25106:3;25091:12;:18;24992:119;;24491:635;-1:-1:-1;25140:13:0;:28;25190:60;25219:1;25223:2;25227:12;25241:8;25190:60;:::i;16613:295::-;-1:-1:-1;;;;;;;;;;;;;16723:41:0;;;;9745:3;16809:32;;;-1:-1:-1;;;;;16775:67:0;-1:-1:-1;;;16775:67:0;-1:-1:-1;;;16872:23:0;;;:28;;-1:-1:-1;;;16853:47:0;-1:-1:-1;16613:295:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;688:258::-;760:1;770:113;784:6;781:1;778:13;770:113;;;860:11;;;854:18;841:11;;;834:39;806:2;799:10;770:113;;;901:6;898:1;895:13;892:48;;;-1:-1:-1;;936:1:1;918:16;;911:27;688:258::o;951:::-;993:3;1031:5;1025:12;1058:6;1053:3;1046:19;1074:63;1130:6;1123:4;1118:3;1114:14;1107:4;1100:5;1096:16;1074:63;:::i;:::-;1191:2;1170:15;-1:-1:-1;;1166:29:1;1157:39;;;;1198:4;1153:50;;951:258;-1:-1:-1;;951:258:1:o;1214:220::-;1363:2;1352:9;1345:21;1326:4;1383:45;1424:2;1413:9;1409:18;1401:6;1383:45;:::i;1439:180::-;1498:6;1551:2;1539:9;1530:7;1526:23;1522:32;1519:52;;;1567:1;1564;1557:12;1519:52;-1:-1:-1;1590:23:1;;1439:180;-1:-1:-1;1439:180:1:o;1832:173::-;1900:20;;-1:-1:-1;;;;;1949:31:1;;1939:42;;1929:70;;1995:1;1992;1985:12;1929:70;1832:173;;;:::o;2010:254::-;2078:6;2086;2139:2;2127:9;2118:7;2114:23;2110:32;2107:52;;;2155:1;2152;2145:12;2107:52;2178:29;2197:9;2178:29;:::i;:::-;2168:39;2254:2;2239:18;;;;2226:32;;-1:-1:-1;;;2010:254:1:o;2466:163::-;2533:20;;2593:10;2582:22;;2572:33;;2562:61;;2619:1;2616;2609:12;2634:258;2701:6;2709;2762:2;2750:9;2741:7;2737:23;2733:32;2730:52;;;2778:1;2775;2768:12;2730:52;2801:29;2820:9;2801:29;:::i;:::-;2791:39;;2849:37;2882:2;2871:9;2867:18;2849:37;:::i;:::-;2839:47;;2634:258;;;;;:::o;3079:328::-;3156:6;3164;3172;3225:2;3213:9;3204:7;3200:23;3196:32;3193:52;;;3241:1;3238;3231:12;3193:52;3264:29;3283:9;3264:29;:::i;:::-;3254:39;;3312:38;3346:2;3335:9;3331:18;3312:38;:::i;:::-;3302:48;;3397:2;3386:9;3382:18;3369:32;3359:42;;3079:328;;;;;:::o;3412:248::-;3480:6;3488;3541:2;3529:9;3520:7;3516:23;3512:32;3509:52;;;3557:1;3554;3547:12;3509:52;-1:-1:-1;;3580:23:1;;;3650:2;3635:18;;;3622:32;;-1:-1:-1;3412:248:1:o;3944:186::-;4003:6;4056:2;4044:9;4035:7;4031:23;4027:32;4024:52;;;4072:1;4069;4062:12;4024:52;4095:29;4114:9;4095:29;:::i;4135:862::-;4285:4;4327:3;4316:9;4312:19;4304:27;;4364:6;4358:13;4347:9;4340:32;4419:4;4411:6;4407:17;4401:24;4444:10;4510:2;4496:12;4492:21;4485:4;4474:9;4470:20;4463:51;4582:2;4574:4;4566:6;4562:17;4556:24;4552:33;4545:4;4534:9;4530:20;4523:63;4654:2;4646:4;4638:6;4634:17;4628:24;4624:33;4617:4;4606:9;4602:20;4595:63;4726:2;4718:4;4710:6;4706:17;4700:24;4696:33;4689:4;4678:9;4674:20;4667:63;4798:2;4790:4;4782:6;4778:17;4772:24;4768:33;4761:4;4750:9;4746:20;4739:63;4870:2;4862:4;4854:6;4850:17;4844:24;4840:33;4833:4;4822:9;4818:20;4811:63;;;4923:4;4915:6;4911:17;4905:24;4938:53;4985:4;4974:9;4970:20;4954:14;470:13;463:21;451:34;;400:91;4938:53;;4135:862;;;;:::o;5002:127::-;5063:10;5058:3;5054:20;5051:1;5044:31;5094:4;5091:1;5084:15;5118:4;5115:1;5108:15;5134:275;5205:2;5199:9;5270:2;5251:13;;-1:-1:-1;;5247:27:1;5235:40;;-1:-1:-1;;;;;5290:34:1;;5326:22;;;5287:62;5284:88;;;5352:18;;:::i;:::-;5388:2;5381:22;5134:275;;-1:-1:-1;5134:275:1:o;5414:946::-;5498:6;5529:2;5572;5560:9;5551:7;5547:23;5543:32;5540:52;;;5588:1;5585;5578:12;5540:52;5628:9;5615:23;-1:-1:-1;;;;;5698:2:1;5690:6;5687:14;5684:34;;;5714:1;5711;5704:12;5684:34;5752:6;5741:9;5737:22;5727:32;;5797:7;5790:4;5786:2;5782:13;5778:27;5768:55;;5819:1;5816;5809:12;5768:55;5855:2;5842:16;5877:2;5873;5870:10;5867:36;;;5883:18;;:::i;:::-;5929:2;5926:1;5922:10;5912:20;;5952:28;5976:2;5972;5968:11;5952:28;:::i;:::-;6014:15;;;6084:11;;;6080:20;;;6045:12;;;;6112:19;;;6109:39;;;6144:1;6141;6134:12;6109:39;6168:11;;;;6188:142;6204:6;6199:3;6196:15;6188:142;;;6270:17;;6258:30;;6221:12;;;;6308;;;;6188:142;;;6349:5;5414:946;-1:-1:-1;;;;;;;;5414:946:1:o;6648:720::-;6879:2;6931:21;;;7001:13;;6904:18;;;7023:22;;;6850:4;;6879:2;7102:15;;;;7076:2;7061:18;;;6850:4;7145:197;7159:6;7156:1;7153:13;7145:197;;;7208:52;7256:3;7247:6;7241:13;6449:12;;-1:-1:-1;;;;;6445:38:1;6433:51;;6537:4;6526:16;;;6520:23;-1:-1:-1;;;;;6516:48:1;6500:14;;;6493:72;6628:4;6617:16;;;6611:23;6604:31;6597:39;6581:14;;6574:63;6365:278;7208:52;7317:15;;;;7289:4;7280:14;;;;;7181:1;7174:9;7145:197;;7373:292;7431:6;7484:2;7472:9;7463:7;7459:23;7455:32;7452:52;;;7500:1;7497;7490:12;7452:52;7539:9;7526:23;-1:-1:-1;;;;;7582:5:1;7578:38;7571:5;7568:49;7558:77;;7631:1;7628;7621:12;7670:407;7735:5;-1:-1:-1;;;;;7761:6:1;7758:30;7755:56;;;7791:18;;:::i;:::-;7829:57;7874:2;7853:15;;-1:-1:-1;;7849:29:1;7880:4;7845:40;7829:57;:::i;:::-;7820:66;;7909:6;7902:5;7895:21;7949:3;7940:6;7935:3;7931:16;7928:25;7925:45;;;7966:1;7963;7956:12;7925:45;8015:6;8010:3;8003:4;7996:5;7992:16;7979:43;8069:1;8062:4;8053:6;8046:5;8042:18;8038:29;8031:40;7670:407;;;;;:::o;8082:451::-;8151:6;8204:2;8192:9;8183:7;8179:23;8175:32;8172:52;;;8220:1;8217;8210:12;8172:52;8260:9;8247:23;-1:-1:-1;;;;;8285:6:1;8282:30;8279:50;;;8325:1;8322;8315:12;8279:50;8348:22;;8401:4;8393:13;;8389:27;-1:-1:-1;8379:55:1;;8430:1;8427;8420:12;8379:55;8453:74;8519:7;8514:2;8501:16;8496:2;8492;8488:11;8453:74;:::i;8538:632::-;8709:2;8761:21;;;8831:13;;8734:18;;;8853:22;;;8680:4;;8709:2;8932:15;;;;8906:2;8891:18;;;8680:4;8975:169;8989:6;8986:1;8983:13;8975:169;;;9050:13;;9038:26;;9119:15;;;;9084:12;;;;9011:1;9004:9;8975:169;;9175:322;9252:6;9260;9268;9321:2;9309:9;9300:7;9296:23;9292:32;9289:52;;;9337:1;9334;9327:12;9289:52;9360:29;9379:9;9360:29;:::i;:::-;9350:39;9436:2;9421:18;;9408:32;;-1:-1:-1;9487:2:1;9472:18;;;9459:32;;9175:322;-1:-1:-1;;;9175:322:1:o;9502:160::-;9567:20;;9623:13;;9616:21;9606:32;;9596:60;;9652:1;9649;9642:12;9667:254;9732:6;9740;9793:2;9781:9;9772:7;9768:23;9764:32;9761:52;;;9809:1;9806;9799:12;9761:52;9832:29;9851:9;9832:29;:::i;:::-;9822:39;;9880:35;9911:2;9900:9;9896:18;9880:35;:::i;9926:184::-;9984:6;10037:2;10025:9;10016:7;10012:23;10008:32;10005:52;;;10053:1;10050;10043:12;10005:52;10076:28;10094:9;10076:28;:::i;10115:667::-;10210:6;10218;10226;10234;10287:3;10275:9;10266:7;10262:23;10258:33;10255:53;;;10304:1;10301;10294:12;10255:53;10327:29;10346:9;10327:29;:::i;:::-;10317:39;;10375:38;10409:2;10398:9;10394:18;10375:38;:::i;:::-;10365:48;;10460:2;10449:9;10445:18;10432:32;10422:42;;10515:2;10504:9;10500:18;10487:32;-1:-1:-1;;;;;10534:6:1;10531:30;10528:50;;;10574:1;10571;10564:12;10528:50;10597:22;;10650:4;10642:13;;10638:27;-1:-1:-1;10628:55:1;;10679:1;10676;10669:12;10628:55;10702:74;10768:7;10763:2;10750:16;10745:2;10741;10737:11;10702:74;:::i;:::-;10692:84;;;10115:667;;;;;;;:::o;10787:263::-;6449:12;;-1:-1:-1;;;;;6445:38:1;6433:51;;6537:4;6526:16;;;6520:23;-1:-1:-1;;;;;6516:48:1;6500:14;;;6493:72;6628:4;6617:16;;;6611:23;6604:31;6597:39;6581:14;;;6574:63;10981:2;10966:18;;10993:51;6365:278;11055:260;11123:6;11131;11184:2;11172:9;11163:7;11159:23;11155:32;11152:52;;;11200:1;11197;11190:12;11152:52;11223:29;11242:9;11223:29;:::i;:::-;11213:39;;11271:38;11305:2;11294:9;11290:18;11271:38;:::i;11320:180::-;11376:6;11429:2;11417:9;11408:7;11404:23;11400:32;11397:52;;;11445:1;11442;11435:12;11397:52;11468:26;11484:9;11468:26;:::i;11505:380::-;11584:1;11580:12;;;;11627;;;11648:61;;11702:4;11694:6;11690:17;11680:27;;11648:61;11755:2;11747:6;11744:14;11724:18;11721:38;11718:161;;;11801:10;11796:3;11792:20;11789:1;11782:31;11836:4;11833:1;11826:15;11864:4;11861:1;11854:15;11718:161;;11505:380;;;:::o;11890:356::-;12092:2;12074:21;;;12111:18;;;12104:30;12170:34;12165:2;12150:18;;12143:62;12237:2;12222:18;;11890:356::o;12251:127::-;12312:10;12307:3;12303:20;12300:1;12293:31;12343:4;12340:1;12333:15;12367:4;12364:1;12357:15;12383:228;12422:3;12450:10;12487:2;12484:1;12480:10;12517:2;12514:1;12510:10;12548:3;12544:2;12540:12;12535:3;12532:21;12529:47;;;12556:18;;:::i;:::-;12592:13;;12383:228;-1:-1:-1;;;;12383:228:1:o;12972:168::-;13012:7;13078:1;13074;13070:6;13066:14;13063:1;13060:21;13055:1;13048:9;13041:17;13037:45;13034:71;;;13085:18;;:::i;:::-;-1:-1:-1;13125:9:1;;12972:168::o;13145:127::-;13206:10;13201:3;13197:20;13194:1;13187:31;13237:4;13234:1;13227:15;13261:4;13258:1;13251:15;13277:120;13317:1;13343;13333:35;;13348:18;;:::i;:::-;-1:-1:-1;13382:9:1;;13277:120::o;13402:127::-;13463:10;13458:3;13454:20;13451:1;13444:31;13494:4;13491:1;13484:15;13518:4;13515:1;13508:15;13892:221;13931:4;13960:10;14020;;;;13990;;14042:12;;;14039:38;;;14057:18;;:::i;:::-;14094:13;;13892:221;-1:-1:-1;;;13892:221:1:o;14118:128::-;14158:3;14189:1;14185:6;14182:1;14179:13;14176:39;;;14195:18;;:::i;:::-;-1:-1:-1;14231:9:1;;14118:128::o;15716:571::-;15996:3;16034:6;16028:13;16050:53;16096:6;16091:3;16084:4;16076:6;16072:17;16050:53;:::i;:::-;16166:13;;16125:16;;;;16188:57;16166:13;16125:16;16222:4;16210:17;;16188:57;:::i;18459:489::-;-1:-1:-1;;;;;18728:15:1;;;18710:34;;18780:15;;18775:2;18760:18;;18753:43;18827:2;18812:18;;18805:34;;;18875:3;18870:2;18855:18;;18848:31;;;18653:4;;18896:46;;18922:19;;18914:6;18896:46;:::i;:::-;18888:54;18459:489;-1:-1:-1;;;;;;18459:489:1:o;18953:249::-;19022:6;19075:2;19063:9;19054:7;19050:23;19046:32;19043:52;;;19091:1;19088;19081:12;19043:52;19123:9;19117:16;19142:30;19166:5;19142:30;:::i;19207:135::-;19246:3;-1:-1:-1;;19267:17:1;;19264:43;;;19287:18;;:::i;:::-;-1:-1:-1;19334:1:1;19323:13;;19207:135::o;19347:125::-;19387:4;19415:1;19412;19409:8;19406:34;;;19420:18;;:::i;:::-;-1:-1:-1;19457:9:1;;19347:125::o;19477:112::-;19509:1;19535;19525:35;;19540:18;;:::i;:::-;-1:-1:-1;19574:9:1;;19477:112::o

Swarm Source

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