ETH Price: $3,015.01 (+4.65%)
Gas: 1 Gwei

Token

Kazumiverse (RNNRS)
 

Overview

Max Total Supply

340 RNNRS

Holders

121

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RNNRS
0x1f5281b315996ca12eab236ff1dc6c4a5050277c
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:
Kazumiverse

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 4 of 7: Kazumiverse.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import './ERC721A.sol';
import './Ownable.sol';
import './ReentrancyGuard.sol';

error SoldOut();
error MaxMintTokensExceeded();
error CantWithdrawFunds();
error TxOriginNotSender();
error NotEnoughFunds();
error MintIsPaused();

contract Kazumiverse is ERC721A, Ownable, ReentrancyGuard {

    string public baseURI;
    uint256 public maxSupply;
    uint256 public maxMintPerWallet;
    uint256 public price;
    bool public paused;

    constructor( uint256 _maxSupply, string memory _tokenURI, uint256 _maxMintPerWallet, uint256 _price, bool _paused ) ERC721A("Kazumiverse", "RNNRS") {
        maxSupply = _maxSupply;
        baseURI = _tokenURI;
        maxMintPerWallet = _maxMintPerWallet;
        price = _price;
        paused = _paused;
    }

    function mint(uint256 quantity) external payable nonReentrant {
        if( paused ) revert MintIsPaused();
        if( tx.origin != msg.sender ) revert TxOriginNotSender();
        if( msg.value < quantity * price ) revert NotEnoughFunds();
        if( totalSupply() + quantity > maxSupply ) revert SoldOut();
        if( _numberMinted(msg.sender) + quantity > maxMintPerWallet ) revert MaxMintTokensExceeded();

        _mint(msg.sender, quantity);
    }
    
    function numberMinted(address minter) external view returns(uint256) {
        return _numberMinted(minter);
    }

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

    function gift(address[] calldata receivers, uint256[] calldata quantities ) external onlyOwner {

        uint256 totalQuantity = 0;

        for( uint256 i = 0; i < quantities.length; i++ ) {
            totalQuantity += quantities[i];
        }

        if( totalSupply() + totalQuantity > maxSupply ) revert SoldOut();

        for( uint256 i = 0; i < receivers.length; i++ ) {
            _mint(receivers[i], quantities[i]);
        }
    }

    function setBaseURI(string memory _tokenURI) external onlyOwner {
        baseURI = _tokenURI;
    }

    function setPause(bool _paused) external onlyOwner {
        paused = _paused;
    }

    function setMaxMintPerWallet(uint256 _maxMint) external onlyOwner {
        maxMintPerWallet = _maxMint;
    }

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

    function withdrawAll() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        if( !success ) revert CantWithdrawFunds();
    }

}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 2 of 7: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

File 3 of 7: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 5 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

