ETH Price: $2,274.67 (+2.25%)

Token

KoseiBaby (KB)
 

Overview

Max Total Supply

65 KB

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 KB
0x7aa07bdd8955833f45a946a735381131610ddd64
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:
KoseiBaby

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-29
*/

// SPDX-License-Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

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

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

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

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

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

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

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

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

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred.
     * This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred.
     * This includes minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;
// 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;
    }
}

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

contract KoseiBaby is ERC721A, Ownable {

    string baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0 ether;
    uint256 public maxSupply = 100;
    uint256 public preSaleSupply = 100;
    uint256 public maxMintAmount = 3;
    bool public paused = false;
    bool public onlyWhitelisted = true;
    bool public revealed = true;
    string public notRevealedUri;
    mapping(address => uint256) public whitelistUserAmount;
    mapping(address => uint256) public whitelistMintedAmount;
    

    constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  )ERC721A(_name, _symbol) {
      setBaseURI(_initBaseURI);
      setNotRevealedURI(_initNotRevealedUri);
    }

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

  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

    function reveal() public onlyOwner {
      revealed = true;
  }

    // public
    function mint(uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        require(supply + _mintAmount <= preSaleSupply, "pre Sale NFT limit exceeded");

        // Owner also can mint.
        if (msg.sender != owner()) {
            require(msg.value >= cost * _mintAmount, "insufficient funds");
            if(onlyWhitelisted == true) {
                require(whitelistUserAmount[msg.sender] != 0, "user is not whitelisted");
                require(whitelistMintedAmount[msg.sender] + _mintAmount <= whitelistUserAmount[msg.sender], "max NFT per address exceeded");
                whitelistMintedAmount[msg.sender] += _mintAmount;
            }
        }

        _safeMint(msg.sender, _mintAmount);
    }

    function airdropMint(address[] calldata _airdropAddresses , uint256[] memory _UserMintAmount) public onlyOwner{
        uint256 supply = totalSupply();
        uint256 _mintAmount = 0;
        for (uint256 i = 0; i < _UserMintAmount.length; i++) {
            _mintAmount += _UserMintAmount[i];
        }
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

        for (uint256 i = 0; i < _UserMintAmount.length; i++) {
            _safeMint(_airdropAddresses[i], _UserMintAmount[i] );
        }
    }

    function setWhitelist(address[] memory addresses, uint256[] memory saleSupplies) public onlyOwner {
        require(addresses.length == saleSupplies.length);
        for (uint256 i = 0; i < addresses.length; i++) {
            whitelistUserAmount[addresses[i]] = saleSupplies[i];
        }
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
  {
    require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
    if(revealed == false) {
        return notRevealedUri;
    }
    return string(abi.encodePacked(ERC721A.tokenURI(tokenId), baseExtension));
  }

    //only owner  
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setOnlyWhitelisted(bool _state) public onlyOwner {
        onlyWhitelisted = _state;
    }    

    function setpreSaleSupply(uint256 _newpreSaleSupply) public onlyOwner {
        preSaleSupply = _newpreSaleSupply;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }
  
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_UserMintAmount","type":"uint256[]"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"saleSupplies","type":"uint256[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newpreSaleSupply","type":"uint256"}],"name":"setpreSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistUserAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620001d5565b506000600b556064600c819055600d556003600e55600f805462ffffff1916620101001790553480156200005b57600080fd5b50604051620025ec380380620025ec8339810160408190526200007e9162000332565b83518490849062000097906002906020850190620001d5565b508051620000ad906003906020840190620001d5565b5050600160005550620000c033620000e0565b620000cb8262000132565b620000d68162000155565b505050506200043e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013c62000174565b805162000151906009906020840190620001d5565b5050565b6200015f62000174565b805162000151906010906020840190620001d5565b6008546001600160a01b03163314620001d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620001e390620003eb565b90600052602060002090601f01602090048101928262000207576000855562000252565b82601f106200022257805160ff191683800117855562000252565b8280016001018555821562000252579182015b828111156200025257825182559160200191906001019062000235565b506200026092915062000264565b5090565b5b8082111562000260576000815560010162000265565b600082601f8301126200028d57600080fd5b81516001600160401b0380821115620002aa57620002aa62000428565b604051601f8301601f19908116603f01168101908282118183101715620002d557620002d562000428565b81604052838152602092508683858801011115620002f257600080fd5b600091505b83821015620003165785820183015181830184015290820190620002f7565b83821115620003285760008385830101525b9695505050505050565b600080600080608085870312156200034957600080fd5b84516001600160401b03808211156200036157600080fd5b6200036f888389016200027b565b955060208701519150808211156200038657600080fd5b62000394888389016200027b565b94506040870151915080821115620003ab57600080fd5b620003b9888389016200027b565b93506060870151915080821115620003d057600080fd5b50620003df878288016200027b565b91505092959194509250565b600181811c908216806200040057607f821691505b602082108114156200042257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61219e806200044e6000396000f3fe6080604052600436106102465760003560e01c80635c975abb11610139578063a475b5dd116100b6578063d5abeb011161007a578063d5abeb011461067e578063da3ef23f14610694578063e985e9c5146106b4578063f013e0e1146106fd578063f2c4ce1e1461071d578063f2fde38b1461073d57600080fd5b8063a475b5dd146105f4578063b88d4fde14610609578063c169566a14610629578063c668286214610649578063c87b56dd1461065e57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461056f57806395d89b411461058d5780639c70b512146105a2578063a0712d68146105c1578063a22cb465146105d457600080fd5b80635c975abb146104e05780636352211e146104fa57806370a082311461051a578063715018a61461053a5780637f00c7a61461054f57600080fd5b8063239c70ae116101c75780633ccfd60b1161018b5780633ccfd60b1461045857806342842e0e1461046057806344a0d68a1461048057806351830227146104a057806355f804b3146104c057600080fd5b8063239c70ae146103cc57806323b872dd146103e2578063279a669e146104025780632e055bcc146104225780633c9527641461043857600080fd5b8063095ea7b31161020e578063095ea7b31461031157806313faede61461033157806318160ddd146103555780631c92632f146103725780631fac2a351461039f57600080fd5b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063081c8c44146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611e0a565b61075d565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611def565b6107af565b005b3480156102ae57600080fd5b506102b76107ca565b6040516102779190611fef565b3480156102d057600080fd5b506102e46102df366004611e8d565b61085c565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102b76108a0565b34801561031d57600080fd5b506102a061032c366004611c67565b61092e565b34801561033d57600080fd5b50610347600b5481565b604051908152602001610277565b34801561036157600080fd5b506001546000540360001901610347565b34801561037e57600080fd5b5061034761038d366004611b37565b60116020526000908152604090205481565b3480156103ab57600080fd5b506103476103ba366004611b37565b60126020526000908152604090205481565b3480156103d857600080fd5b50610347600e5481565b3480156103ee57600080fd5b506102a06103fd366004611b85565b6109ce565b34801561040e57600080fd5b506102a061041d366004611c91565b610b60565b34801561042e57600080fd5b50610347600d5481565b34801561044457600080fd5b506102a0610453366004611def565b610cd6565b6102a0610cf8565b34801561046c57600080fd5b506102a061047b366004611b85565b610d74565b34801561048c57600080fd5b506102a061049b366004611e8d565b610d94565b3480156104ac57600080fd5b50600f5461026b9062010000900460ff1681565b3480156104cc57600080fd5b506102a06104db366004611e44565b610da1565b3480156104ec57600080fd5b50600f5461026b9060ff1681565b34801561050657600080fd5b506102e4610515366004611e8d565b610dc0565b34801561052657600080fd5b50610347610535366004611b37565b610dcb565b34801561054657600080fd5b506102a0610e1a565b34801561055b57600080fd5b506102a061056a366004611e8d565b610e2e565b34801561057b57600080fd5b506008546001600160a01b03166102e4565b34801561059957600080fd5b506102b7610e3b565b3480156105ae57600080fd5b50600f5461026b90610100900460ff1681565b6102a06105cf366004611e8d565b610e4a565b3480156105e057600080fd5b506102a06105ef366004611c3d565b611184565b34801561060057600080fd5b506102a061121a565b34801561061557600080fd5b506102a0610624366004611bc1565b611235565b34801561063557600080fd5b506102a0610644366004611e8d565b61127f565b34801561065557600080fd5b506102b761128c565b34801561066a57600080fd5b506102b7610679366004611e8d565b611299565b34801561068a57600080fd5b50610347600c5481565b3480156106a057600080fd5b506102a06106af366004611e44565b6113dc565b3480156106c057600080fd5b5061026b6106cf366004611b52565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070957600080fd5b506102a0610718366004611d28565b6113f7565b34801561072957600080fd5b506102a0610738366004611e44565b611488565b34801561074957600080fd5b506102a0610758366004611b37565b6114a3565b60006301ffc9a760e01b6001600160e01b03198316148061078e57506380ac58cd60e01b6001600160e01b03198316145b806107a95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6107b7611519565b600f805460ff1916911515919091179055565b6060600280546107d9906120ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610805906120ba565b80156108525780601f1061082757610100808354040283529160200191610852565b820191906000526020600020905b81548152906001019060200180831161083557829003601f168201915b5050505050905090565b600061086782611573565b610884576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b601080546108ad906120ba565b80601f01602080910402602001604051908101604052809291908181526020018280546108d9906120ba565b80156109265780601f106108fb57610100808354040283529160200191610926565b820191906000526020600020905b81548152906001019060200180831161090957829003601f168201915b505050505081565b600061093982610dc0565b9050336001600160a01b038216146109725761095581336106cf565b610972576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006109d9826115a8565b9050836001600160a01b0316816001600160a01b031614610a0c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a5957610a3c86336106cf565b610a5957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a8057604051633a954ecd60e21b815260040160405180910390fd5b8015610a8b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b165760018401600081815260046020526040902054610b14576000548114610b145760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b68611519565b6000610b7d6001546000546000199190030190565b90506000805b8351811015610bc557838181518110610b9e57610b9e612126565b602002602001015182610bb19190612057565b915080610bbd816120f5565b915050610b83565b5060008111610c1b5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064015b60405180910390fd5b600c54610c288284612057565b1115610c6f5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610c12565b60005b8351811015610b5857610cc4868683818110610c9057610c90612126565b9050602002016020810190610ca59190611b37565b858381518110610cb757610cb7612126565b6020026020010151611618565b80610cce816120f5565b915050610c72565b610cde611519565b600f80549115156101000261ff0019909216919091179055565b610d00611519565b6000610d146008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d5e576040519150601f19603f3d011682016040523d82523d6000602084013e610d63565b606091505b5050905080610d7157600080fd5b50565b610d8f83838360405180602001604052806000815250611235565b505050565b610d9c611519565b600b55565b610da9611519565b8051610dbc9060099060208401906119a8565b5050565b60006107a9826115a8565b60006001600160a01b038216610df4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e22611519565b610e2c6000611632565b565b610e36611519565b600e55565b6060600380546107d9906120ba565b600f5460ff1615610e965760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610c12565b6000610eab6001546000546000199190030190565b905060008211610efd5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610c12565b600e54821115610f5b5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610c12565b600c54610f688383612057565b1115610faf5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610c12565b600d54610fbc8383612057565b111561100a5760405162461bcd60e51b815260206004820152601b60248201527f7072652053616c65204e4654206c696d697420657863656564656400000000006044820152606401610c12565b6008546001600160a01b0316331461117a5781600b5461102a919061206f565b34101561106e5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610c12565b600f5460ff6101009091041615156001141561117a57336000908152601160205260409020546110e05760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610c12565b33600090815260116020908152604080832054601290925290912054611107908490612057565b11156111555760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610c12565b3360009081526012602052604081208054849290611174908490612057565b90915550505b610dbc3383611618565b6001600160a01b0382163314156111ae5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611222611519565b600f805462ff0000191662010000179055565b6112408484846109ce565b6001600160a01b0383163b156112795761125c84848484611684565b611279576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b611287611519565b600d55565b600a80546108ad906120ba565b60606112a482611573565b6113085760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c12565b600f5462010000900460ff166113aa5760108054611325906120ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611351906120ba565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b50505050509050919050565b6113b38261177c565b600a6040516020016113c6929190611f01565b6040516020818303038152906040529050919050565b6113e4611519565b8051610dbc90600a9060208401906119a8565b6113ff611519565b805182511461140d57600080fd5b60005b8251811015610d8f5781818151811061142b5761142b612126565b60200260200101516011600085848151811061144957611449612126565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611480906120f5565b915050611410565b611490611519565b8051610dbc9060109060208401906119a8565b6114ab611519565b6001600160a01b0381166115105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c12565b610d7181611632565b6008546001600160a01b03163314610e2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c12565b600081600111158015611587575060005482105b80156107a9575050600090815260046020526040902054600160e01b161590565b600081806001116115ff576000548110156115ff57600081815260046020526040902054600160e01b81166115fd575b806115f65750600019016000818152600460205260409020546115d8565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b610dbc828260405180602001604052806000815250611800565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116b9903390899088908890600401611fb2565b602060405180830381600087803b1580156116d357600080fd5b505af1925050508015611703575060408051601f3d908101601f1916820190925261170091810190611e27565b60015b61175e573d808015611731576040519150601f19603f3d011682016040523d82523d6000602084013e611736565b606091505b508051611756576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061178782611573565b6117a457604051630a14c4b560e41b815260040160405180910390fd5b60006117ae61186d565b90508051600014156117cf57604051806020016040528060008152506115f6565b806117d98461187c565b6040516020016117ea929190611ed2565b6040516020818303038152906040529392505050565b61180a83836118cb565b6001600160a01b0383163b15610d8f576000548281035b6118346000868380600101945086611684565b611851576040516368d2bf6b60e11b815260040160405180910390fd5b81811061182157816000541461186657600080fd5b5050505050565b6060600980546107d9906120ba565b604080516080810191829052607f0190826030600a8206018353600a90045b80156118b957600183039250600a81066030018353600a900461189b565b50819003601f19909101908152919050565b6000546001600160a01b0383166118f457604051622e076360e81b815260040160405180910390fd5b816119125760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061195c5760005550505050565b8280546119b4906120ba565b90600052602060002090601f0160209004810192826119d65760008555611a1c565b82601f106119ef57805160ff1916838001178555611a1c565b82800160010185558215611a1c579182015b82811115611a1c578251825591602001919060010190611a01565b50611a28929150611a2c565b5090565b5b80821115611a285760008155600101611a2d565b600067ffffffffffffffff831115611a5b57611a5b61213c565b611a6e601f8401601f1916602001612002565b9050828152838383011115611a8257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611ab057600080fd5b919050565b600082601f830112611ac657600080fd5b81356020611adb611ad683612033565b612002565b80838252828201915082860187848660051b8901011115611afb57600080fd5b60005b85811015611b1a57813584529284019290840190600101611afe565b5090979650505050505050565b80358015158114611ab057600080fd5b600060208284031215611b4957600080fd5b6115f682611a99565b60008060408385031215611b6557600080fd5b611b6e83611a99565b9150611b7c60208401611a99565b90509250929050565b600080600060608486031215611b9a57600080fd5b611ba384611a99565b9250611bb160208501611a99565b9150604084013590509250925092565b60008060008060808587031215611bd757600080fd5b611be085611a99565b9350611bee60208601611a99565b925060408501359150606085013567ffffffffffffffff811115611c1157600080fd5b8501601f81018713611c2257600080fd5b611c3187823560208401611a41565b91505092959194509250565b60008060408385031215611c5057600080fd5b611c5983611a99565b9150611b7c60208401611b27565b60008060408385031215611c7a57600080fd5b611c8383611a99565b946020939093013593505050565b600080600060408486031215611ca657600080fd5b833567ffffffffffffffff80821115611cbe57600080fd5b818601915086601f830112611cd257600080fd5b813581811115611ce157600080fd5b8760208260051b8501011115611cf657600080fd5b602092830195509350908501359080821115611d1157600080fd5b50611d1e86828701611ab5565b9150509250925092565b60008060408385031215611d3b57600080fd5b823567ffffffffffffffff80821115611d5357600080fd5b818501915085601f830112611d6757600080fd5b81356020611d77611ad683612033565b8083825282820191508286018a848660051b8901011115611d9757600080fd5b600096505b84871015611dc157611dad81611a99565b835260019690960195918301918301611d9c565b5096505086013592505080821115611dd857600080fd5b50611de585828601611ab5565b9150509250929050565b600060208284031215611e0157600080fd5b6115f682611b27565b600060208284031215611e1c57600080fd5b81356115f681612152565b600060208284031215611e3957600080fd5b81516115f681612152565b600060208284031215611e5657600080fd5b813567ffffffffffffffff811115611e6d57600080fd5b8201601f81018413611e7e57600080fd5b61177484823560208401611a41565b600060208284031215611e9f57600080fd5b5035919050565b60008151808452611ebe81602086016020860161208e565b601f01601f19169290920160200192915050565b60008351611ee481846020880161208e565b835190830190611ef881836020880161208e565b01949350505050565b600083516020611f14828583890161208e565b845491840191600090600181811c9080831680611f3257607f831692505b858310811415611f5057634e487b7160e01b85526022600452602485fd5b808015611f645760018114611f7557611fa2565b60ff19851688528388019550611fa2565b60008b81526020902060005b85811015611f9a5781548a820152908401908801611f81565b505083880195505b50939a9950505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe590830184611ea6565b9695505050505050565b6020815260006115f66020830184611ea6565b604051601f8201601f1916810167ffffffffffffffff8111828210171561202b5761202b61213c565b604052919050565b600067ffffffffffffffff82111561204d5761204d61213c565b5060051b60200190565b6000821982111561206a5761206a612110565b500190565b600081600019048311821515161561208957612089612110565b500290565b60005b838110156120a9578181015183820152602001612091565b838111156112795750506000910152565b600181811c908216806120ce57607f821691505b602082108114156120ef57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561210957612109612110565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7157600080fdfea2646970667358221220ce284b4946cc16cf0a6e8ba711018401a1ac63df8a46c1e0a44412d775f4101564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000094b6f73656942616279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024b420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a3751696836335862796350775a4a59436e6b533535664b5a4c445351554c386a473471576f617a4a7848542f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a3751696836335862796350775a4a59436e6b533535664b5a4c445351554c386a473471576f617a4a7848542f00000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80635c975abb11610139578063a475b5dd116100b6578063d5abeb011161007a578063d5abeb011461067e578063da3ef23f14610694578063e985e9c5146106b4578063f013e0e1146106fd578063f2c4ce1e1461071d578063f2fde38b1461073d57600080fd5b8063a475b5dd146105f4578063b88d4fde14610609578063c169566a14610629578063c668286214610649578063c87b56dd1461065e57600080fd5b80638da5cb5b116100fd5780638da5cb5b1461056f57806395d89b411461058d5780639c70b512146105a2578063a0712d68146105c1578063a22cb465146105d457600080fd5b80635c975abb146104e05780636352211e146104fa57806370a082311461051a578063715018a61461053a5780637f00c7a61461054f57600080fd5b8063239c70ae116101c75780633ccfd60b1161018b5780633ccfd60b1461045857806342842e0e1461046057806344a0d68a1461048057806351830227146104a057806355f804b3146104c057600080fd5b8063239c70ae146103cc57806323b872dd146103e2578063279a669e146104025780632e055bcc146104225780633c9527641461043857600080fd5b8063095ea7b31161020e578063095ea7b31461031157806313faede61461033157806318160ddd146103555780631c92632f146103725780631fac2a351461039f57600080fd5b806301ffc9a71461024b57806302329a291461028057806306fdde03146102a2578063081812fc146102c4578063081c8c44146102fc575b600080fd5b34801561025757600080fd5b5061026b610266366004611e0a565b61075d565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b366004611def565b6107af565b005b3480156102ae57600080fd5b506102b76107ca565b6040516102779190611fef565b3480156102d057600080fd5b506102e46102df366004611e8d565b61085c565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102b76108a0565b34801561031d57600080fd5b506102a061032c366004611c67565b61092e565b34801561033d57600080fd5b50610347600b5481565b604051908152602001610277565b34801561036157600080fd5b506001546000540360001901610347565b34801561037e57600080fd5b5061034761038d366004611b37565b60116020526000908152604090205481565b3480156103ab57600080fd5b506103476103ba366004611b37565b60126020526000908152604090205481565b3480156103d857600080fd5b50610347600e5481565b3480156103ee57600080fd5b506102a06103fd366004611b85565b6109ce565b34801561040e57600080fd5b506102a061041d366004611c91565b610b60565b34801561042e57600080fd5b50610347600d5481565b34801561044457600080fd5b506102a0610453366004611def565b610cd6565b6102a0610cf8565b34801561046c57600080fd5b506102a061047b366004611b85565b610d74565b34801561048c57600080fd5b506102a061049b366004611e8d565b610d94565b3480156104ac57600080fd5b50600f5461026b9062010000900460ff1681565b3480156104cc57600080fd5b506102a06104db366004611e44565b610da1565b3480156104ec57600080fd5b50600f5461026b9060ff1681565b34801561050657600080fd5b506102e4610515366004611e8d565b610dc0565b34801561052657600080fd5b50610347610535366004611b37565b610dcb565b34801561054657600080fd5b506102a0610e1a565b34801561055b57600080fd5b506102a061056a366004611e8d565b610e2e565b34801561057b57600080fd5b506008546001600160a01b03166102e4565b34801561059957600080fd5b506102b7610e3b565b3480156105ae57600080fd5b50600f5461026b90610100900460ff1681565b6102a06105cf366004611e8d565b610e4a565b3480156105e057600080fd5b506102a06105ef366004611c3d565b611184565b34801561060057600080fd5b506102a061121a565b34801561061557600080fd5b506102a0610624366004611bc1565b611235565b34801561063557600080fd5b506102a0610644366004611e8d565b61127f565b34801561065557600080fd5b506102b761128c565b34801561066a57600080fd5b506102b7610679366004611e8d565b611299565b34801561068a57600080fd5b50610347600c5481565b3480156106a057600080fd5b506102a06106af366004611e44565b6113dc565b3480156106c057600080fd5b5061026b6106cf366004611b52565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070957600080fd5b506102a0610718366004611d28565b6113f7565b34801561072957600080fd5b506102a0610738366004611e44565b611488565b34801561074957600080fd5b506102a0610758366004611b37565b6114a3565b60006301ffc9a760e01b6001600160e01b03198316148061078e57506380ac58cd60e01b6001600160e01b03198316145b806107a95750635b5e139f60e01b6001600160e01b03198316145b92915050565b6107b7611519565b600f805460ff1916911515919091179055565b6060600280546107d9906120ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610805906120ba565b80156108525780601f1061082757610100808354040283529160200191610852565b820191906000526020600020905b81548152906001019060200180831161083557829003601f168201915b5050505050905090565b600061086782611573565b610884576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b601080546108ad906120ba565b80601f01602080910402602001604051908101604052809291908181526020018280546108d9906120ba565b80156109265780601f106108fb57610100808354040283529160200191610926565b820191906000526020600020905b81548152906001019060200180831161090957829003601f168201915b505050505081565b600061093982610dc0565b9050336001600160a01b038216146109725761095581336106cf565b610972576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006109d9826115a8565b9050836001600160a01b0316816001600160a01b031614610a0c5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610a5957610a3c86336106cf565b610a5957604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a8057604051633a954ecd60e21b815260040160405180910390fd5b8015610a8b57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610b165760018401600081815260046020526040902054610b14576000548114610b145760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610b68611519565b6000610b7d6001546000546000199190030190565b90506000805b8351811015610bc557838181518110610b9e57610b9e612126565b602002602001015182610bb19190612057565b915080610bbd816120f5565b915050610b83565b5060008111610c1b5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064015b60405180910390fd5b600c54610c288284612057565b1115610c6f5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610c12565b60005b8351811015610b5857610cc4868683818110610c9057610c90612126565b9050602002016020810190610ca59190611b37565b858381518110610cb757610cb7612126565b6020026020010151611618565b80610cce816120f5565b915050610c72565b610cde611519565b600f80549115156101000261ff0019909216919091179055565b610d00611519565b6000610d146008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d5e576040519150601f19603f3d011682016040523d82523d6000602084013e610d63565b606091505b5050905080610d7157600080fd5b50565b610d8f83838360405180602001604052806000815250611235565b505050565b610d9c611519565b600b55565b610da9611519565b8051610dbc9060099060208401906119a8565b5050565b60006107a9826115a8565b60006001600160a01b038216610df4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610e22611519565b610e2c6000611632565b565b610e36611519565b600e55565b6060600380546107d9906120ba565b600f5460ff1615610e965760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610c12565b6000610eab6001546000546000199190030190565b905060008211610efd5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610c12565b600e54821115610f5b5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b6064820152608401610c12565b600c54610f688383612057565b1115610faf5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610c12565b600d54610fbc8383612057565b111561100a5760405162461bcd60e51b815260206004820152601b60248201527f7072652053616c65204e4654206c696d697420657863656564656400000000006044820152606401610c12565b6008546001600160a01b0316331461117a5781600b5461102a919061206f565b34101561106e5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610c12565b600f5460ff6101009091041615156001141561117a57336000908152601160205260409020546110e05760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610c12565b33600090815260116020908152604080832054601290925290912054611107908490612057565b11156111555760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610c12565b3360009081526012602052604081208054849290611174908490612057565b90915550505b610dbc3383611618565b6001600160a01b0382163314156111ae5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611222611519565b600f805462ff0000191662010000179055565b6112408484846109ce565b6001600160a01b0383163b156112795761125c84848484611684565b611279576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b611287611519565b600d55565b600a80546108ad906120ba565b60606112a482611573565b6113085760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c12565b600f5462010000900460ff166113aa5760108054611325906120ba565b80601f0160208091040260200160405190810160405280929190818152602001828054611351906120ba565b801561139e5780601f106113735761010080835404028352916020019161139e565b820191906000526020600020905b81548152906001019060200180831161138157829003601f168201915b50505050509050919050565b6113b38261177c565b600a6040516020016113c6929190611f01565b6040516020818303038152906040529050919050565b6113e4611519565b8051610dbc90600a9060208401906119a8565b6113ff611519565b805182511461140d57600080fd5b60005b8251811015610d8f5781818151811061142b5761142b612126565b60200260200101516011600085848151811061144957611449612126565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080611480906120f5565b915050611410565b611490611519565b8051610dbc9060109060208401906119a8565b6114ab611519565b6001600160a01b0381166115105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c12565b610d7181611632565b6008546001600160a01b03163314610e2c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c12565b600081600111158015611587575060005482105b80156107a9575050600090815260046020526040902054600160e01b161590565b600081806001116115ff576000548110156115ff57600081815260046020526040902054600160e01b81166115fd575b806115f65750600019016000818152600460205260409020546115d8565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b610dbc828260405180602001604052806000815250611800565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116b9903390899088908890600401611fb2565b602060405180830381600087803b1580156116d357600080fd5b505af1925050508015611703575060408051601f3d908101601f1916820190925261170091810190611e27565b60015b61175e573d808015611731576040519150601f19603f3d011682016040523d82523d6000602084013e611736565b606091505b508051611756576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606061178782611573565b6117a457604051630a14c4b560e41b815260040160405180910390fd5b60006117ae61186d565b90508051600014156117cf57604051806020016040528060008152506115f6565b806117d98461187c565b6040516020016117ea929190611ed2565b6040516020818303038152906040529392505050565b61180a83836118cb565b6001600160a01b0383163b15610d8f576000548281035b6118346000868380600101945086611684565b611851576040516368d2bf6b60e11b815260040160405180910390fd5b81811061182157816000541461186657600080fd5b5050505050565b6060600980546107d9906120ba565b604080516080810191829052607f0190826030600a8206018353600a90045b80156118b957600183039250600a81066030018353600a900461189b565b50819003601f19909101908152919050565b6000546001600160a01b0383166118f457604051622e076360e81b815260040160405180910390fd5b816119125760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061195c5760005550505050565b8280546119b4906120ba565b90600052602060002090601f0160209004810192826119d65760008555611a1c565b82601f106119ef57805160ff1916838001178555611a1c565b82800160010185558215611a1c579182015b82811115611a1c578251825591602001919060010190611a01565b50611a28929150611a2c565b5090565b5b80821115611a285760008155600101611a2d565b600067ffffffffffffffff831115611a5b57611a5b61213c565b611a6e601f8401601f1916602001612002565b9050828152838383011115611a8257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611ab057600080fd5b919050565b600082601f830112611ac657600080fd5b81356020611adb611ad683612033565b612002565b80838252828201915082860187848660051b8901011115611afb57600080fd5b60005b85811015611b1a57813584529284019290840190600101611afe565b5090979650505050505050565b80358015158114611ab057600080fd5b600060208284031215611b4957600080fd5b6115f682611a99565b60008060408385031215611b6557600080fd5b611b6e83611a99565b9150611b7c60208401611a99565b90509250929050565b600080600060608486031215611b9a57600080fd5b611ba384611a99565b9250611bb160208501611a99565b9150604084013590509250925092565b60008060008060808587031215611bd757600080fd5b611be085611a99565b9350611bee60208601611a99565b925060408501359150606085013567ffffffffffffffff811115611c1157600080fd5b8501601f81018713611c2257600080fd5b611c3187823560208401611a41565b91505092959194509250565b60008060408385031215611c5057600080fd5b611c5983611a99565b9150611b7c60208401611b27565b60008060408385031215611c7a57600080fd5b611c8383611a99565b946020939093013593505050565b600080600060408486031215611ca657600080fd5b833567ffffffffffffffff80821115611cbe57600080fd5b818601915086601f830112611cd257600080fd5b813581811115611ce157600080fd5b8760208260051b8501011115611cf657600080fd5b602092830195509350908501359080821115611d1157600080fd5b50611d1e86828701611ab5565b9150509250925092565b60008060408385031215611d3b57600080fd5b823567ffffffffffffffff80821115611d5357600080fd5b818501915085601f830112611d6757600080fd5b81356020611d77611ad683612033565b8083825282820191508286018a848660051b8901011115611d9757600080fd5b600096505b84871015611dc157611dad81611a99565b835260019690960195918301918301611d9c565b5096505086013592505080821115611dd857600080fd5b50611de585828601611ab5565b9150509250929050565b600060208284031215611e0157600080fd5b6115f682611b27565b600060208284031215611e1c57600080fd5b81356115f681612152565b600060208284031215611e3957600080fd5b81516115f681612152565b600060208284031215611e5657600080fd5b813567ffffffffffffffff811115611e6d57600080fd5b8201601f81018413611e7e57600080fd5b61177484823560208401611a41565b600060208284031215611e9f57600080fd5b5035919050565b60008151808452611ebe81602086016020860161208e565b601f01601f19169290920160200192915050565b60008351611ee481846020880161208e565b835190830190611ef881836020880161208e565b01949350505050565b600083516020611f14828583890161208e565b845491840191600090600181811c9080831680611f3257607f831692505b858310811415611f5057634e487b7160e01b85526022600452602485fd5b808015611f645760018114611f7557611fa2565b60ff19851688528388019550611fa2565b60008b81526020902060005b85811015611f9a5781548a820152908401908801611f81565b505083880195505b50939a9950505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe590830184611ea6565b9695505050505050565b6020815260006115f66020830184611ea6565b604051601f8201601f1916810167ffffffffffffffff8111828210171561202b5761202b61213c565b604052919050565b600067ffffffffffffffff82111561204d5761204d61213c565b5060051b60200190565b6000821982111561206a5761206a612110565b500190565b600081600019048311821515161561208957612089612110565b500290565b60005b838110156120a9578181015183820152602001612091565b838111156112795750506000910152565b600181811c908216806120ce57607f821691505b602082108114156120ef57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561210957612109612110565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7157600080fdfea2646970667358221220ce284b4946cc16cf0a6e8ba711018401a1ac63df8a46c1e0a44412d775f4101564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000094b6f73656942616279000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024b420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a3751696836335862796350775a4a59436e6b533535664b5a4c445351554c386a473471576f617a4a7848542f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a3751696836335862796350775a4a59436e6b533535664b5a4c445351554c386a473471576f617a4a7848542f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): KoseiBaby
Arg [1] : _symbol (string): KB
Arg [2] : _initBaseURI (string): ipfs://QmZ7Qih63XbycPwZJYCnkS55fKZLDSQUL8jG4qWoazJxHT/
Arg [3] : _initNotRevealedUri (string): ipfs://QmZ7Qih63XbycPwZJYCnkS55fKZLDSQUL8jG4qWoazJxHT/

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4b6f736569426162790000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 4b42000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5a3751696836335862796350775a4a59436e6b53353566
Arg [10] : 4b5a4c445351554c386a473471576f617a4a7848542f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d5a3751696836335862796350775a4a59436e6b53353566
Arg [13] : 4b5a4c445351554c386a473471576f617a4a7848542f00000000000000000000


Deployed Bytecode Sourcemap

48173:4543:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14567:615;;;;;;;;;;-1:-1:-1;14567:615:0;;;;;:::i;:::-;;:::i;:::-;;;9920:14:1;;9913:22;9895:41;;9883:2;9868:18;14567:615:0;;;;;;;;52357:79;;;;;;;;;;-1:-1:-1;52357:79:0;;;;;:::i;:::-;;:::i;:::-;;20214:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22160:204::-;;;;;;;;;;-1:-1:-1;22160:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9218:32:1;;;9200:51;;9188:2;9173:18;22160:204:0;9054:203:1;48547:28:0;;;;;;;;;;;;;:::i;21708:386::-;;;;;;;;;;-1:-1:-1;21708:386:0;;;;;:::i;:::-;;:::i;48286:29::-;;;;;;;;;;;;;;;;;;;14376:25:1;;;14364:2;14349:18;48286:29:0;14230:177:1;13621:315:0;;;;;;;;;;-1:-1:-1;52700:1:0;13887:12;13674:7;13871:13;:28;-1:-1:-1;;13871:46:0;13621:315;;48582:54;;;;;;;;;;-1:-1:-1;48582:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;48643:56;;;;;;;;;;-1:-1:-1;48643:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;48400:32;;;;;;;;;;;;;;;;31425:2800;;;;;;;;;;-1:-1:-1;31425:2800:0;;;;;:::i;:::-;;:::i;50364:605::-;;;;;;;;;;-1:-1:-1;50364:605:0;;;;;:::i;:::-;;:::i;48359:34::-;;;;;;;;;;;;;;;;51734:101;;;;;;;;;;-1:-1:-1;51734:101:0;;;;;:::i;:::-;;:::i;52445:155::-;;;:::i;23050:185::-;;;;;;;;;;-1:-1:-1;23050:185:0;;;;;:::i;:::-;;:::i;51640:86::-;;;;;;;;;;-1:-1:-1;51640:86:0;;;;;:::i;:::-;;:::i;48513:27::-;;;;;;;;;;-1:-1:-1;48513:27:0;;;;;;;;;;;52109:104;;;;;;;;;;-1:-1:-1;52109:104:0;;;;;:::i;:::-;;:::i;48439:26::-;;;;;;;;;;-1:-1:-1;48439:26:0;;;;;;;;20003:144;;;;;;;;;;-1:-1:-1;20003:144:0;;;;;:::i;:::-;;:::i;15246:224::-;;;;;;;;;;-1:-1:-1;15246:224:0;;;;;:::i;:::-;;:::i;47356:103::-;;;;;;;;;;;;;:::i;51977:122::-;;;;;;;;;;-1:-1:-1;51977:122:0;;;;;:::i;:::-;;:::i;46708:87::-;;;;;;;;;;-1:-1:-1;46781:6:0;;-1:-1:-1;;;;;46781:6:0;46708:87;;20383:104;;;;;;;;;;;;;:::i;48472:34::-;;;;;;;;;;-1:-1:-1;48472:34:0;;;;;;;;;;;49317:1039;;;;;;:::i;:::-;;:::i;22436:308::-;;;;;;;;;;-1:-1:-1;22436:308:0;;;;;:::i;:::-;;:::i;49229:65::-;;;;;;;;;;;;;:::i;23306:399::-;;;;;;;;;;-1:-1:-1;23306:399:0;;;;;:::i;:::-;;:::i;51847:122::-;;;;;;;;;;-1:-1:-1;51847:122:0;;;;;:::i;:::-;;:::i;48242:37::-;;;;;;;;;;;;;:::i;51285:327::-;;;;;;;;;;-1:-1:-1;51285:327:0;;;;;:::i;:::-;;:::i;48322:30::-;;;;;;;;;;;;;;;;52221:128;;;;;;;;;;-1:-1:-1;52221:128:0;;;;;:::i;:::-;;:::i;22815:164::-;;;;;;;;;;-1:-1:-1;22815:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;22936:25:0;;;22912:4;22936:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22815:164;50977:300;;;;;;;;;;-1:-1:-1;50977:300:0;;;;;:::i;:::-;;:::i;49101:120::-;;;;;;;;;;-1:-1:-1;49101:120:0;;;;;:::i;:::-;;:::i;47614:201::-;;;;;;;;;;-1:-1:-1;47614:201:0;;;;;:::i;:::-;;:::i;14567:615::-;14652:4;-1:-1:-1;;;;;;;;;14952:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15029:25:0;;;14952:102;:179;;;-1:-1:-1;;;;;;;;;;15106:25:0;;;14952:179;14932:199;14567:615;-1:-1:-1;;14567:615:0:o;52357:79::-;46594:13;:11;:13::i;:::-;52413:6:::1;:15:::0;;-1:-1:-1;;52413:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52357:79::o;20214:100::-;20268:13;20301:5;20294:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20214:100;:::o;22160:204::-;22228:7;22253:16;22261:7;22253;:16::i;:::-;22248:64;;22278:34;;-1:-1:-1;;;22278:34:0;;;;;;;;;;;22248:64;-1:-1:-1;22332:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22332:24:0;;22160:204::o;48547:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21708:386::-;21781:13;21797:16;21805:7;21797;:16::i;:::-;21781:32;-1:-1:-1;42608:10:0;-1:-1:-1;;;;;21830:28:0;;;21826:175;;21878:44;21895:5;42608:10;22815:164;:::i;21878:44::-;21873:128;;21950:35;;-1:-1:-1;;;21950:35:0;;;;;;;;;;;21873:128;22013:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22013:29:0;-1:-1:-1;;;;;22013:29:0;;;;;;;;;22058:28;;22013:24;;22058:28;;;;;;;21770:324;21708:386;;:::o;31425:2800::-;31559:27;31589;31608:7;31589:18;:27::i;:::-;31559:57;;31674:4;-1:-1:-1;;;;;31633:45:0;31649:19;-1:-1:-1;;;;;31633:45:0;;31629:86;;31687:28;;-1:-1:-1;;;31687:28:0;;;;;;;;;;;31629:86;31729:27;30155:21;;;29982:15;30197:4;30190:36;30279:4;30263:21;;30369:26;;42608:10;31122:30;;;-1:-1:-1;;;;;30820:26:0;;31101:19;;;31098:55;31908:174;;31995:43;32012:4;42608:10;22815:164;:::i;31995:43::-;31990:92;;32047:35;;-1:-1:-1;;;32047:35:0;;;;;;;;;;;31990:92;-1:-1:-1;;;;;32099:16:0;;32095:52;;32124:23;;-1:-1:-1;;;32124:23:0;;;;;;;;;;;32095:52;32296:15;32293:160;;;32436:1;32415:19;32408:30;32293:160;-1:-1:-1;;;;;32831:24:0;;;;;;;:18;:24;;;;;;32829:26;;-1:-1:-1;;32829:26:0;;;32900:22;;;;;;;;;32898:24;;-1:-1:-1;32898:24:0;;;19902:11;19878:22;19874:40;19861:62;-1:-1:-1;;;19861:62:0;33193:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;33487:46:0;;33483:626;;33591:1;33581:11;;33559:19;33714:30;;;:17;:30;;;;;;33710:384;;33852:13;;33837:11;:28;33833:242;;33999:30;;;;:17;:30;;;;;:52;;;33833:242;33540:569;33483:626;34156:7;34152:2;-1:-1:-1;;;;;34137:27:0;34146:4;-1:-1:-1;;;;;34137:27:0;;;;;;;;;;;34175:42;31548:2677;;;31425:2800;;;:::o;50364:605::-;46594:13;:11;:13::i;:::-;50485:14:::1;50502:13;52700:1:::0;13887:12;13674:7;13871:13;-1:-1:-1;;13871:28:0;;;:46;;13621:315;50502:13:::1;50485:30;;50526:19;50565:9:::0;50560:113:::1;50584:15;:22;50580:1;:26;50560:113;;;50643:15;50659:1;50643:18;;;;;;;;:::i;:::-;;;;;;;50628:33;;;;;:::i;:::-;::::0;-1:-1:-1;50608:3:0;::::1;::::0;::::1;:::i;:::-;;;;50560:113;;;;50705:1;50691:11;:15;50683:55;;;::::0;-1:-1:-1;;;50683:55:0;;14076:2:1;50683:55:0::1;::::0;::::1;14058:21:1::0;14115:2;14095:18;;;14088:30;14154:29;14134:18;;;14127:57;14201:18;;50683:55:0::1;;;;;;;;;50781:9;::::0;50757:20:::1;50766:11:::0;50757:6;:20:::1;:::i;:::-;:33;;50749:68;;;::::0;-1:-1:-1;;;50749:68:0;;11493:2:1;50749:68:0::1;::::0;::::1;11475:21:1::0;11532:2;11512:18;;;11505:30;-1:-1:-1;;;11551:18:1;;;11544:52;11613:18;;50749:68:0::1;11291:346:1::0;50749:68:0::1;50835:9;50830:132;50854:15;:22;50850:1;:26;50830:132;;;50898:52;50908:17;;50926:1;50908:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;50930:15;50946:1;50930:18;;;;;;;;:::i;:::-;;;;;;;50898:9;:52::i;:::-;50878:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50830:132;;51734:101:::0;46594:13;:11;:13::i;:::-;51803:15:::1;:24:::0;;;::::1;;;;-1:-1:-1::0;;51803:24:0;;::::1;::::0;;;::::1;::::0;;51734:101::o;52445:155::-;46594:13;:11;:13::i;:::-;52502:7:::1;52523;46781:6:::0;;-1:-1:-1;;;;;46781:6:0;;46708:87;52523:7:::1;-1:-1:-1::0;;;;;52515:21:0::1;52544;52515:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52501:69;;;52589:2;52581:11;;;::::0;::::1;;52490:110;52445:155::o:0;23050:185::-;23188:39;23205:4;23211:2;23215:7;23188:39;;;;;;;;;;;;:16;:39::i;:::-;23050:185;;;:::o;51640:86::-;46594:13;:11;:13::i;:::-;51703:4:::1;:15:::0;51640:86::o;52109:104::-;46594:13;:11;:13::i;:::-;52184:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52109:104:::0;:::o;20003:144::-;20067:7;20110:27;20129:7;20110:18;:27::i;15246:224::-;15310:7;-1:-1:-1;;;;;15334:19:0;;15330:60;;15362:28;;-1:-1:-1;;;15362:28:0;;;;;;;;;;;15330:60;-1:-1:-1;;;;;;15408:25:0;;;;;:18;:25;;;;;;9801:13;15408:54;;15246:224::o;47356:103::-;46594:13;:11;:13::i;:::-;47421:30:::1;47448:1;47421:18;:30::i;:::-;47356:103::o:0;51977:122::-;46594:13;:11;:13::i;:::-;52058::::1;:33:::0;51977:122::o;20383:104::-;20439:13;20472:7;20465:14;;;;;:::i;49317:1039::-;49387:6;;;;49386:7;49378:42;;;;-1:-1:-1;;;49378:42:0;;12610:2:1;49378:42:0;;;12592:21:1;12649:2;12629:18;;;12622:30;-1:-1:-1;;;12668:18:1;;;12661:52;12730:18;;49378:42:0;12408:346:1;49378:42:0;49431:14;49448:13;52700:1;13887:12;13674:7;13871:13;-1:-1:-1;;13871:28:0;;;:46;;13621:315;49448:13;49431:30;;49494:1;49480:11;:15;49472:55;;;;-1:-1:-1;;;49472:55:0;;14076:2:1;49472:55:0;;;14058:21:1;14115:2;14095:18;;;14088:30;14154:29;14134:18;;;14127:57;14201:18;;49472:55:0;13874:351:1;49472:55:0;49561:13;;49546:11;:28;;49538:77;;;;-1:-1:-1;;;49538:77:0;;11844:2:1;49538:77:0;;;11826:21:1;11883:2;11863:18;;;11856:30;11922:34;11902:18;;;11895:62;-1:-1:-1;;;11973:18:1;;;11966:34;12017:19;;49538:77:0;11642:400:1;49538:77:0;49658:9;;49634:20;49643:11;49634:6;:20;:::i;:::-;:33;;49626:68;;;;-1:-1:-1;;;49626:68:0;;11493:2:1;49626:68:0;;;11475:21:1;11532:2;11512:18;;;11505:30;-1:-1:-1;;;11551:18:1;;;11544:52;11613:18;;49626:68:0;11291:346:1;49626:68:0;49737:13;;49713:20;49722:11;49713:6;:20;:::i;:::-;:37;;49705:77;;;;-1:-1:-1;;;49705:77:0;;11137:2:1;49705:77:0;;;11119:21:1;11176:2;11156:18;;;11149:30;11215:29;11195:18;;;11188:57;11262:18;;49705:77:0;10935:351:1;49705:77:0;46781:6;;-1:-1:-1;;;;;46781:6:0;49832:10;:21;49828:474;;49898:11;49891:4;;:18;;;;:::i;:::-;49878:9;:31;;49870:62;;;;-1:-1:-1;;;49870:62:0;;13377:2:1;49870:62:0;;;13359:21:1;13416:2;13396:18;;;13389:30;-1:-1:-1;;;13435:18:1;;;13428:48;13493:18;;49870:62:0;13175:342:1;49870:62:0;49950:15;;;;;;;;:23;;:15;:23;49947:344;;;50022:10;50002:31;;;;:19;:31;;;;;;49994:72;;;;-1:-1:-1;;;49994:72:0;;13724:2:1;49994:72:0;;;13706:21:1;13763:2;13743:18;;;13736:30;13802:25;13782:18;;;13775:53;13845:18;;49994:72:0;13522:347:1;49994:72:0;50164:10;50144:31;;;;:19;:31;;;;;;;;;50093:21;:33;;;;;;;:47;;50129:11;;50093:47;:::i;:::-;:82;;50085:123;;;;-1:-1:-1;;;50085:123:0;;10780:2:1;50085:123:0;;;10762:21:1;10819:2;10799:18;;;10792:30;10858;10838:18;;;10831:58;10906:18;;50085:123:0;10578:352:1;50085:123:0;50249:10;50227:33;;;;:21;:33;;;;;:48;;50264:11;;50227:33;:48;;50264:11;;50227:48;:::i;:::-;;;;-1:-1:-1;;49947:344:0;50314:34;50324:10;50336:11;50314:9;:34::i;22436:308::-;-1:-1:-1;;;;;22535:31:0;;42608:10;22535:31;22531:61;;;22575:17;;-1:-1:-1;;;22575:17:0;;;;;;;;;;;22531:61;42608:10;22605:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22605:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22605:60:0;;;;;;;;;;22681:55;;9895:41:1;;;22605:49:0;;42608:10;22681:55;;9868:18:1;22681:55:0;;;;;;;22436:308;;:::o;49229:65::-;46594:13;:11;:13::i;:::-;49273:8:::1;:15:::0;;-1:-1:-1;;49273:15:0::1;::::0;::::1;::::0;;49229:65::o;23306:399::-;23473:31;23486:4;23492:2;23496:7;23473:12;:31::i;:::-;-1:-1:-1;;;;;23519:14:0;;;:19;23515:183;;23558:56;23589:4;23595:2;23599:7;23608:5;23558:30;:56::i;:::-;23553:145;;23642:40;;-1:-1:-1;;;23642:40:0;;;;;;;;;;;23553:145;23306:399;;;;:::o;51847:122::-;46594:13;:11;:13::i;:::-;51928::::1;:33:::0;51847:122::o;48242:37::-;;;;;;;:::i;51285:327::-;51358:13;51391:16;51399:7;51391;:16::i;:::-;51383:75;;;;-1:-1:-1;;;51383:75:0;;12961:2:1;51383:75:0;;;12943:21:1;13000:2;12980:18;;;12973:30;13039:34;13019:18;;;13012:62;-1:-1:-1;;;13090:18:1;;;13083:45;13145:19;;51383:75:0;12759:411:1;51383:75:0;51468:8;;;;;;;51465:62;;51505:14;51498:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51285:327;;;:::o;51465:62::-;51564:25;51581:7;51564:16;:25::i;:::-;51591:13;51547:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51533:73;;51285:327;;;:::o;52221:128::-;46594:13;:11;:13::i;:::-;52308:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;50977:300::-:0;46594:13;:11;:13::i;:::-;51114:12:::1;:19;51094:9;:16;:39;51086:48;;;::::0;::::1;;51150:9;51145:125;51169:9;:16;51165:1;:20;51145:125;;;51243:12;51256:1;51243:15;;;;;;;;:::i;:::-;;;;;;;51207:19;:33;51227:9;51237:1;51227:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;51207:33:0::1;-1:-1:-1::0;;;;;51207:33:0::1;;;;;;;;;;;;:51;;;;51187:3;;;;;:::i;:::-;;;;51145:125;;49101:120:::0;46594:13;:11;:13::i;:::-;49183:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;47614:201::-:0;46594:13;:11;:13::i;:::-;-1:-1:-1;;;;;47703:22:0;::::1;47695:73;;;::::0;-1:-1:-1;;;47695:73:0;;10373:2:1;47695:73:0::1;::::0;::::1;10355:21:1::0;10412:2;10392:18;;;10385:30;10451:34;10431:18;;;10424:62;-1:-1:-1;;;10502:18:1;;;10495:36;10548:19;;47695:73:0::1;10171:402:1::0;47695:73:0::1;47779:28;47798:8;47779:18;:28::i;46873:132::-:0;46781:6;;-1:-1:-1;;;;;46781:6:0;42608:10;46937:23;46929:68;;;;-1:-1:-1;;;46929:68:0;;12249:2:1;46929:68:0;;;12231:21:1;;;12268:18;;;12261:30;12327:34;12307:18;;;12300:62;12379:18;;46929:68:0;12047:356:1;23960:273:0;24017:4;24073:7;52700:1;24054:26;;:66;;;;;24107:13;;24097:7;:23;24054:66;:152;;;;-1:-1:-1;;24158:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24158:43:0;:48;;23960:273::o;16920:1129::-;16987:7;17022;;52700:1;17071:23;17067:915;;17124:13;;17117:4;:20;17113:869;;;17162:14;17179:23;;;:17;:23;;;;;;-1:-1:-1;;;17268:23:0;;17264:699;;17787:113;17794:11;17787:113;;-1:-1:-1;;;17865:6:0;17847:25;;;;:17;:25;;;;;;17787:113;;;17933:6;16920:1129;-1:-1:-1;;;16920:1129:0:o;17264:699::-;17139:843;17113:869;18010:31;;-1:-1:-1;;;18010:31:0;;;;;;;;;;;24317:104;24386:27;24396:2;24400:8;24386:27;;;;;;;;;;;;:9;:27::i;47975:191::-;48068:6;;;-1:-1:-1;;;;;48085:17:0;;;-1:-1:-1;;;;;;48085:17:0;;;;;;;48118:40;;48068:6;;;48085:17;48068:6;;48118:40;;48049:16;;48118:40;48038:128;47975:191;:::o;38176:716::-;38360:88;;-1:-1:-1;;;38360:88:0;;38339:4;;-1:-1:-1;;;;;38360:45:0;;;;;:88;;42608:10;;38427:4;;38433:7;;38442:5;;38360:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38360:88:0;;;;;;;;-1:-1:-1;;38360:88:0;;;;;;;;;;;;:::i;:::-;;;38356:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38643:13:0;;38639:235;;38689:40;;-1:-1:-1;;;38689:40:0;;;;;;;;;;;38639:235;38832:6;38826:13;38817:6;38813:2;38809:15;38802:38;38356:529;-1:-1:-1;;;;;;38519:64:0;-1:-1:-1;;;38519:64:0;;-1:-1:-1;38356:529:0;38176:716;;;;;;:::o;20558:318::-;20631:13;20662:16;20670:7;20662;:16::i;:::-;20657:59;;20687:29;;-1:-1:-1;;;20687:29:0;;;;;;;;;;;20657:59;20729:21;20753:10;:8;:10::i;:::-;20729:34;;20787:7;20781:21;20806:1;20781:26;;:87;;;;;;;;;;;;;;;;;20834:7;20843:18;20853:7;20843:9;:18::i;:::-;20817:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20774:94;20558:318;-1:-1:-1;;;20558:318:0:o;24837:681::-;24960:19;24966:2;24970:8;24960:5;:19::i;:::-;-1:-1:-1;;;;;25021:14:0;;;:19;25017:483;;25061:11;25075:13;25123:14;;;25156:233;25187:62;25226:1;25230:2;25234:7;;;;;;25243:5;25187:30;:62::i;:::-;25182:167;;25285:40;;-1:-1:-1;;;25285:40:0;;;;;;;;;;;25182:167;25384:3;25376:5;:11;25156:233;;25471:3;25454:13;;:20;25450:34;;25476:8;;;25450:34;25042:458;;24837:681;;;:::o;48993:102::-;49053:13;49082:7;49075:14;;;;;:::i;42732:1960::-;43201:4;43195:11;;43208:3;43191:21;;43286:17;;;;43982:11;;;43861:5;44114:2;44128;44118:13;;44110:22;43982:11;44097:36;44169:2;44159:13;;43753:697;44188:4;43753:697;;;44379:1;44374:3;44370:11;44363:18;;44430:2;44424:4;44420:13;44416:2;44412:22;44407:3;44399:36;44283:2;44273:13;;43753:697;;;-1:-1:-1;44480:13:0;;;-1:-1:-1;;44595:12:0;;;44655:19;;;44595:12;42732:1960;-1:-1:-1;42732:1960:0:o;25791:1529::-;25856:20;25879:13;-1:-1:-1;;;;;25907:16:0;;25903:48;;25932:19;;-1:-1:-1;;;25932:19:0;;;;;;;;;;;25903:48;25966:13;25962:44;;25988:18;;-1:-1:-1;;;25988:18:0;;;;;;;;;;;25962:44;-1:-1:-1;;;;;26494:22:0;;;;;;:18;:22;;9938:2;26494:22;;:70;;26532:31;26520:44;;26494:70;;;19902:11;19878:22;19874:40;-1:-1:-1;21612:15:0;;21587:23;21583:45;19871:51;19861:62;26807:31;;;;:17;:31;;;;;:173;26825:12;27056:23;;;27094:101;27121:35;;27146:9;;;;;-1:-1:-1;;;;;27121:35:0;;;27138:1;;27121:35;;27138:1;;27121:35;27190:3;27180:7;:13;27094:101;;27211:13;:19;-1:-1:-1;23050:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:673::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:160::-;1346:20;;1402:13;;1395:21;1385:32;;1375:60;;1431:1;1428;1421:12;1446:186;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1597:29;1616:9;1597:29;:::i;1637:260::-;1705:6;1713;1766:2;1754:9;1745:7;1741:23;1737:32;1734:52;;;1782:1;1779;1772:12;1734:52;1805:29;1824:9;1805:29;:::i;:::-;1795:39;;1853:38;1887:2;1876:9;1872:18;1853:38;:::i;:::-;1843:48;;1637:260;;;;;:::o;1902:328::-;1979:6;1987;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;;2135:38;2169:2;2158:9;2154:18;2135:38;:::i;:::-;2125:48;;2220:2;2209:9;2205:18;2192:32;2182:42;;1902:328;;;;;:::o;2235:666::-;2330:6;2338;2346;2354;2407:3;2395:9;2386:7;2382:23;2378:33;2375:53;;;2424:1;2421;2414:12;2375:53;2447:29;2466:9;2447:29;:::i;:::-;2437:39;;2495:38;2529:2;2518:9;2514:18;2495:38;:::i;:::-;2485:48;;2580:2;2569:9;2565:18;2552:32;2542:42;;2635:2;2624:9;2620:18;2607:32;2662:18;2654:6;2651:30;2648:50;;;2694:1;2691;2684:12;2648:50;2717:22;;2770:4;2762:13;;2758:27;-1:-1:-1;2748:55:1;;2799:1;2796;2789:12;2748:55;2822:73;2887:7;2882:2;2869:16;2864:2;2860;2856:11;2822:73;:::i;:::-;2812:83;;;2235:666;;;;;;;:::o;2906:254::-;2971:6;2979;3032:2;3020:9;3011:7;3007:23;3003:32;3000:52;;;3048:1;3045;3038:12;3000:52;3071:29;3090:9;3071:29;:::i;:::-;3061:39;;3119:35;3150:2;3139:9;3135:18;3119:35;:::i;3165:254::-;3233:6;3241;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3333:29;3352:9;3333:29;:::i;:::-;3323:39;3409:2;3394:18;;;;3381:32;;-1:-1:-1;;;3165:254:1:o;3424:847::-;3544:6;3552;3560;3613:2;3601:9;3592:7;3588:23;3584:32;3581:52;;;3629:1;3626;3619:12;3581:52;3669:9;3656:23;3698:18;3739:2;3731:6;3728:14;3725:34;;;3755:1;3752;3745:12;3725:34;3793:6;3782:9;3778:22;3768:32;;3838:7;3831:4;3827:2;3823:13;3819:27;3809:55;;3860:1;3857;3850:12;3809:55;3900:2;3887:16;3926:2;3918:6;3915:14;3912:34;;;3942:1;3939;3932:12;3912:34;3997:7;3990:4;3980:6;3977:1;3973:14;3969:2;3965:23;3961:34;3958:47;3955:67;;;4018:1;4015;4008:12;3955:67;4049:4;4041:13;;;;-1:-1:-1;4073:6:1;-1:-1:-1;4117:20:1;;;4104:34;;4150:16;;;4147:36;;;4179:1;4176;4169:12;4147:36;;4202:63;4257:7;4246:8;4235:9;4231:24;4202:63;:::i;:::-;4192:73;;;3424:847;;;;;:::o;4276:1157::-;4394:6;4402;4455:2;4443:9;4434:7;4430:23;4426:32;4423:52;;;4471:1;4468;4461:12;4423:52;4511:9;4498:23;4540:18;4581:2;4573:6;4570:14;4567:34;;;4597:1;4594;4587:12;4567:34;4635:6;4624:9;4620:22;4610:32;;4680:7;4673:4;4669:2;4665:13;4661:27;4651:55;;4702:1;4699;4692:12;4651:55;4738:2;4725:16;4760:4;4784:60;4800:43;4840:2;4800:43;:::i;4784:60::-;4866:3;4890:2;4885:3;4878:15;4918:2;4913:3;4909:12;4902:19;;4949:2;4945;4941:11;4997:7;4992:2;4986;4983:1;4979:10;4975:2;4971:19;4967:28;4964:41;4961:61;;;5018:1;5015;5008:12;4961:61;5040:1;5031:10;;5050:169;5064:2;5061:1;5058:9;5050:169;;;5121:23;5140:3;5121:23;:::i;:::-;5109:36;;5082:1;5075:9;;;;;5165:12;;;;5197;;5050:169;;;-1:-1:-1;5238:5:1;-1:-1:-1;;5281:18:1;;5268:32;;-1:-1:-1;;5312:16:1;;;5309:36;;;5341:1;5338;5331:12;5309:36;;5364:63;5419:7;5408:8;5397:9;5393:24;5364:63;:::i;:::-;5354:73;;;4276:1157;;;;;:::o;5438:180::-;5494:6;5547:2;5535:9;5526:7;5522:23;5518:32;5515:52;;;5563:1;5560;5553:12;5515:52;5586:26;5602:9;5586:26;:::i;5623:245::-;5681:6;5734:2;5722:9;5713:7;5709:23;5705:32;5702:52;;;5750:1;5747;5740:12;5702:52;5789:9;5776:23;5808:30;5832:5;5808:30;:::i;5873:249::-;5942:6;5995:2;5983:9;5974:7;5970:23;5966:32;5963:52;;;6011:1;6008;6001:12;5963:52;6043:9;6037:16;6062:30;6086:5;6062:30;:::i;6127:450::-;6196:6;6249:2;6237:9;6228:7;6224:23;6220:32;6217:52;;;6265:1;6262;6255:12;6217:52;6305:9;6292:23;6338:18;6330:6;6327:30;6324:50;;;6370:1;6367;6360:12;6324:50;6393:22;;6446:4;6438:13;;6434:27;-1:-1:-1;6424:55:1;;6475:1;6472;6465:12;6424:55;6498:73;6563:7;6558:2;6545:16;6540:2;6536;6532:11;6498:73;:::i;6582:180::-;6641:6;6694:2;6682:9;6673:7;6669:23;6665:32;6662:52;;;6710:1;6707;6700:12;6662:52;-1:-1:-1;6733:23:1;;6582:180;-1:-1:-1;6582:180:1:o;6767:257::-;6808:3;6846:5;6840:12;6873:6;6868:3;6861:19;6889:63;6945:6;6938:4;6933:3;6929:14;6922:4;6915:5;6911:16;6889:63;:::i;:::-;7006:2;6985:15;-1:-1:-1;;6981:29:1;6972:39;;;;7013:4;6968:50;;6767:257;-1:-1:-1;;6767:257:1:o;7029:470::-;7208:3;7246:6;7240:13;7262:53;7308:6;7303:3;7296:4;7288:6;7284:17;7262:53;:::i;:::-;7378:13;;7337:16;;;;7400:57;7378:13;7337:16;7434:4;7422:17;;7400:57;:::i;:::-;7473:20;;7029:470;-1:-1:-1;;;;7029:470:1:o;7504:1335::-;7680:3;7718:6;7712:13;7744:4;7757:51;7801:6;7796:3;7791:2;7783:6;7779:15;7757:51;:::i;:::-;7893:13;;7830:16;;;;7866:1;;7953;7975:18;;;;8028;;;;8055:93;;8133:4;8123:8;8119:19;8107:31;;8055:93;8196:2;8186:8;8183:16;8163:18;8160:40;8157:167;;;-1:-1:-1;;;8223:33:1;;8279:4;8276:1;8269:15;8309:4;8230:3;8297:17;8157:167;8340:18;8367:110;;;;8491:1;8486:328;;;;8333:481;;8367:110;-1:-1:-1;;8402:24:1;;8388:39;;8447:20;;;;-1:-1:-1;8367:110:1;;8486:328;14953:1;14946:14;;;14990:4;14977:18;;8581:1;8595:169;8609:8;8606:1;8603:15;8595:169;;;8691:14;;8676:13;;;8669:37;8734:16;;;;8626:10;;8595:169;;;8599:3;;8795:8;8788:5;8784:20;8777:27;;8333:481;-1:-1:-1;8830:3:1;;7504:1335;-1:-1:-1;;;;;;;;;;7504:1335:1:o;9262:488::-;-1:-1:-1;;;;;9531:15:1;;;9513:34;;9583:15;;9578:2;9563:18;;9556:43;9630:2;9615:18;;9608:34;;;9678:3;9673:2;9658:18;;9651:31;;;9456:4;;9699:45;;9724:19;;9716:6;9699:45;:::i;:::-;9691:53;9262:488;-1:-1:-1;;;;;;9262:488:1:o;9947:219::-;10096:2;10085:9;10078:21;10059:4;10116:44;10156:2;10145:9;10141:18;10133:6;10116:44;:::i;14412:275::-;14483:2;14477:9;14548:2;14529:13;;-1:-1:-1;;14525:27:1;14513:40;;14583:18;14568:34;;14604:22;;;14565:62;14562:88;;;14630:18;;:::i;:::-;14666:2;14659:22;14412:275;;-1:-1:-1;14412:275:1:o;14692:183::-;14752:4;14785:18;14777:6;14774:30;14771:56;;;14807:18;;:::i;:::-;-1:-1:-1;14852:1:1;14848:14;14864:4;14844:25;;14692:183::o;15006:128::-;15046:3;15077:1;15073:6;15070:1;15067:13;15064:39;;;15083:18;;:::i;:::-;-1:-1:-1;15119:9:1;;15006:128::o;15139:168::-;15179:7;15245:1;15241;15237:6;15233:14;15230:1;15227:21;15222:1;15215:9;15208:17;15204:45;15201:71;;;15252:18;;:::i;:::-;-1:-1:-1;15292:9:1;;15139:168::o;15312:258::-;15384:1;15394:113;15408:6;15405:1;15402:13;15394:113;;;15484:11;;;15478:18;15465:11;;;15458:39;15430:2;15423:10;15394:113;;;15525:6;15522:1;15519:13;15516:48;;;-1:-1:-1;;15560:1:1;15542:16;;15535:27;15312:258::o;15575:380::-;15654:1;15650:12;;;;15697;;;15718:61;;15772:4;15764:6;15760:17;15750:27;;15718:61;15825:2;15817:6;15814:14;15794:18;15791:38;15788:161;;;15871:10;15866:3;15862:20;15859:1;15852:31;15906:4;15903:1;15896:15;15934:4;15931:1;15924:15;15788:161;;15575:380;;;:::o;15960:135::-;15999:3;-1:-1:-1;;16020:17:1;;16017:43;;;16040:18;;:::i;:::-;-1:-1:-1;16087:1:1;16076:13;;15960:135::o;16100:127::-;16161:10;16156:3;16152:20;16149:1;16142:31;16192:4;16189:1;16182:15;16216:4;16213:1;16206:15;16232:127;16293:10;16288:3;16284:20;16281:1;16274:31;16324:4;16321:1;16314:15;16348:4;16345:1;16338:15;16364:127;16425:10;16420:3;16416:20;16413:1;16406:31;16456:4;16453:1;16446:15;16480:4;16477:1;16470:15;16496:131;-1:-1:-1;;;;;;16570:32:1;;16560:43;;16550:71;;16617:1;16614;16607:12

Swarm Source

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