File 6 of 7: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 7 of 7: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"uint256","name":"_maxMintPerWallet","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"bool","name":"_paused","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"CantWithdrawFunds","type":"error"},{"inputs":[],"name":"MaxMintTokensExceeded","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintIsPaused","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotEnoughFunds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SoldOut","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"TxOriginNotSender","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":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintPerWallet","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":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMaxMintPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200328838038062003288833981810160405281019062000037919062000397565b6040518060400160405280600b81526020017f4b617a756d6976657273650000000000000000000000000000000000000000008152506040518060400160405280600581526020017f524e4e52530000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb9291906200023b565b508060039080519060200190620000d49291906200023b565b50620000e56200016860201b60201c565b60008190555050506200010d620001016200016d60201b60201c565b6200017560201b60201c565b600160098190555084600b8190555083600a9080519060200190620001349291906200023b565b5082600c8190555081600d8190555080600e60006101000a81548160ff02191690831515021790555050505050506200060c565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024990620004e9565b90600052602060002090601f0160209004810192826200026d5760008555620002b9565b82601f106200028857805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b85782518255916020019190600101906200029b565b5b509050620002c89190620002cc565b5090565b5b80821115620002e7576000816000905550600101620002cd565b5090565b600062000302620002fc8462000467565b6200043e565b905082815260208101848484011115620003215762000320620005b8565b5b6200032e848285620004b3565b509392505050565b6000815190506200034781620005d8565b92915050565b600082601f830112620003655762000364620005b3565b5b815162000377848260208601620002eb565b91505092915050565b6000815190506200039181620005f2565b92915050565b600080600080600060a08688031215620003b657620003b5620005c2565b5b6000620003c68882890162000380565b955050602086015167ffffffffffffffff811115620003ea57620003e9620005bd565b5b620003f8888289016200034d565b94505060406200040b8882890162000380565b93505060606200041e8882890162000380565b9250506080620004318882890162000336565b9150509295509295909350565b60006200044a6200045d565b90506200045882826200051f565b919050565b6000604051905090565b600067ffffffffffffffff82111562000485576200048462000584565b5b6200049082620005c7565b9050602081019050919050565b60008115159050919050565b6000819050919050565b60005b83811015620004d3578082015181840152602081019050620004b6565b83811115620004e3576000848401525b50505050565b600060028204905060018216806200050257607f821691505b6020821081141562000519576200051862000555565b5b50919050565b6200052a82620005c7565b810181811067ffffffffffffffff821117156200054c576200054b62000584565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005e3816200049d565b8114620005ef57600080fd5b50565b620005fd81620004a9565b81146200060957600080fd5b50565b612c6c806200061c6000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b228d92511610095578063d5abeb0111610064578063d5abeb011461063f578063dc33e6811461066a578063e985e9c5146106a7578063f2fde38b146106e4576101cd565b8063b228d92514610585578063b88d4fde146105b0578063bedb86fb146105d9578063c87b56dd14610602576101cd565b8063a035b1fe116100d1578063a035b1fe146104ec578063a0712d6814610517578063a22cb46514610533578063afdf61341461055c576101cd565b80638da5cb5b1461046d57806391b7f5ed1461049857806395d89b41146104c1576101cd565b806355f804b31161016f57806370a082311161013e57806370a08231146103d9578063715018a6146104165780637705f9b51461042d578063853828b614610456576101cd565b806355f804b31461031d5780635c975abb146103465780636352211e146103715780636c0360eb146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb57806342842e0e146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906123e0565b61070d565b60405161020691906126ac565b60405180910390f35b34801561021b57600080fd5b5061022461079f565b60405161023191906126c7565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612483565b610831565b60405161026e9190612645565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906122f2565b6108b0565b005b3480156102ac57600080fd5b506102b56109f4565b6040516102c29190612749565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906121dc565b610a0b565b005b34801561030057600080fd5b5061031b600480360381019061031691906121dc565b610d30565b005b34801561032957600080fd5b50610344600480360381019061033f919061243a565b610d50565b005b34801561035257600080fd5b5061035b610d72565b60405161036891906126ac565b60405180910390f35b34801561037d57600080fd5b5061039860048036038101906103939190612483565b610d85565b6040516103a59190612645565b60405180910390f35b3480156103ba57600080fd5b506103c3610d97565b6040516103d091906126c7565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061216f565b610e25565b60405161040d9190612749565b60405180910390f35b34801561042257600080fd5b5061042b610ede565b005b34801561043957600080fd5b50610454600480360381019061044f9190612332565b610ef2565b005b34801561046257600080fd5b5061046b611005565b005b34801561047957600080fd5b506104826110b3565b60405161048f9190612645565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612483565b6110dd565b005b3480156104cd57600080fd5b506104d66110ef565b6040516104e391906126c7565b60405180910390f35b3480156104f857600080fd5b50610501611181565b60405161050e9190612749565b60405180910390f35b610531600480360381019061052c9190612483565b611187565b005b34801561053f57600080fd5b5061055a600480360381019061055591906122b2565b611334565b005b34801561056857600080fd5b50610583600480360381019061057e9190612483565b61143f565b005b34801561059157600080fd5b5061059a611451565b6040516105a79190612749565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d2919061222f565b611457565b005b3480156105e557600080fd5b5061060060048036038101906105fb91906123b3565b6114ca565b005b34801561060e57600080fd5b5061062960048036038101906106249190612483565b6114ef565b60405161063691906126c7565b60405180910390f35b34801561064b57600080fd5b5061065461158e565b6040516106619190612749565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061216f565b611594565b60405161069e9190612749565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c9919061219c565b6115a6565b6040516106db91906126ac565b60405180910390f35b3480156106f057600080fd5b5061070b6004803603810190610706919061216f565b61163a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107ae9061299f565b80601f01602080910402602001604051908101604052809291908181526020018280546107da9061299f565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600061083c826116be565b610872576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bb82610d85565b90508073ffffffffffffffffffffffffffffffffffffffff166108dc61171d565b73ffffffffffffffffffffffffffffffffffffffff161461093f576109088161090361171d565b6115a6565b61093e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109fe611725565b6001546000540303905090565b6000610a168261172a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a7d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a89846117f8565b91509150610a9f8187610a9a61171d565b61181f565b610aeb57610ab486610aaf61171d565b6115a6565b610aea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b52576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b5f8686866001611863565b8015610b6a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c3885610c14888887611869565b7c020000000000000000000000000000000000000000000000000000000017611891565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cc0576000600185019050600060046000838152602001908152602001600020541415610cbe576000548114610cbd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d2886868660016118bc565b505050505050565b610d4b83838360405180602001604052806000815250611457565b505050565b610d586118c2565b80600a9080519060200190610d6e929190611ed7565b5050565b600e60009054906101000a900460ff1681565b6000610d908261172a565b9050919050565b600a8054610da49061299f565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd09061299f565b8015610e1d5780601f10610df257610100808354040283529160200191610e1d565b820191906000526020600020905b815481529060010190602001808311610e0057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ee66118c2565b610ef06000611940565b565b610efa6118c2565b6000805b83839050811015610f4357838382818110610f1c57610f1b612aa9565b5b9050602002013582610f2e9190612839565b91508080610f3b90612a02565b915050610efe565b50600b5481610f506109f4565b610f5a9190612839565b1115610f92576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b85859050811015610ffd57610fea868683818110610fb657610fb5612aa9565b5b9050602002016020810190610fcb919061216f565b858584818110610fde57610fdd612aa9565b5b90506020020135611a06565b8080610ff590612a02565b915050610f95565b505050505050565b61100d6118c2565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103390612630565b60006040518083038185875af1925050503d8060008114611070576040519150601f19603f3d011682016040523d82523d6000602084013e611075565b606091505b50509050806110b0576040517fc9ae8eaa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110e56118c2565b80600d8190555050565b6060600380546110fe9061299f565b80601f016020809104026020016040519081016040528092919081815260200182805461112a9061299f565b80156111775780601f1061114c57610100808354040283529160200191611177565b820191906000526020600020905b81548152906001019060200180831161115a57829003601f168201915b5050505050905090565b600d5481565b61118f611bc3565b600e60009054906101000a900460ff16156111d6576040517f58fc318200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461123b576040517fed8e4aa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5481611249919061288f565b341015611282576040517f81b5ad6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548161128e6109f4565b6112989190612839565b11156112d0576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54816112dd33611c13565b6112e79190612839565b111561131f576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113293382611a06565b611331611c6a565b50565b806007600061134161171d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113ee61171d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143391906126ac565b60405180910390a35050565b6114476118c2565b80600c8190555050565b600c5481565b611462848484610a0b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114c45761148d84848484611c74565b6114c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114d26118c2565b80600e60006101000a81548160ff02191690831515021790555050565b60606114fa826116be565b611530576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061153a611dd4565b905060008151141561155b5760405180602001604052806000815250611586565b8061156584611e66565b60405160200161157692919061260c565b6040516020818303038152906040525b915050919050565b600b5481565b600061159f82611c13565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116426118c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a9906126e9565b60405180910390fd5b6116bb81611940565b50565b6000816116c9611725565b111580156116d8575060005482105b8015611716575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611739611725565b116117c1576000548110156117c05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117be575b60008114156117b4576004600083600190039350838152602001908152602001600020549050611789565b80925050506117f3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611880868684611eb6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6118ca611ebf565b73ffffffffffffffffffffffffffffffffffffffff166118e86110b3565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590612709565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415611a47576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a546000848385611863565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611acb83611abc6000866000611869565b611ac585611ec7565b17611891565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611b6c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611b31565b506000821415611ba8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611bbe60008483856118bc565b505050565b60026009541415611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090612729565b60405180910390fd5b6002600981905550565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c9a61171d565b8786866040518563ffffffff1660e01b8152600401611cbc9493929190612660565b602060405180830381600087803b158015611cd657600080fd5b505af1925050508015611d0757506040513d601f19601f82011682018060405250810190611d04919061240d565b60015b611d81573d8060008114611d37576040519150601f19603f3d011682016040523d82523d6000602084013e611d3c565b606091505b50600081511415611d79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611de39061299f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0f9061299f565b8015611e5c5780601f10611e3157610100808354040283529160200191611e5c565b820191906000526020600020905b815481529060010190602001808311611e3f57829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611ea257600183039250600a81066030018353600a8104905080611e9d57611ea2565b611e77565b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b828054611ee39061299f565b90600052602060002090601f016020900481019282611f055760008555611f4c565b82601f10611f1e57805160ff1916838001178555611f4c565b82800160010185558215611f4c579182015b82811115611f4b578251825591602001919060010190611f30565b5b509050611f599190611f5d565b5090565b5b80821115611f76576000816000905550600101611f5e565b5090565b6000611f8d611f8884612789565b612764565b905082815260208101848484011115611fa957611fa8612b16565b5b611fb484828561295d565b509392505050565b6000611fcf611fca846127ba565b612764565b905082815260208101848484011115611feb57611fea612b16565b5b611ff684828561295d565b509392505050565b60008135905061200d81612bda565b92915050565b60008083601f84011261202957612028612b0c565b5b8235905067ffffffffffffffff81111561204657612045612b07565b5b60208301915083602082028301111561206257612061612b11565b5b9250929050565b60008083601f84011261207f5761207e612b0c565b5b8235905067ffffffffffffffff81111561209c5761209b612b07565b5b6020830191508360208202830111156120b8576120b7612b11565b5b9250929050565b6000813590506120ce81612bf1565b92915050565b6000813590506120e381612c08565b92915050565b6000815190506120f881612c08565b92915050565b600082601f83011261211357612112612b0c565b5b8135612123848260208601611f7a565b91505092915050565b600082601f83011261214157612140612b0c565b5b8135612151848260208601611fbc565b91505092915050565b60008135905061216981612c1f565b92915050565b60006020828403121561218557612184612b20565b5b600061219384828501611ffe565b91505092915050565b600080604083850312156121b3576121b2612b20565b5b60006121c185828601611ffe565b92505060206121d285828601611ffe565b9150509250929050565b6000806000606084860312156121f5576121f4612b20565b5b600061220386828701611ffe565b935050602061221486828701611ffe565b92505060406122258682870161215a565b9150509250925092565b6000806000806080858703121561224957612248612b20565b5b600061225787828801611ffe565b945050602061226887828801611ffe565b93505060406122798782880161215a565b925050606085013567ffffffffffffffff81111561229a57612299612b1b565b5b6122a6878288016120fe565b91505092959194509250565b600080604083850312156122c9576122c8612b20565b5b60006122d785828601611ffe565b92505060206122e8858286016120bf565b9150509250929050565b6000806040838503121561230957612308612b20565b5b600061231785828601611ffe565b92505060206123288582860161215a565b9150509250929050565b6000806000806040858703121561234c5761234b612b20565b5b600085013567ffffffffffffffff81111561236a57612369612b1b565b5b61237687828801612013565b9450945050602085013567ffffffffffffffff81111561239957612398612b1b565b5b6123a587828801612069565b925092505092959194509250565b6000602082840312156123c9576123c8612b20565b5b60006123d7848285016120bf565b91505092915050565b6000602082840312156123f6576123f5612b20565b5b6000612404848285016120d4565b91505092915050565b60006020828403121561242357612422612b20565b5b6000612431848285016120e9565b91505092915050565b6000602082840312156124505761244f612b20565b5b600082013567ffffffffffffffff81111561246e5761246d612b1b565b5b61247a8482850161212c565b91505092915050565b60006020828403121561249957612498612b20565b5b60006124a78482850161215a565b91505092915050565b6124b9816128e9565b82525050565b6124c8816128fb565b82525050565b60006124d9826127eb565b6124e38185612801565b93506124f381856020860161296c565b6124fc81612b25565b840191505092915050565b6000612512826127f6565b61251c818561281d565b935061252c81856020860161296c565b61253581612b25565b840191505092915050565b600061254b826127f6565b612555818561282e565b935061256581856020860161296c565b80840191505092915050565b600061257e60268361281d565b915061258982612b36565b604082019050919050565b60006125a160208361281d565b91506125ac82612b85565b602082019050919050565b60006125c4600083612812565b91506125cf82612bae565b600082019050919050565b60006125e7601f8361281d565b91506125f282612bb1565b602082019050919050565b61260681612953565b82525050565b60006126188285612540565b91506126248284612540565b91508190509392505050565b600061263b826125b7565b9150819050919050565b600060208201905061265a60008301846124b0565b92915050565b600060808201905061267560008301876124b0565b61268260208301866124b0565b61268f60408301856125fd565b81810360608301526126a181846124ce565b905095945050505050565b60006020820190506126c160008301846124bf565b92915050565b600060208201905081810360008301526126e18184612507565b905092915050565b6000602082019050818103600083015261270281612571565b9050919050565b6000602082019050818103600083015261272281612594565b9050919050565b60006020820190508181036000830152612742816125da565b9050919050565b600060208201905061275e60008301846125fd565b92915050565b600061276e61277f565b905061277a82826129d1565b919050565b6000604051905090565b600067ffffffffffffffff8211156127a4576127a3612ad8565b5b6127ad82612b25565b9050602081019050919050565b600067ffffffffffffffff8211156127d5576127d4612ad8565b5b6127de82612b25565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061284482612953565b915061284f83612953565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288457612883612a4b565b5b828201905092915050565b600061289a82612953565b91506128a583612953565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128de576128dd612a4b565b5b828202905092915050565b60006128f482612933565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561298a57808201518184015260208101905061296f565b83811115612999576000848401525b50505050565b600060028204905060018216806129b757607f821691505b602082108114156129cb576129ca612a7a565b5b50919050565b6129da82612b25565b810181811067ffffffffffffffff821117156129f9576129f8612ad8565b5b80604052505050565b6000612a0d82612953565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a4057612a3f612a4b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b612be3816128e9565b8114612bee57600080fd5b50565b612bfa816128fb565b8114612c0557600080fd5b50565b612c1181612907565b8114612c1c57600080fd5b50565b612c2881612953565b8114612c3357600080fd5b5056fea26469706673582212205bc4c9e64914f2aadd87d3938e7eaa6327831ea79bd7f9f938ed1ddf3d890daf64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000001bc00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000001aa535d3d0c0000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f736b796c61627a61692e78797a2f6d657461646174612f646174612f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063b228d92511610095578063d5abeb0111610064578063d5abeb011461063f578063dc33e6811461066a578063e985e9c5146106a7578063f2fde38b146106e4576101cd565b8063b228d92514610585578063b88d4fde146105b0578063bedb86fb146105d9578063c87b56dd14610602576101cd565b8063a035b1fe116100d1578063a035b1fe146104ec578063a0712d6814610517578063a22cb46514610533578063afdf61341461055c576101cd565b80638da5cb5b1461046d57806391b7f5ed1461049857806395d89b41146104c1576101cd565b806355f804b31161016f57806370a082311161013e57806370a08231146103d9578063715018a6146104165780637705f9b51461042d578063853828b614610456576101cd565b806355f804b31461031d5780635c975abb146103465780636352211e146103715780636c0360eb146103ae576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb57806342842e0e146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906123e0565b61070d565b60405161020691906126ac565b60405180910390f35b34801561021b57600080fd5b5061022461079f565b60405161023191906126c7565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612483565b610831565b60405161026e9190612645565b60405180910390f35b34801561028357600080fd5b5061029e600480360381019061029991906122f2565b6108b0565b005b3480156102ac57600080fd5b506102b56109f4565b6040516102c29190612749565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed91906121dc565b610a0b565b005b34801561030057600080fd5b5061031b600480360381019061031691906121dc565b610d30565b005b34801561032957600080fd5b50610344600480360381019061033f919061243a565b610d50565b005b34801561035257600080fd5b5061035b610d72565b60405161036891906126ac565b60405180910390f35b34801561037d57600080fd5b5061039860048036038101906103939190612483565b610d85565b6040516103a59190612645565b60405180910390f35b3480156103ba57600080fd5b506103c3610d97565b6040516103d091906126c7565b60405180910390f35b3480156103e557600080fd5b5061040060048036038101906103fb919061216f565b610e25565b60405161040d9190612749565b60405180910390f35b34801561042257600080fd5b5061042b610ede565b005b34801561043957600080fd5b50610454600480360381019061044f9190612332565b610ef2565b005b34801561046257600080fd5b5061046b611005565b005b34801561047957600080fd5b506104826110b3565b60405161048f9190612645565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612483565b6110dd565b005b3480156104cd57600080fd5b506104d66110ef565b6040516104e391906126c7565b60405180910390f35b3480156104f857600080fd5b50610501611181565b60405161050e9190612749565b60405180910390f35b610531600480360381019061052c9190612483565b611187565b005b34801561053f57600080fd5b5061055a600480360381019061055591906122b2565b611334565b005b34801561056857600080fd5b50610583600480360381019061057e9190612483565b61143f565b005b34801561059157600080fd5b5061059a611451565b6040516105a79190612749565b60405180910390f35b3480156105bc57600080fd5b506105d760048036038101906105d2919061222f565b611457565b005b3480156105e557600080fd5b5061060060048036038101906105fb91906123b3565b6114ca565b005b34801561060e57600080fd5b5061062960048036038101906106249190612483565b6114ef565b60405161063691906126c7565b60405180910390f35b34801561064b57600080fd5b5061065461158e565b6040516106619190612749565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c919061216f565b611594565b60405161069e9190612749565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c9919061219c565b6115a6565b6040516106db91906126ac565b60405180910390f35b3480156106f057600080fd5b5061070b6004803603810190610706919061216f565b61163a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546107ae9061299f565b80601f01602080910402602001604051908101604052809291908181526020018280546107da9061299f565b80156108275780601f106107fc57610100808354040283529160200191610827565b820191906000526020600020905b81548152906001019060200180831161080a57829003601f168201915b5050505050905090565b600061083c826116be565b610872576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108bb82610d85565b90508073ffffffffffffffffffffffffffffffffffffffff166108dc61171d565b73ffffffffffffffffffffffffffffffffffffffff161461093f576109088161090361171d565b6115a6565b61093e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109fe611725565b6001546000540303905090565b6000610a168261172a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a7d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a89846117f8565b91509150610a9f8187610a9a61171d565b61181f565b610aeb57610ab486610aaf61171d565b6115a6565b610aea576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b52576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b5f8686866001611863565b8015610b6a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c3885610c14888887611869565b7c020000000000000000000000000000000000000000000000000000000017611891565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cc0576000600185019050600060046000838152602001908152602001600020541415610cbe576000548114610cbd578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d2886868660016118bc565b505050505050565b610d4b83838360405180602001604052806000815250611457565b505050565b610d586118c2565b80600a9080519060200190610d6e929190611ed7565b5050565b600e60009054906101000a900460ff1681565b6000610d908261172a565b9050919050565b600a8054610da49061299f565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd09061299f565b8015610e1d5780601f10610df257610100808354040283529160200191610e1d565b820191906000526020600020905b815481529060010190602001808311610e0057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e8d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ee66118c2565b610ef06000611940565b565b610efa6118c2565b6000805b83839050811015610f4357838382818110610f1c57610f1b612aa9565b5b9050602002013582610f2e9190612839565b91508080610f3b90612a02565b915050610efe565b50600b5481610f506109f4565b610f5a9190612839565b1115610f92576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b85859050811015610ffd57610fea868683818110610fb657610fb5612aa9565b5b9050602002016020810190610fcb919061216f565b858584818110610fde57610fdd612aa9565b5b90506020020135611a06565b8080610ff590612a02565b915050610f95565b505050505050565b61100d6118c2565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161103390612630565b60006040518083038185875af1925050503d8060008114611070576040519150601f19603f3d011682016040523d82523d6000602084013e611075565b606091505b50509050806110b0576040517fc9ae8eaa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6110e56118c2565b80600d8190555050565b6060600380546110fe9061299f565b80601f016020809104026020016040519081016040528092919081815260200182805461112a9061299f565b80156111775780601f1061114c57610100808354040283529160200191611177565b820191906000526020600020905b81548152906001019060200180831161115a57829003601f168201915b5050505050905090565b600d5481565b61118f611bc3565b600e60009054906101000a900460ff16156111d6576040517f58fc318200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461123b576040517fed8e4aa400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5481611249919061288f565b341015611282576040517f81b5ad6800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b548161128e6109f4565b6112989190612839565b11156112d0576040517f52df9fe500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54816112dd33611c13565b6112e79190612839565b111561131f576040517fd58a411000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113293382611a06565b611331611c6a565b50565b806007600061134161171d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113ee61171d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161143391906126ac565b60405180910390a35050565b6114476118c2565b80600c8190555050565b600c5481565b611462848484610a0b565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114c45761148d84848484611c74565b6114c3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6114d26118c2565b80600e60006101000a81548160ff02191690831515021790555050565b60606114fa826116be565b611530576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061153a611dd4565b905060008151141561155b5760405180602001604052806000815250611586565b8061156584611e66565b60405160200161157692919061260c565b6040516020818303038152906040525b915050919050565b600b5481565b600061159f82611c13565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116426118c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a9906126e9565b60405180910390fd5b6116bb81611940565b50565b6000816116c9611725565b111580156116d8575060005482105b8015611716575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611739611725565b116117c1576000548110156117c05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117be575b60008114156117b4576004600083600190039350838152602001908152602001600020549050611789565b80925050506117f3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611880868684611eb6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6118ca611ebf565b73ffffffffffffffffffffffffffffffffffffffff166118e86110b3565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590612709565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000805490506000821415611a47576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a546000848385611863565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611acb83611abc6000866000611869565b611ac585611ec7565b17611891565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611b6c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611b31565b506000821415611ba8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611bbe60008483856118bc565b505050565b60026009541415611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0090612729565b60405180910390fd5b6002600981905550565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6001600981905550565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c9a61171d565b8786866040518563ffffffff1660e01b8152600401611cbc9493929190612660565b602060405180830381600087803b158015611cd657600080fd5b505af1925050508015611d0757506040513d601f19601f82011682018060405250810190611d04919061240d565b60015b611d81573d8060008114611d37576040519150601f19603f3d011682016040523d82523d6000602084013e611d3c565b606091505b50600081511415611d79576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611de39061299f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0f9061299f565b8015611e5c5780601f10611e3157610100808354040283529160200191611e5c565b820191906000526020600020905b815481529060010190602001808311611e3f57829003601f168201915b5050505050905090565b606060806040510190508060405280825b600115611ea257600183039250600a81066030018353600a8104905080611e9d57611ea2565b611e77565b508181036020830392508083525050919050565b60009392505050565b600033905090565b60006001821460e11b9050919050565b828054611ee39061299f565b90600052602060002090601f016020900481019282611f055760008555611f4c565b82601f10611f1e57805160ff1916838001178555611f4c565b82800160010185558215611f4c579182015b82811115611f4b578251825591602001919060010190611f30565b5b509050611f599190611f5d565b5090565b5b80821115611f76576000816000905550600101611f5e565b5090565b6000611f8d611f8884612789565b612764565b905082815260208101848484011115611fa957611fa8612b16565b5b611fb484828561295d565b509392505050565b6000611fcf611fca846127ba565b612764565b905082815260208101848484011115611feb57611fea612b16565b5b611ff684828561295d565b509392505050565b60008135905061200d81612bda565b92915050565b60008083601f84011261202957612028612b0c565b5b8235905067ffffffffffffffff81111561204657612045612b07565b5b60208301915083602082028301111561206257612061612b11565b5b9250929050565b60008083601f84011261207f5761207e612b0c565b5b8235905067ffffffffffffffff81111561209c5761209b612b07565b5b6020830191508360208202830111156120b8576120b7612b11565b5b9250929050565b6000813590506120ce81612bf1565b92915050565b6000813590506120e381612c08565b92915050565b6000815190506120f881612c08565b92915050565b600082601f83011261211357612112612b0c565b5b8135612123848260208601611f7a565b91505092915050565b600082601f83011261214157612140612b0c565b5b8135612151848260208601611fbc565b91505092915050565b60008135905061216981612c1f565b92915050565b60006020828403121561218557612184612b20565b5b600061219384828501611ffe565b91505092915050565b600080604083850312156121b3576121b2612b20565b5b60006121c185828601611ffe565b92505060206121d285828601611ffe565b9150509250929050565b6000806000606084860312156121f5576121f4612b20565b5b600061220386828701611ffe565b935050602061221486828701611ffe565b92505060406122258682870161215a565b9150509250925092565b6000806000806080858703121561224957612248612b20565b5b600061225787828801611ffe565b945050602061226887828801611ffe565b93505060406122798782880161215a565b925050606085013567ffffffffffffffff81111561229a57612299612b1b565b5b6122a6878288016120fe565b91505092959194509250565b600080604083850312156122c9576122c8612b20565b5b60006122d785828601611ffe565b92505060206122e8858286016120bf565b9150509250929050565b6000806040838503121561230957612308612b20565b5b600061231785828601611ffe565b92505060206123288582860161215a565b9150509250929050565b6000806000806040858703121561234c5761234b612b20565b5b600085013567ffffffffffffffff81111561236a57612369612b1b565b5b61237687828801612013565b9450945050602085013567ffffffffffffffff81111561239957612398612b1b565b5b6123a587828801612069565b925092505092959194509250565b6000602082840312156123c9576123c8612b20565b5b60006123d7848285016120bf565b91505092915050565b6000602082840312156123f6576123f5612b20565b5b6000612404848285016120d4565b91505092915050565b60006020828403121561242357612422612b20565b5b6000612431848285016120e9565b91505092915050565b6000602082840312156124505761244f612b20565b5b600082013567ffffffffffffffff81111561246e5761246d612b1b565b5b61247a8482850161212c565b91505092915050565b60006020828403121561249957612498612b20565b5b60006124a78482850161215a565b91505092915050565b6124b9816128e9565b82525050565b6124c8816128fb565b82525050565b60006124d9826127eb565b6124e38185612801565b93506124f381856020860161296c565b6124fc81612b25565b840191505092915050565b6000612512826127f6565b61251c818561281d565b935061252c81856020860161296c565b61253581612b25565b840191505092915050565b600061254b826127f6565b612555818561282e565b935061256581856020860161296c565b80840191505092915050565b600061257e60268361281d565b915061258982612b36565b604082019050919050565b60006125a160208361281d565b91506125ac82612b85565b602082019050919050565b60006125c4600083612812565b91506125cf82612bae565b600082019050919050565b60006125e7601f8361281d565b91506125f282612bb1565b602082019050919050565b61260681612953565b82525050565b60006126188285612540565b91506126248284612540565b91508190509392505050565b600061263b826125b7565b9150819050919050565b600060208201905061265a60008301846124b0565b92915050565b600060808201905061267560008301876124b0565b61268260208301866124b0565b61268f60408301856125fd565b81810360608301526126a181846124ce565b905095945050505050565b60006020820190506126c160008301846124bf565b92915050565b600060208201905081810360008301526126e18184612507565b905092915050565b6000602082019050818103600083015261270281612571565b9050919050565b6000602082019050818103600083015261272281612594565b9050919050565b60006020820190508181036000830152612742816125da565b9050919050565b600060208201905061275e60008301846125fd565b92915050565b600061276e61277f565b905061277a82826129d1565b919050565b6000604051905090565b600067ffffffffffffffff8211156127a4576127a3612ad8565b5b6127ad82612b25565b9050602081019050919050565b600067ffffffffffffffff8211156127d5576127d4612ad8565b5b6127de82612b25565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061284482612953565b915061284f83612953565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288457612883612a4b565b5b828201905092915050565b600061289a82612953565b91506128a583612953565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156128de576128dd612a4b565b5b828202905092915050565b60006128f482612933565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561298a57808201518184015260208101905061296f565b83811115612999576000848401525b50505050565b600060028204905060018216806129b757607f821691505b602082108114156129cb576129ca612a7a565b5b50919050565b6129da82612b25565b810181811067ffffffffffffffff821117156129f9576129f8612ad8565b5b80604052505050565b6000612a0d82612953565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a4057612a3f612a4b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b612be3816128e9565b8114612bee57600080fd5b50565b612bfa816128fb565b8114612c0557600080fd5b50565b612c1181612907565b8114612c1c57600080fd5b50565b612c2881612953565b8114612c3357600080fd5b5056fea26469706673582212205bc4c9e64914f2aadd87d3938e7eaa6327831ea79bd7f9f938ed1ddf3d890daf64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000001bc00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000001aa535d3d0c0000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f736b796c61627a61692e78797a2f6d657461646174612f646174612f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 444
Arg [1] : _tokenURI (string): https://skylabzai.xyz/metadata/data/
Arg [2] : _maxMintPerWallet (uint256): 4
Arg [3] : _price (uint256): 7500000000000000
Arg [4] : _paused (bool): True

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000001bc
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 000000000000000000000000000000000000000000000000001aa535d3d0c000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [6] : 68747470733a2f2f736b796c61627a61692e78797a2f6d657461646174612f64
Arg [7] : 6174612f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

303:2329:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9367:639:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10269:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16752:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16193:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6020:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20391:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23304:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2028:102:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;494:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11662:152:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;370:21:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7204:233:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:4;;;;;;;;;;;;;:::i;:::-;;1563:457:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2446:181;;;;;;;;;;;;;:::i;:::-;;1236:87:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2352:86:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10445:104:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;467:20:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;847:464;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17310:234:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2232:112:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;429:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24087:399:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2138:86:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10655:318:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;398:24:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1323:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17701:164:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9367:639:1;9452:4;9791:10;9776:25;;:11;:25;;;;:102;;;;9868:10;9853:25;;:11;:25;;;;9776:102;:179;;;;9945:10;9930:25;;:11;:25;;;;9776:179;9756:199;;9367:639;;;:::o;10269:100::-;10323:13;10356:5;10349:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10269:100;:::o;16752:218::-;16828:7;16853:16;16861:7;16853;:16::i;:::-;16848:64;;16878:34;;;;;;;;;;;;;;16848:64;16932:15;:24;16948:7;16932:24;;;;;;;;;;;:30;;;;;;;;;;;;16925:37;;16752:218;;;:::o;16193:400::-;16274:13;16290:16;16298:7;16290;:16::i;:::-;16274:32;;16346:5;16323:28;;:19;:17;:19::i;:::-;:28;;;16319:175;;16371:44;16388:5;16395:19;:17;:19::i;:::-;16371:16;:44::i;:::-;16366:128;;16443:35;;;;;;;;;;;;;;16366:128;16319:175;16539:2;16506:15;:24;16522:7;16506:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16577:7;16573:2;16557:28;;16566:5;16557:28;;;;;;;;;;;;16263:330;16193:400;;:::o;6020:323::-;6081:7;6309:15;:13;:15::i;:::-;6294:12;;6278:13;;:28;:46;6271:53;;6020:323;:::o;20391:2817::-;20525:27;20555;20574:7;20555:18;:27::i;:::-;20525:57;;20640:4;20599:45;;20615:19;20599:45;;;20595:86;;20653:28;;;;;;;;;;;;;;20595:86;20695:27;20724:23;20751:35;20778:7;20751:26;:35::i;:::-;20694:92;;;;20886:68;20911:15;20928:4;20934:19;:17;:19::i;:::-;20886:24;:68::i;:::-;20881:180;;20974:43;20991:4;20997:19;:17;:19::i;:::-;20974:16;:43::i;:::-;20969:92;;21026:35;;;;;;;;;;;;;;20969:92;20881:180;21092:1;21078:16;;:2;:16;;;21074:52;;;21103:23;;;;;;;;;;;;;;21074:52;21139:43;21161:4;21167:2;21171:7;21180:1;21139:21;:43::i;:::-;21275:15;21272:160;;;21415:1;21394:19;21387:30;21272:160;21812:18;:24;21831:4;21812:24;;;;;;;;;;;;;;;;21810:26;;;;;;;;;;;;21881:18;:22;21900:2;21881:22;;;;;;;;;;;;;;;;21879:24;;;;;;;;;;;22203:146;22240:2;22289:45;22304:4;22310:2;22314:19;22289:14;:45::i;:::-;2419:8;22261:73;22203:18;:146::i;:::-;22174:17;:26;22192:7;22174:26;;;;;;;;;;;:175;;;;22520:1;2419:8;22469:19;:47;:52;22465:627;;;22542:19;22574:1;22564:7;:11;22542:33;;22731:1;22697:17;:30;22715:11;22697:30;;;;;;;;;;;;:35;22693:384;;;22835:13;;22820:11;:28;22816:242;;23015:19;22982:17;:30;23000:11;22982:30;;;;;;;;;;;:52;;;;22816:242;22693:384;22523:569;22465:627;23139:7;23135:2;23120:27;;23129:4;23120:27;;;;;;;;;;;;23158:42;23179:4;23185:2;23189:7;23198:1;23158:20;:42::i;:::-;20514:2694;;;20391:2817;;;:::o;23304:185::-;23442:39;23459:4;23465:2;23469:7;23442:39;;;;;;;;;;;;:16;:39::i;:::-;23304:185;;;:::o;2028:102:3:-;1122:13:4;:11;:13::i;:::-;2113:9:3::1;2103:7;:19;;;;;;;;;;;;:::i;:::-;;2028:102:::0;:::o;494:18::-;;;;;;;;;;;;;:::o;11662:152:1:-;11734:7;11777:27;11796:7;11777:18;:27::i;:::-;11754:52;;11662:152;;;:::o;370:21:3:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7204:233:1:-;7276:7;7317:1;7300:19;;:5;:19;;;7296:60;;;7328:28;;;;;;;;;;;;;;7296:60;1363:13;7374:18;:25;7393:5;7374:25;;;;;;;;;;;;;;;;:55;7367:62;;7204:233;;;:::o;1884:103:4:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;1563:457:3:-;1122:13:4;:11;:13::i;:::-;1671:21:3::1;1714:9:::0;1709:106:::1;1733:10;;:17;;1729:1;:21;1709:106;;;1790:10;;1801:1;1790:13;;;;;;;:::i;:::-;;;;;;;;1773:30;;;;;:::i;:::-;;;1752:3;;;;;:::i;:::-;;;;1709:106;;;;1863:9;;1847:13;1831;:11;:13::i;:::-;:29;;;;:::i;:::-;:41;1827:64;;;1882:9;;;;;;;;;;;;;;1827:64;1909:9;1904:109;1928:9;;:16;;1924:1;:20;1904:109;;;1967:34;1973:9;;1983:1;1973:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;1987:10;;1998:1;1987:13;;;;;;;:::i;:::-;;;;;;;;1967:5;:34::i;:::-;1946:3;;;;;:::i;:::-;;;;1904:109;;;;1658:362;1563:457:::0;;;;:::o;2446:181::-;1122:13:4;:11;:13::i;:::-;2500:12:3::1;2518:10;:15;;2541:21;2518:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2499:68;;;2583:7;2578:41;;2600:19;;;;;;;;;;;;;;2578:41;2488:139;2446:181::o:0;1236:87:4:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;2352:86:3:-;1122:13:4;:11;:13::i;:::-;2424:6:3::1;2416:5;:14;;;;2352:86:::0;:::o;10445:104:1:-;10501:13;10534:7;10527:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10445:104;:::o;467:20:3:-;;;;:::o;847:464::-;2296:21:5;:19;:21::i;:::-;924:6:3::1;;;;;;;;;;;920:34;;;940:14;;;;;;;;;;;;;;920:34;982:10;969:23;;:9;:23;;;965:56;;1002:19;;;;;;;;;;;;;;965:56;1059:5;;1048:8;:16;;;;:::i;:::-;1036:9;:28;1032:58;;;1074:16;;;;;;;;;;;;;;1032:58;1132:9;;1121:8;1105:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;1101:59;;;1151:9;;;;;;;;;;;;;;1101:59;1214:16;;1203:8;1175:25;1189:10;1175:13;:25::i;:::-;:36;;;;:::i;:::-;:55;1171:92;;;1240:23;;;;;;;;;;;;;;1171:92;1276:27;1282:10;1294:8;1276:5;:27::i;:::-;2340:20:5::0;:18;:20::i;:::-;847:464:3;:::o;17310:234:1:-;17457:8;17405:18;:39;17424:19;:17;:19::i;:::-;17405:39;;;;;;;;;;;;;;;:49;17445:8;17405:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17517:8;17481:55;;17496:19;:17;:19::i;:::-;17481:55;;;17527:8;17481:55;;;;;;:::i;:::-;;;;;;;;17310:234;;:::o;2232:112:3:-;1122:13:4;:11;:13::i;:::-;2328:8:3::1;2309:16;:27;;;;2232:112:::0;:::o;429:31::-;;;;:::o;24087:399:1:-;24254:31;24267:4;24273:2;24277:7;24254:12;:31::i;:::-;24318:1;24300:2;:14;;;:19;24296:183;;24339:56;24370:4;24376:2;24380:7;24389:5;24339:30;:56::i;:::-;24334:145;;24423:40;;;;;;;;;;;;;;24334:145;24296:183;24087:399;;;;:::o;2138:86:3:-;1122:13:4;:11;:13::i;:::-;2209:7:3::1;2200:6;;:16;;;;;;;;;;;;;;;;;;2138:86:::0;:::o;10655:318:1:-;10728:13;10759:16;10767:7;10759;:16::i;:::-;10754:59;;10784:29;;;;;;;;;;;;;;10754:59;10826:21;10850:10;:8;:10::i;:::-;10826:34;;10903:1;10884:7;10878:21;:26;;:87;;;;;;;;;;;;;;;;;10931:7;10940:18;10950:7;10940:9;:18::i;:::-;10914:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10878:87;10871:94;;;10655:318;;;:::o;398:24:3:-;;;;:::o;1323:116::-;1383:7;1410:21;1424:6;1410:13;:21::i;:::-;1403:28;;1323:116;;;:::o;17701:164:1:-;17798:4;17822:18;:25;17841:5;17822:25;;;;;;;;;;;;;;;:35;17848:8;17822:35;;;;;;;;;;;;;;;;;;;;;;;;;17815:42;;17701:164;;;;:::o;2142:201:4:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;;;2223:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;18123:282:1:-;18188:4;18244:7;18225:15;:13;:15::i;:::-;:26;;:66;;;;;18278:13;;18268:7;:23;18225:66;:153;;;;;18377:1;2139:8;18329:17;:26;18347:7;18329:26;;;;;;;;;;;;:44;:49;18225:153;18205:173;;18123:282;;;:::o;40161:105::-;40221:7;40248:10;40241:17;;40161:105;:::o;5536:92::-;5592:7;5536:92;:::o;12817:1275::-;12884:7;12904:12;12919:7;12904:22;;12987:4;12968:15;:13;:15::i;:::-;:23;12964:1061;;13021:13;;13014:4;:20;13010:1015;;;13059:14;13076:17;:23;13094:4;13076:23;;;;;;;;;;;;13059:40;;13193:1;2139:8;13165:6;:24;:29;13161:845;;;13830:113;13847:1;13837:6;:11;13830:113;;;13890:17;:25;13908:6;;;;;;;13890:25;;;;;;;;;;;;13881:34;;13830:113;;;13976:6;13969:13;;;;;;13161:845;13036:989;13010:1015;12964:1061;14053:31;;;;;;;;;;;;;;12817:1275;;;;:::o;19286:485::-;19388:27;19417:23;19458:38;19499:15;:24;19515:7;19499:24;;;;;;;;;;;19458:65;;19676:18;19653:41;;19733:19;19727:26;19708:45;;19638:126;19286:485;;;:::o;18514:659::-;18663:11;18828:16;18821:5;18817:28;18808:37;;18988:16;18977:9;18973:32;18960:45;;19138:15;19127:9;19124:30;19116:5;19105:9;19102:20;19099:56;19089:66;;18514:659;;;;;:::o;25148:159::-;;;;;:::o;39470:311::-;39605:7;39625:16;2543:3;39651:19;:41;;39625:68;;2543:3;39719:31;39730:4;39736:2;39740:9;39719:10;:31::i;:::-;39711:40;;:62;;39704:69;;;39470:311;;;;;:::o;14640:450::-;14720:14;14888:16;14881:5;14877:28;14868:37;;15065:5;15051:11;15026:23;15022:41;15019:52;15012:5;15009:63;14999:73;;14640:450;;;;:::o;25972:158::-;;;;;:::o;1401:132:4:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;2503:191::-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;27748:2720:1:-;27821:20;27844:13;;27821:36;;27884:1;27872:8;:13;27868:44;;;27894:18;;;;;;;;;;;;;;27868:44;27925:61;27955:1;27959:2;27963:12;27977:8;27925:21;:61::i;:::-;28469:1;1501:2;28439:1;:26;;28438:32;28426:8;:45;28400:18;:22;28419:2;28400:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28748:139;28785:2;28839:33;28862:1;28866:2;28870:1;28839:14;:33::i;:::-;28806:30;28827:8;28806:20;:30::i;:::-;:66;28748:18;:139::i;:::-;28714:17;:31;28732:12;28714:31;;;;;;;;;;;:173;;;;28904:16;28935:11;28964:8;28949:12;:23;28935:37;;29485:16;29481:2;29477:25;29465:37;;29857:12;29817:8;29776:1;29714:25;29655:1;29594;29567:335;29982:1;29968:12;29964:20;29922:346;30023:3;30014:7;30011:16;29922:346;;30241:7;30231:8;30228:1;30201:25;30198:1;30195;30190:59;30076:1;30067:7;30063:15;30052:26;;29922:346;;;29926:77;30313:1;30301:8;:13;30297:45;;;30323:19;;;;;;;;;;;;;;30297:45;30375:3;30359:13;:19;;;;28174:2216;;30400:60;30429:1;30433:2;30437:12;30451:8;30400:20;:60::i;:::-;27810:2658;27748:2720;;:::o;2376:293:5:-;1778:1;2510:7;;:19;;2502:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1778:1;2643:7;:18;;;;2376:293::o;7519:178:1:-;7580:7;1363:13;1501:2;7608:18;:25;7627:5;7608:25;;;;;;;;;;;;;;;;:50;;7607:82;7600:89;;7519:178;;;:::o;2677:213:5:-;1734:1;2860:7;:22;;;;2677:213::o;26570:716:1:-;26733:4;26779:2;26754:45;;;26800:19;:17;:19::i;:::-;26821:4;26827:7;26836:5;26754:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26750:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27054:1;27037:6;:13;:18;27033:235;;;27083:40;;;;;;;;;;;;;;27033:235;27226:6;27220:13;27211:6;27207:2;27203:15;27196:38;26750:529;26923:54;;;26913:64;;;:6;:64;;;;26906:71;;;26570:716;;;;;;:::o;1447:108:3:-;1507:13;1540:7;1533:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1447:108;:::o;40368:1582:1:-;40433:17;40859:4;40852;40846:11;40842:22;40835:29;;40951:3;40945:4;40938:17;41057:3;41296:5;41278:428;41304:1;41278:428;;;41344:1;41339:3;41335:11;41328:18;;41515:2;41509:4;41505:13;41501:2;41497:22;41492:3;41484:36;41609:2;41603:4;41599:13;41591:21;;41676:4;41666:25;;41684:5;;41666:25;41278:428;;;41282:21;41745:3;41740;41736:13;41860:4;41855:3;41851:14;41844:21;;41925:6;41920:3;41913:19;40472:1471;;40368:1582;;;:::o;39171:147::-;39308:6;39171:147;;;;;:::o;656:98:0:-;709:7;736:10;729:17;;656:98;:::o;15192:324:1:-;15262:14;15495:1;15485:8;15482:15;15456:24;15452:46;15442:56;;15192:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:7:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1594:::-;1667:8;1677:6;1727:3;1720:4;1712:6;1708:17;1704:27;1694:122;;1735:79;;:::i;:::-;1694:122;1848:6;1835:20;1825:30;;1878:18;1870:6;1867:30;1864:117;;;1900:79;;:::i;:::-;1864:117;2014:4;2006:6;2002:17;1990:29;;2068:3;2060:4;2052:6;2048:17;2038:8;2034:32;2031:41;2028:128;;;2075:79;;:::i;:::-;2028:128;1594:568;;;;;:::o;2168:133::-;2211:5;2249:6;2236:20;2227:29;;2265:30;2289:5;2265:30;:::i;:::-;2168:133;;;;:::o;2307:137::-;2352:5;2390:6;2377:20;2368:29;;2406:32;2432:5;2406:32;:::i;:::-;2307:137;;;;:::o;2450:141::-;2506:5;2537:6;2531:13;2522:22;;2553:32;2579:5;2553:32;:::i;:::-;2450:141;;;;:::o;2610:338::-;2665:5;2714:3;2707:4;2699:6;2695:17;2691:27;2681:122;;2722:79;;:::i;:::-;2681:122;2839:6;2826:20;2864:78;2938:3;2930:6;2923:4;2915:6;2911:17;2864:78;:::i;:::-;2855:87;;2671:277;2610:338;;;;:::o;2968:340::-;3024:5;3073:3;3066:4;3058:6;3054:17;3050:27;3040:122;;3081:79;;:::i;:::-;3040:122;3198:6;3185:20;3223:79;3298:3;3290:6;3283:4;3275:6;3271:17;3223:79;:::i;:::-;3214:88;;3030:278;2968:340;;;;:::o;3314:139::-;3360:5;3398:6;3385:20;3376:29;;3414:33;3441:5;3414:33;:::i;:::-;3314:139;;;;:::o;3459:329::-;3518:6;3567:2;3555:9;3546:7;3542:23;3538:32;3535:119;;;3573:79;;:::i;:::-;3535:119;3693:1;3718:53;3763:7;3754:6;3743:9;3739:22;3718:53;:::i;:::-;3708:63;;3664:117;3459:329;;;;:::o;3794:474::-;3862:6;3870;3919:2;3907:9;3898:7;3894:23;3890:32;3887:119;;;3925:79;;:::i;:::-;3887:119;4045:1;4070:53;4115:7;4106:6;4095:9;4091:22;4070:53;:::i;:::-;4060:63;;4016:117;4172:2;4198:53;4243:7;4234:6;4223:9;4219:22;4198:53;:::i;:::-;4188:63;;4143:118;3794:474;;;;;:::o;4274:619::-;4351:6;4359;4367;4416:2;4404:9;4395:7;4391:23;4387:32;4384:119;;;4422:79;;:::i;:::-;4384:119;4542:1;4567:53;4612:7;4603:6;4592:9;4588:22;4567:53;:::i;:::-;4557:63;;4513:117;4669:2;4695:53;4740:7;4731:6;4720:9;4716:22;4695:53;:::i;:::-;4685:63;;4640:118;4797:2;4823:53;4868:7;4859:6;4848:9;4844:22;4823:53;:::i;:::-;4813:63;;4768:118;4274:619;;;;;:::o;4899:943::-;4994:6;5002;5010;5018;5067:3;5055:9;5046:7;5042:23;5038:33;5035:120;;;5074:79;;:::i;:::-;5035:120;5194:1;5219:53;5264:7;5255:6;5244:9;5240:22;5219:53;:::i;:::-;5209:63;;5165:117;5321:2;5347:53;5392:7;5383:6;5372:9;5368:22;5347:53;:::i;:::-;5337:63;;5292:118;5449:2;5475:53;5520:7;5511:6;5500:9;5496:22;5475:53;:::i;:::-;5465:63;;5420:118;5605:2;5594:9;5590:18;5577:32;5636:18;5628:6;5625:30;5622:117;;;5658:79;;:::i;:::-;5622:117;5763:62;5817:7;5808:6;5797:9;5793:22;5763:62;:::i;:::-;5753:72;;5548:287;4899:943;;;;;;;:::o;5848:468::-;5913:6;5921;5970:2;5958:9;5949:7;5945:23;5941:32;5938:119;;;5976:79;;:::i;:::-;5938:119;6096:1;6121:53;6166:7;6157:6;6146:9;6142:22;6121:53;:::i;:::-;6111:63;;6067:117;6223:2;6249:50;6291:7;6282:6;6271:9;6267:22;6249:50;:::i;:::-;6239:60;;6194:115;5848:468;;;;;:::o;6322:474::-;6390:6;6398;6447:2;6435:9;6426:7;6422:23;6418:32;6415:119;;;6453:79;;:::i;:::-;6415:119;6573:1;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6544:117;6700:2;6726:53;6771:7;6762:6;6751:9;6747:22;6726:53;:::i;:::-;6716:63;;6671:118;6322:474;;;;;:::o;6802:934::-;6924:6;6932;6940;6948;6997:2;6985:9;6976:7;6972:23;6968:32;6965:119;;;7003:79;;:::i;:::-;6965:119;7151:1;7140:9;7136:17;7123:31;7181:18;7173:6;7170:30;7167:117;;;7203:79;;:::i;:::-;7167:117;7316:80;7388:7;7379:6;7368:9;7364:22;7316:80;:::i;:::-;7298:98;;;;7094:312;7473:2;7462:9;7458:18;7445:32;7504:18;7496:6;7493:30;7490:117;;;7526:79;;:::i;:::-;7490:117;7639:80;7711:7;7702:6;7691:9;7687:22;7639:80;:::i;:::-;7621:98;;;;7416:313;6802:934;;;;;;;:::o;7742:323::-;7798:6;7847:2;7835:9;7826:7;7822:23;7818:32;7815:119;;;7853:79;;:::i;:::-;7815:119;7973:1;7998:50;8040:7;8031:6;8020:9;8016:22;7998:50;:::i;:::-;7988:60;;7944:114;7742:323;;;;:::o;8071:327::-;8129:6;8178:2;8166:9;8157:7;8153:23;8149:32;8146:119;;;8184:79;;:::i;:::-;8146:119;8304:1;8329:52;8373:7;8364:6;8353:9;8349:22;8329:52;:::i;:::-;8319:62;;8275:116;8071:327;;;;:::o;8404:349::-;8473:6;8522:2;8510:9;8501:7;8497:23;8493:32;8490:119;;;8528:79;;:::i;:::-;8490:119;8648:1;8673:63;8728:7;8719:6;8708:9;8704:22;8673:63;:::i;:::-;8663:73;;8619:127;8404:349;;;;:::o;8759:509::-;8828:6;8877:2;8865:9;8856:7;8852:23;8848:32;8845:119;;;8883:79;;:::i;:::-;8845:119;9031:1;9020:9;9016:17;9003:31;9061:18;9053:6;9050:30;9047:117;;;9083:79;;:::i;:::-;9047:117;9188:63;9243:7;9234:6;9223:9;9219:22;9188:63;:::i;:::-;9178:73;;8974:287;8759:509;;;;:::o;9274:329::-;9333:6;9382:2;9370:9;9361:7;9357:23;9353:32;9350:119;;;9388:79;;:::i;:::-;9350:119;9508:1;9533:53;9578:7;9569:6;9558:9;9554:22;9533:53;:::i;:::-;9523:63;;9479:117;9274:329;;;;:::o;9609:118::-;9696:24;9714:5;9696:24;:::i;:::-;9691:3;9684:37;9609:118;;:::o;9733:109::-;9814:21;9829:5;9814:21;:::i;:::-;9809:3;9802:34;9733:109;;:::o;9848:360::-;9934:3;9962:38;9994:5;9962:38;:::i;:::-;10016:70;10079:6;10074:3;10016:70;:::i;:::-;10009:77;;10095:52;10140:6;10135:3;10128:4;10121:5;10117:16;10095:52;:::i;:::-;10172:29;10194:6;10172:29;:::i;:::-;10167:3;10163:39;10156:46;;9938:270;9848:360;;;;:::o;10214:364::-;10302:3;10330:39;10363:5;10330:39;:::i;:::-;10385:71;10449:6;10444:3;10385:71;:::i;:::-;10378:78;;10465:52;10510:6;10505:3;10498:4;10491:5;10487:16;10465:52;:::i;:::-;10542:29;10564:6;10542:29;:::i;:::-;10537:3;10533:39;10526:46;;10306:272;10214:364;;;;:::o;10584:377::-;10690:3;10718:39;10751:5;10718:39;:::i;:::-;10773:89;10855:6;10850:3;10773:89;:::i;:::-;10766:96;;10871:52;10916:6;10911:3;10904:4;10897:5;10893:16;10871:52;:::i;:::-;10948:6;10943:3;10939:16;10932:23;;10694:267;10584:377;;;;:::o;10967:366::-;11109:3;11130:67;11194:2;11189:3;11130:67;:::i;:::-;11123:74;;11206:93;11295:3;11206:93;:::i;:::-;11324:2;11319:3;11315:12;11308:19;;10967:366;;;:::o;11339:::-;11481:3;11502:67;11566:2;11561:3;11502:67;:::i;:::-;11495:74;;11578:93;11667:3;11578:93;:::i;:::-;11696:2;11691:3;11687:12;11680:19;;11339:366;;;:::o;11711:398::-;11870:3;11891:83;11972:1;11967:3;11891:83;:::i;:::-;11884:90;;11983:93;12072:3;11983:93;:::i;:::-;12101:1;12096:3;12092:11;12085:18;;11711:398;;;:::o;12115:366::-;12257:3;12278:67;12342:2;12337:3;12278:67;:::i;:::-;12271:74;;12354:93;12443:3;12354:93;:::i;:::-;12472:2;12467:3;12463:12;12456:19;;12115:366;;;:::o;12487:118::-;12574:24;12592:5;12574:24;:::i;:::-;12569:3;12562:37;12487:118;;:::o;12611:435::-;12791:3;12813:95;12904:3;12895:6;12813:95;:::i;:::-;12806:102;;12925:95;13016:3;13007:6;12925:95;:::i;:::-;12918:102;;13037:3;13030:10;;12611:435;;;;;:::o;13052:379::-;13236:3;13258:147;13401:3;13258:147;:::i;:::-;13251:154;;13422:3;13415:10;;13052:379;;;:::o;13437:222::-;13530:4;13568:2;13557:9;13553:18;13545:26;;13581:71;13649:1;13638:9;13634:17;13625:6;13581:71;:::i;:::-;13437:222;;;;:::o;13665:640::-;13860:4;13898:3;13887:9;13883:19;13875:27;;13912:71;13980:1;13969:9;13965:17;13956:6;13912:71;:::i;:::-;13993:72;14061:2;14050:9;14046:18;14037:6;13993:72;:::i;:::-;14075;14143:2;14132:9;14128:18;14119:6;14075:72;:::i;:::-;14194:9;14188:4;14184:20;14179:2;14168:9;14164:18;14157:48;14222:76;14293:4;14284:6;14222:76;:::i;:::-;14214:84;;13665:640;;;;;;;:::o;14311:210::-;14398:4;14436:2;14425:9;14421:18;14413:26;;14449:65;14511:1;14500:9;14496:17;14487:6;14449:65;:::i;:::-;14311:210;;;;:::o;14527:313::-;14640:4;14678:2;14667:9;14663:18;14655:26;;14727:9;14721:4;14717:20;14713:1;14702:9;14698:17;14691:47;14755:78;14828:4;14819:6;14755:78;:::i;:::-;14747:86;;14527:313;;;;:::o;14846:419::-;15012:4;15050:2;15039:9;15035:18;15027:26;;15099:9;15093:4;15089:20;15085:1;15074:9;15070:17;15063:47;15127:131;15253:4;15127:131;:::i;:::-;15119:139;;14846:419;;;:::o;15271:::-;15437:4;15475:2;15464:9;15460:18;15452:26;;15524:9;15518:4;15514:20;15510:1;15499:9;15495:17;15488:47;15552:131;15678:4;15552:131;:::i;:::-;15544:139;;15271:419;;;:::o;15696:::-;15862:4;15900:2;15889:9;15885:18;15877:26;;15949:9;15943:4;15939:20;15935:1;15924:9;15920:17;15913:47;15977:131;16103:4;15977:131;:::i;:::-;15969:139;;15696:419;;;:::o;16121:222::-;16214:4;16252:2;16241:9;16237:18;16229:26;;16265:71;16333:1;16322:9;16318:17;16309:6;16265:71;:::i;:::-;16121:222;;;;:::o;16349:129::-;16383:6;16410:20;;:::i;:::-;16400:30;;16439:33;16467:4;16459:6;16439:33;:::i;:::-;16349:129;;;:::o;16484:75::-;16517:6;16550:2;16544:9;16534:19;;16484:75;:::o;16565:307::-;16626:4;16716:18;16708:6;16705:30;16702:56;;;16738:18;;:::i;:::-;16702:56;16776:29;16798:6;16776:29;:::i;:::-;16768:37;;16860:4;16854;16850:15;16842:23;;16565:307;;;:::o;16878:308::-;16940:4;17030:18;17022:6;17019:30;17016:56;;;17052:18;;:::i;:::-;17016:56;17090:29;17112:6;17090:29;:::i;:::-;17082:37;;17174:4;17168;17164:15;17156:23;;16878:308;;;:::o;17192:98::-;17243:6;17277:5;17271:12;17261:22;;17192:98;;;:::o;17296:99::-;17348:6;17382:5;17376:12;17366:22;;17296:99;;;:::o;17401:168::-;17484:11;17518:6;17513:3;17506:19;17558:4;17553:3;17549:14;17534:29;;17401:168;;;;:::o;17575:147::-;17676:11;17713:3;17698:18;;17575:147;;;;:::o;17728:169::-;17812:11;17846:6;17841:3;17834:19;17886:4;17881:3;17877:14;17862:29;;17728:169;;;;:::o;17903:148::-;18005:11;18042:3;18027:18;;17903:148;;;;:::o;18057:305::-;18097:3;18116:20;18134:1;18116:20;:::i;:::-;18111:25;;18150:20;18168:1;18150:20;:::i;:::-;18145:25;;18304:1;18236:66;18232:74;18229:1;18226:81;18223:107;;;18310:18;;:::i;:::-;18223:107;18354:1;18351;18347:9;18340:16;;18057:305;;;;:::o;18368:348::-;18408:7;18431:20;18449:1;18431:20;:::i;:::-;18426:25;;18465:20;18483:1;18465:20;:::i;:::-;18460:25;;18653:1;18585:66;18581:74;18578:1;18575:81;18570:1;18563:9;18556:17;18552:105;18549:131;;;18660:18;;:::i;:::-;18549:131;18708:1;18705;18701:9;18690:20;;18368:348;;;;:::o;18722:96::-;18759:7;18788:24;18806:5;18788:24;:::i;:::-;18777:35;;18722:96;;;:::o;18824:90::-;18858:7;18901:5;18894:13;18887:21;18876:32;;18824:90;;;:::o;18920:149::-;18956:7;18996:66;18989:5;18985:78;18974:89;;18920:149;;;:::o;19075:126::-;19112:7;19152:42;19145:5;19141:54;19130:65;;19075:126;;;:::o;19207:77::-;19244:7;19273:5;19262:16;;19207:77;;;:::o;19290:154::-;19374:6;19369:3;19364;19351:30;19436:1;19427:6;19422:3;19418:16;19411:27;19290:154;;;:::o;19450:307::-;19518:1;19528:113;19542:6;19539:1;19536:13;19528:113;;;19627:1;19622:3;19618:11;19612:18;19608:1;19603:3;19599:11;19592:39;19564:2;19561:1;19557:10;19552:15;;19528:113;;;19659:6;19656:1;19653:13;19650:101;;;19739:1;19730:6;19725:3;19721:16;19714:27;19650:101;19499:258;19450:307;;;:::o;19763:320::-;19807:6;19844:1;19838:4;19834:12;19824:22;;19891:1;19885:4;19881:12;19912:18;19902:81;;19968:4;19960:6;19956:17;19946:27;;19902:81;20030:2;20022:6;20019:14;19999:18;19996:38;19993:84;;;20049:18;;:::i;:::-;19993:84;19814:269;19763:320;;;:::o;20089:281::-;20172:27;20194:4;20172:27;:::i;:::-;20164:6;20160:40;20302:6;20290:10;20287:22;20266:18;20254:10;20251:34;20248:62;20245:88;;;20313:18;;:::i;:::-;20245:88;20353:10;20349:2;20342:22;20132:238;20089:281;;:::o;20376:233::-;20415:3;20438:24;20456:5;20438:24;:::i;:::-;20429:33;;20484:66;20477:5;20474:77;20471:103;;;20554:18;;:::i;:::-;20471:103;20601:1;20594:5;20590:13;20583:20;;20376:233;;;:::o;20615:180::-;20663:77;20660:1;20653:88;20760:4;20757:1;20750:15;20784:4;20781:1;20774:15;20801:180;20849:77;20846:1;20839:88;20946:4;20943:1;20936:15;20970:4;20967:1;20960:15;20987:180;21035:77;21032:1;21025:88;21132:4;21129:1;21122:15;21156:4;21153:1;21146:15;21173:180;21221:77;21218:1;21211:88;21318:4;21315:1;21308:15;21342:4;21339:1;21332:15;21359:117;21468:1;21465;21458:12;21482:117;21591:1;21588;21581:12;21605:117;21714:1;21711;21704:12;21728:117;21837:1;21834;21827:12;21851:117;21960:1;21957;21950:12;21974:117;22083:1;22080;22073:12;22097:102;22138:6;22189:2;22185:7;22180:2;22173:5;22169:14;22165:28;22155:38;;22097:102;;;:::o;22205:225::-;22345:34;22341:1;22333:6;22329:14;22322:58;22414:8;22409:2;22401:6;22397:15;22390:33;22205:225;:::o;22436:182::-;22576:34;22572:1;22564:6;22560:14;22553:58;22436:182;:::o;22624:114::-;;:::o;22744:181::-;22884:33;22880:1;22872:6;22868:14;22861:57;22744:181;:::o;22931:122::-;23004:24;23022:5;23004:24;:::i;:::-;22997:5;22994:35;22984:63;;23043:1;23040;23033:12;22984:63;22931:122;:::o;23059:116::-;23129:21;23144:5;23129:21;:::i;:::-;23122:5;23119:32;23109:60;;23165:1;23162;23155:12;23109:60;23059:116;:::o;23181:120::-;23253:23;23270:5;23253:23;:::i;:::-;23246:5;23243:34;23233:62;;23291:1;23288;23281:12;23233:62;23181:120;:::o;23307:122::-;23380:24;23398:5;23380:24;:::i;:::-;23373:5;23370:35;23360:63;;23419:1;23416;23409:12;23360:63;23307:122;:::o

Swarm Source

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