ETH Price: $2,940.27 (-4.15%)
Gas: 2 Gwei

Token

Miso (MISO)
 

Overview

Max Total Supply

3,956 MISO

Holders

800

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 MISO
0x735e59b365a9e41630fc100933d250c39f6aba29
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:
Miso

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-10
*/

//MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMWXKKKXWMMWNKKKXNMMMMMMMMMMMMMMWMMMMMMMMMMMWWNK00KKNMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMW0l,...,l0Kd;'..':kNMMMMMMNxcccclOWMMMMMMMW0oc;'.',':kNMMMMMMMMMMMMMMWX0kk0XKKXNWMMMMMMMMMMMMMM
//MMMMWk,.......''........dWMMMMMK:.....oNMMMMMMXo......'....dWMMMMMMMMMMXOo:'...:l,.',:okKWMMMMMMMMMM
//MMMMMk..................oNMMMMMK;.....oNMMMMMWd.......'....oNMMMMMMMWKd,.......cl.......'lOWMMMMMMMM
//MMMMMk'....,:'...;:.....dWMMMMM0;.....oNMMMMMNl.......''.,oXMMMMMMMWk,.........lo..........oNMMMMMMM
//MMMMMk.....oXKkkOXk'....oWMMMMM0,.....oNMMMMMWd.......:OKNWMMMMMMMWx'..........ox'..........oNMMMMMM
//MMMMMx.....dWMMMMMk'....dWMMMMM0,.....oNMMMMMMXd'.....cXMMMMMMMMMMK;...........xk'...........xWMMMMM
//MMMMWx.....xWMMMMMk'....dWMMMMM0,.....oNMMMMMMMWKdlc,.,oOKNMMMMMMM0;...........xO'...........oNMMMMM
//MMMMWd.....dWMMMMMk'....oWMMMMMk'.....oNMMMMMMMMMMMWNO;...;dXMMMMM0;...........xO,...........lNMMMMM
//MMMMWd.....xWMMMMMk'....oWMMMMMx......oNMMMMMMMMMMMMMX:.....:0MMMMK:...........oO;...........lNMMMMM
//MMMMWo....'kMMMMMMk'....oWMMMMMx......oWMMMMMMMMMMWN0k;......lNMMMWk'..........oO;..........,OWMMMMM
//MMMMNl.....kMMMMMMk'....dWMMMMMx......oWMMMMMMMMWOo:.........cXMMMMWk;.........d0:.........;OWMMMMMM
//MMMMXc....'OMMMMMMk'....dWMMMMWx......oWMMMMMMMMK:...........oNMMMMMMXx:.......o0:.......'oKMMMMMMMM
//MMMMX:....,0MMMMMMk'....xWMMMMMk;'''',xWMMMMMMMMXl'........,dXMMMMMMMMMN0xl:,''o0c....,cxKWMMMMMMMMM
//MMMMNklllldXMMMMMMXxolco0MMMMMMWXXXXXXNMMMMMMMMMMNKOoc;;:lxKWMMMMMMMMMMMMMMWNXKNWKkkOKNWMMMMMMMMMMMM
//MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWWWWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM
//MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMM

// SPDX-License-Identifier: MIT

// File: erc721a/contracts/IERC721A.sol

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

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

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// 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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/miso.sol

pragma solidity ^0.8.4;

contract Miso is Ownable, ERC721A, ReentrancyGuard {
    constructor() ERC721A("Miso", "MISO") {
        misoInfo.price = 5000000000000000;
        misoInfo.maxMint = 3;
        misoInfo.maxSupply = 5000;
    }

    struct MisoInfo {
        uint256 price;
        uint256 maxMint;
        uint256 maxSupply;
    }

    mapping(address => uint256) public minted;
    uint256 public freeMint = 999;
    MisoInfo public misoInfo;

    function misooo(uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= getMaxSupply(),
            "miso"
        );

        _safeMint(msg.sender, quantity);
    }

    function miso(uint256 quantity) external payable {
        MisoInfo memory config = misoInfo;
        uint256 price = uint256(config.price);
        uint256 maxMint = uint256(config.maxMint);
        uint256 leftMint = quantity;

        require(
            totalSupply() + quantity <= getMaxSupply(),
            "miso"
        );
        require(
            getAddressBuyed(msg.sender) + quantity <= maxMint,
            "miso"
        );

        if (freeMint >= leftMint) {
            _safeMint(msg.sender, leftMint);
            freeMint -= leftMint;
            leftMint = 0;
        } else if (freeMint > 0 && freeMint < leftMint) {
            leftMint -= freeMint;
            _safeMint(msg.sender, freeMint);
            freeMint = 0;
        }

        if (leftMint > 0) {
            require(
                leftMint * price <= msg.value,
                "miso"
            );
            _safeMint(msg.sender, quantity);
        }

        minted[msg.sender] += quantity;
    }

    function miiisooo(uint256 _price) external onlyOwner {
        misoInfo.price = _price;
    }

    function mmiiiiso(uint256 _slots) external onlyOwner {
        freeMint = _slots;
    }

    function getAddressBuyed(address owner) public view returns (uint256) {
        return minted[owner];
    }
    
    function getMaxSupply() private view returns (uint256) {
        MisoInfo memory config = misoInfo;
        uint256 max = uint256(config.maxSupply);
        return max;
    }

    string private _baseTokenURI;

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

    function mmisso(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function mmiissoo() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "miso");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getAddressBuyed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"miiisooo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"miso","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"misoInfo","outputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxMint","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"misooo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slots","type":"uint256"}],"name":"mmiiiiso","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mmiissoo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"mmisso","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"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"}]

60806040526103e7600b553480156200001757600080fd5b50604051806040016040528060048152602001634d69736f60e01b815250604051806040016040528060048152602001634d49534f60e01b8152506200006c62000066620000be60201b60201c565b620000c2565b81516200008190600390602085019062000112565b5080516200009790600490602084019062000112565b50600180815560095550506611c37937e08000600c556003600d55611388600e55620001f5565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012090620001b8565b90600052602060002090601f0160209004810192826200014457600085556200018f565b82601f106200015f57805160ff19168380011785556200018f565b828001600101855582156200018f579182015b828111156200018f57825182559160200191906001019062000172565b506200019d929150620001a1565b5090565b5b808211156200019d5760008155600101620001a2565b600181811c90821680620001cd57607f821691505b60208210811415620001ef57634e487b7160e01b600052602260045260246000fd5b50919050565b6118b580620002056000396000f3fe60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e2464bb511610064578063e2464bb5146104c9578063e985e9c5146104dc578063f2fde38b14610525578063f8d6a3411461054557600080fd5b8063b88d4fde1461044f578063c557bda01461046f578063c87b56dd146104a957600080fd5b806395384a3a116100c657806395384a3a146103e557806395d89b41146103fa5780639be5fbc01461040f578063a22cb4651461042f57600080fd5b806370a0823114610392578063715018a6146103b25780638da5cb5b146103c757600080fd5b80631fc895db1161015957806342842e0e1161013357806342842e0e1461031c5780635b70ea9f1461033c5780636352211e14610352578063667eecc91461037257600080fd5b80631fc895db146102a657806323b872dd146102dc57806329c8c6bb146102fc57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631e7269c514610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046115c5565b610565565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105b7565b6040516101cd9190611722565b34801561020457600080fd5b50610218610213366004611671565b610649565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461159b565b61068d565b005b34801561025e57600080fd5b5060025460015403600019015b6040519081526020016101cd565b34801561028557600080fd5b5061026b6102943660046113f9565b600a6020526000908152604090205481565b3480156102b257600080fd5b5061026b6102c13660046113f9565b6001600160a01b03166000908152600a602052604090205490565b3480156102e857600080fd5b506102506102f7366004611447565b610760565b34801561030857600080fd5b50610250610317366004611671565b610770565b34801561032857600080fd5b50610250610337366004611447565b6107a8565b34801561034857600080fd5b5061026b600b5481565b34801561035e57600080fd5b5061021861036d366004611671565b6107c3565b34801561037e57600080fd5b5061025061038d366004611671565b6107ce565b34801561039e57600080fd5b5061026b6103ad3660046113f9565b61085a565b3480156103be57600080fd5b506102506108a9565b3480156103d357600080fd5b506000546001600160a01b0316610218565b3480156103f157600080fd5b506102506108df565b34801561040657600080fd5b506101eb6109d1565b34801561041b57600080fd5b5061025061042a3660046115ff565b6109e0565b34801561043b57600080fd5b5061025061044a36600461155f565b610a16565b34801561045b57600080fd5b5061025061046a366004611483565b610aac565b34801561047b57600080fd5b50600c54600d54600e5461048e92919083565b604080519384526020840192909252908201526060016101cd565b3480156104b557600080fd5b506101eb6104c4366004611671565b610af6565b6102506104d7366004611671565b610b7b565b3480156104e857600080fd5b506101c16104f7366004611414565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561053157600080fd5b506102506105403660046113f9565b610d09565b34801561055157600080fd5b50610250610560366004611671565b610da1565b60006301ffc9a760e01b6001600160e01b03198316148061059657506380ac58cd60e01b6001600160e01b03198316145b806105b15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546105c690611802565b80601f01602080910402602001604051908101604052809291908181526020018280546105f290611802565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b600061065482610dd0565b610671576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061069882610e05565b9050806001600160a01b0316836001600160a01b031614156106cd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610704576106e781336104f7565b610704576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61076b838383610e6e565b505050565b6000546001600160a01b031633146107a35760405162461bcd60e51b815260040161079a90611735565b60405180910390fd5b600c55565b61076b83838360405180602001604052806000815250610aac565b60006105b182610e05565b6000546001600160a01b031633146107f85760405162461bcd60e51b815260040161079a90611735565b60408051606081018252600c548152600d546020820152600e549101819052600254600154839190036000190161082f9190611788565b111561084d5760405162461bcd60e51b815260040161079a9061176a565b6108573382611011565b50565b60006001600160a01b038216610883576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146108d35760405162461bcd60e51b815260040161079a90611735565b6108dd600061102f565b565b6000546001600160a01b031633146109095760405162461bcd60e51b815260040161079a90611735565b6002600954141561095c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079a565b6002600955604051600090339047908381818185875af1925050503d80600081146109a3576040519150601f19603f3d011682016040523d82523d6000602084013e6109a8565b606091505b50509050806109c95760405162461bcd60e51b815260040161079a9061176a565b506001600955565b6060600480546105c690611802565b6000546001600160a01b03163314610a0a5760405162461bcd60e51b815260040161079a90611735565b61076b600f8383611344565b6001600160a01b038216331415610a405760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ab7848484610e6e565b6001600160a01b0383163b15610af057610ad38484848461107f565b610af0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b0182610dd0565b610b1e57604051630a14c4b560e41b815260040160405180910390fd5b6000610b28611176565b9050805160001415610b495760405180602001604052806000815250610b74565b80610b5384611185565b604051602001610b649291906116b6565b6040516020818303038152906040525b9392505050565b60408051606081018252600c54808252600d5460208301819052600e5493830193909352909183610bc760408051606081018252600c548152600d546020820152600e54910181905290565b6002546001548791900360001901610bdf9190611788565b1115610bfd5760405162461bcd60e51b815260040161079a9061176a565b336000908152600a60205260409020548290610c1a908790611788565b1115610c385760405162461bcd60e51b815260040161079a9061176a565b80600b5410610c6c57610c4b3382611011565b80600b6000828254610c5d91906117bf565b9091555060009150610ca59050565b6000600b54118015610c7f575080600b54105b15610ca557600b54610c9190826117bf565b9050610c9f33600b54611011565b6000600b555b8015610cde5734610cb684836117a0565b1115610cd45760405162461bcd60e51b815260040161079a9061176a565b610cde3386611011565b336000908152600a602052604081208054879290610cfd908490611788565b90915550505050505050565b6000546001600160a01b03163314610d335760405162461bcd60e51b815260040161079a90611735565b6001600160a01b038116610d985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079a565b6108578161102f565b6000546001600160a01b03163314610dcb5760405162461bcd60e51b815260040161079a90611735565b600b55565b600081600111158015610de4575060015482105b80156105b1575050600090815260056020526040902054600160e01b161590565b60008180600111610e5557600154811015610e5557600081815260056020526040902054600160e01b8116610e53575b80610b74575060001901600081815260056020526040902054610e35565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e7982610e05565b9050836001600160a01b0316816001600160a01b031614610eac5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610eca5750610eca85336104f7565b80610ee5575033610eda84610649565b6001600160a01b0316145b905080610f0557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f2c57604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b861781179091558216610fc95760018301600081815260056020526040902054610fc7576001548114610fc75760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61102b8282604051806020016040528060008152506111d4565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110b49033908990889088906004016116e5565b602060405180830381600087803b1580156110ce57600080fd5b505af19250505080156110fe575060408051601f3d908101601f191682019092526110fb918101906115e2565b60015b611159573d80801561112c576040519150601f19603f3d011682016040523d82523d6000602084013e611131565b606091505b508051611151576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600f80546105c690611802565b604080516080810191829052607f0190826030600a8206018353600a90045b80156111c257600183039250600a81066030018353600a90046111a4565b50819003601f19909101908152919050565b6001546001600160a01b0384166111fd57604051622e076360e81b815260040160405180910390fd5b8261121b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156112f0575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112b9600087848060010195508761107f565b6112d6576040516368d2bf6b60e11b815260040160405180910390fd5b80821061126e5782600154146112eb57600080fd5b611335565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112f1575b50600155610af0600085838684565b82805461135090611802565b90600052602060002090601f01602090048101928261137257600085556113b8565b82601f1061138b5782800160ff198235161785556113b8565b828001600101855582156113b8579182015b828111156113b857823582559160200191906001019061139d565b506113c49291506113c8565b5090565b5b808211156113c457600081556001016113c9565b80356001600160a01b03811681146113f457600080fd5b919050565b60006020828403121561140b57600080fd5b610b74826113dd565b6000806040838503121561142757600080fd5b611430836113dd565b915061143e602084016113dd565b90509250929050565b60008060006060848603121561145c57600080fd5b611465846113dd565b9250611473602085016113dd565b9150604084013590509250925092565b6000806000806080858703121561149957600080fd5b6114a2856113dd565b93506114b0602086016113dd565b925060408501359150606085013567ffffffffffffffff808211156114d457600080fd5b818701915087601f8301126114e857600080fd5b8135818111156114fa576114fa611853565b604051601f8201601f19908116603f0116810190838211818310171561152257611522611853565b816040528281528a602084870101111561153b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561157257600080fd5b61157b836113dd565b91506020830135801515811461159057600080fd5b809150509250929050565b600080604083850312156115ae57600080fd5b6115b7836113dd565b946020939093013593505050565b6000602082840312156115d757600080fd5b8135610b7481611869565b6000602082840312156115f457600080fd5b8151610b7481611869565b6000806020838503121561161257600080fd5b823567ffffffffffffffff8082111561162a57600080fd5b818501915085601f83011261163e57600080fd5b81358181111561164d57600080fd5b86602082850101111561165f57600080fd5b60209290920196919550909350505050565b60006020828403121561168357600080fd5b5035919050565b600081518084526116a28160208601602086016117d6565b601f01601f19169290920160200192915050565b600083516116c88184602088016117d6565b8351908301906116dc8183602088016117d6565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117189083018461168a565b9695505050505050565b602081526000610b74602083018461168a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600490820152636d69736f60e01b604082015260600190565b6000821982111561179b5761179b61183d565b500190565b60008160001904831182151516156117ba576117ba61183d565b500290565b6000828210156117d1576117d161183d565b500390565b60005b838110156117f15781810151838201526020016117d9565b83811115610af05750506000910152565b600181811c9082168061181657607f821691505b6020821081141561183757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461085757600080fdfea264697066735822122056b76a3491f7ba15c0efda2abdf431c292561a9d15954ffcec40d0af0857e63d64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806370a08231116100ec578063b88d4fde1161008a578063e2464bb511610064578063e2464bb5146104c9578063e985e9c5146104dc578063f2fde38b14610525578063f8d6a3411461054557600080fd5b8063b88d4fde1461044f578063c557bda01461046f578063c87b56dd146104a957600080fd5b806395384a3a116100c657806395384a3a146103e557806395d89b41146103fa5780639be5fbc01461040f578063a22cb4651461042f57600080fd5b806370a0823114610392578063715018a6146103b25780638da5cb5b146103c757600080fd5b80631fc895db1161015957806342842e0e1161013357806342842e0e1461031c5780635b70ea9f1461033c5780636352211e14610352578063667eecc91461037257600080fd5b80631fc895db146102a657806323b872dd146102dc57806329c8c6bb146102fc57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd146102525780631e7269c514610279575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046115c5565b610565565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105b7565b6040516101cd9190611722565b34801561020457600080fd5b50610218610213366004611671565b610649565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b36600461159b565b61068d565b005b34801561025e57600080fd5b5060025460015403600019015b6040519081526020016101cd565b34801561028557600080fd5b5061026b6102943660046113f9565b600a6020526000908152604090205481565b3480156102b257600080fd5b5061026b6102c13660046113f9565b6001600160a01b03166000908152600a602052604090205490565b3480156102e857600080fd5b506102506102f7366004611447565b610760565b34801561030857600080fd5b50610250610317366004611671565b610770565b34801561032857600080fd5b50610250610337366004611447565b6107a8565b34801561034857600080fd5b5061026b600b5481565b34801561035e57600080fd5b5061021861036d366004611671565b6107c3565b34801561037e57600080fd5b5061025061038d366004611671565b6107ce565b34801561039e57600080fd5b5061026b6103ad3660046113f9565b61085a565b3480156103be57600080fd5b506102506108a9565b3480156103d357600080fd5b506000546001600160a01b0316610218565b3480156103f157600080fd5b506102506108df565b34801561040657600080fd5b506101eb6109d1565b34801561041b57600080fd5b5061025061042a3660046115ff565b6109e0565b34801561043b57600080fd5b5061025061044a36600461155f565b610a16565b34801561045b57600080fd5b5061025061046a366004611483565b610aac565b34801561047b57600080fd5b50600c54600d54600e5461048e92919083565b604080519384526020840192909252908201526060016101cd565b3480156104b557600080fd5b506101eb6104c4366004611671565b610af6565b6102506104d7366004611671565b610b7b565b3480156104e857600080fd5b506101c16104f7366004611414565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561053157600080fd5b506102506105403660046113f9565b610d09565b34801561055157600080fd5b50610250610560366004611671565b610da1565b60006301ffc9a760e01b6001600160e01b03198316148061059657506380ac58cd60e01b6001600160e01b03198316145b806105b15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546105c690611802565b80601f01602080910402602001604051908101604052809291908181526020018280546105f290611802565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b600061065482610dd0565b610671576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061069882610e05565b9050806001600160a01b0316836001600160a01b031614156106cd5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610704576106e781336104f7565b610704576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61076b838383610e6e565b505050565b6000546001600160a01b031633146107a35760405162461bcd60e51b815260040161079a90611735565b60405180910390fd5b600c55565b61076b83838360405180602001604052806000815250610aac565b60006105b182610e05565b6000546001600160a01b031633146107f85760405162461bcd60e51b815260040161079a90611735565b60408051606081018252600c548152600d546020820152600e549101819052600254600154839190036000190161082f9190611788565b111561084d5760405162461bcd60e51b815260040161079a9061176a565b6108573382611011565b50565b60006001600160a01b038216610883576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146108d35760405162461bcd60e51b815260040161079a90611735565b6108dd600061102f565b565b6000546001600160a01b031633146109095760405162461bcd60e51b815260040161079a90611735565b6002600954141561095c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161079a565b6002600955604051600090339047908381818185875af1925050503d80600081146109a3576040519150601f19603f3d011682016040523d82523d6000602084013e6109a8565b606091505b50509050806109c95760405162461bcd60e51b815260040161079a9061176a565b506001600955565b6060600480546105c690611802565b6000546001600160a01b03163314610a0a5760405162461bcd60e51b815260040161079a90611735565b61076b600f8383611344565b6001600160a01b038216331415610a405760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ab7848484610e6e565b6001600160a01b0383163b15610af057610ad38484848461107f565b610af0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610b0182610dd0565b610b1e57604051630a14c4b560e41b815260040160405180910390fd5b6000610b28611176565b9050805160001415610b495760405180602001604052806000815250610b74565b80610b5384611185565b604051602001610b649291906116b6565b6040516020818303038152906040525b9392505050565b60408051606081018252600c54808252600d5460208301819052600e5493830193909352909183610bc760408051606081018252600c548152600d546020820152600e54910181905290565b6002546001548791900360001901610bdf9190611788565b1115610bfd5760405162461bcd60e51b815260040161079a9061176a565b336000908152600a60205260409020548290610c1a908790611788565b1115610c385760405162461bcd60e51b815260040161079a9061176a565b80600b5410610c6c57610c4b3382611011565b80600b6000828254610c5d91906117bf565b9091555060009150610ca59050565b6000600b54118015610c7f575080600b54105b15610ca557600b54610c9190826117bf565b9050610c9f33600b54611011565b6000600b555b8015610cde5734610cb684836117a0565b1115610cd45760405162461bcd60e51b815260040161079a9061176a565b610cde3386611011565b336000908152600a602052604081208054879290610cfd908490611788565b90915550505050505050565b6000546001600160a01b03163314610d335760405162461bcd60e51b815260040161079a90611735565b6001600160a01b038116610d985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079a565b6108578161102f565b6000546001600160a01b03163314610dcb5760405162461bcd60e51b815260040161079a90611735565b600b55565b600081600111158015610de4575060015482105b80156105b1575050600090815260056020526040902054600160e01b161590565b60008180600111610e5557600154811015610e5557600081815260056020526040902054600160e01b8116610e53575b80610b74575060001901600081815260056020526040902054610e35565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e7982610e05565b9050836001600160a01b0316816001600160a01b031614610eac5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610eca5750610eca85336104f7565b80610ee5575033610eda84610649565b6001600160a01b0316145b905080610f0557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f2c57604051633a954ecd60e21b815260040160405180910390fd5b600083815260076020908152604080832080546001600160a01b03191690556001600160a01b038881168452600683528184208054600019019055871683528083208054600101905585835260059091529020600160e11b4260a01b861781179091558216610fc95760018301600081815260056020526040902054610fc7576001548114610fc75760008181526005602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61102b8282604051806020016040528060008152506111d4565b5050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906110b49033908990889088906004016116e5565b602060405180830381600087803b1580156110ce57600080fd5b505af19250505080156110fe575060408051601f3d908101601f191682019092526110fb918101906115e2565b60015b611159573d80801561112c576040519150601f19603f3d011682016040523d82523d6000602084013e611131565b606091505b508051611151576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600f80546105c690611802565b604080516080810191829052607f0190826030600a8206018353600a90045b80156111c257600183039250600a81066030018353600a90046111a4565b50819003601f19909101908152919050565b6001546001600160a01b0384166111fd57604051622e076360e81b815260040160405180910390fd5b8261121b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526006602090815260408083208054680100000000000000018902019055848352600590915290204260a01b86176001861460e11b1790558190818501903b156112f0575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46112b9600087848060010195508761107f565b6112d6576040516368d2bf6b60e11b815260040160405180910390fd5b80821061126e5782600154146112eb57600080fd5b611335565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106112f1575b50600155610af0600085838684565b82805461135090611802565b90600052602060002090601f01602090048101928261137257600085556113b8565b82601f1061138b5782800160ff198235161785556113b8565b828001600101855582156113b8579182015b828111156113b857823582559160200191906001019061139d565b506113c49291506113c8565b5090565b5b808211156113c457600081556001016113c9565b80356001600160a01b03811681146113f457600080fd5b919050565b60006020828403121561140b57600080fd5b610b74826113dd565b6000806040838503121561142757600080fd5b611430836113dd565b915061143e602084016113dd565b90509250929050565b60008060006060848603121561145c57600080fd5b611465846113dd565b9250611473602085016113dd565b9150604084013590509250925092565b6000806000806080858703121561149957600080fd5b6114a2856113dd565b93506114b0602086016113dd565b925060408501359150606085013567ffffffffffffffff808211156114d457600080fd5b818701915087601f8301126114e857600080fd5b8135818111156114fa576114fa611853565b604051601f8201601f19908116603f0116810190838211818310171561152257611522611853565b816040528281528a602084870101111561153b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561157257600080fd5b61157b836113dd565b91506020830135801515811461159057600080fd5b809150509250929050565b600080604083850312156115ae57600080fd5b6115b7836113dd565b946020939093013593505050565b6000602082840312156115d757600080fd5b8135610b7481611869565b6000602082840312156115f457600080fd5b8151610b7481611869565b6000806020838503121561161257600080fd5b823567ffffffffffffffff8082111561162a57600080fd5b818501915085601f83011261163e57600080fd5b81358181111561164d57600080fd5b86602082850101111561165f57600080fd5b60209290920196919550909350505050565b60006020828403121561168357600080fd5b5035919050565b600081518084526116a28160208601602086016117d6565b601f01601f19169290920160200192915050565b600083516116c88184602088016117d6565b8351908301906116dc8183602088016117d6565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117189083018461168a565b9695505050505050565b602081526000610b74602083018461168a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600490820152636d69736f60e01b604082015260600190565b6000821982111561179b5761179b61183d565b500190565b60008160001904831182151516156117ba576117ba61183d565b500290565b6000828210156117d1576117d161183d565b500390565b60005b838110156117f15781810151838201526020016117d9565b83811115610af05750506000910152565b600181811c9082168061181657607f821691505b6020821081141561183757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461085757600080fdfea264697066735822122056b76a3491f7ba15c0efda2abdf431c292561a9d15954ffcec40d0af0857e63d64736f6c63430008070033

Deployed Bytecode Sourcemap

46598:2659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15084:615;;;;;;;;;;-1:-1:-1;15084:615:0;;;;;:::i;:::-;;:::i;:::-;;;5834:14:1;;5827:22;5809:41;;5797:2;5782:18;15084:615:0;;;;;;;;20097:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22165:204::-;;;;;;;;;;-1:-1:-1;22165:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5132:32:1;;;5114:51;;5102:2;5087:18;22165:204:0;4968:203:1;21625:474:0;;;;;;;;;;-1:-1:-1;21625:474:0;;;;;:::i;:::-;;:::i;:::-;;14138:315;;;;;;;;;;-1:-1:-1;14404:12:0;;13744:1;14388:13;:28;-1:-1:-1;;14388:46:0;14138:315;;;7691:25:1;;;7679:2;7664:18;14138:315:0;7545:177:1;46931:41:0;;;;;;;;;;-1:-1:-1;46931:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;48504:109;;;;;;;;;;-1:-1:-1;48504:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;48592:13:0;48565:7;48592:13;;;:6;:13;;;;;;;48504:109;23051:170;;;;;;;;;;-1:-1:-1;23051:170:0;;;;;:::i;:::-;;:::i;48304:95::-;;;;;;;;;;-1:-1:-1;48304:95:0;;;;;:::i;:::-;;:::i;23292:185::-;;;;;;;;;;-1:-1:-1;23292:185:0;;;;;:::i;:::-;;:::i;46979:29::-;;;;;;;;;;;;;;;;19886:144;;;;;;;;;;-1:-1:-1;19886:144:0;;;;;:::i;:::-;;:::i;47048:212::-;;;;;;;;;;-1:-1:-1;47048:212:0;;;;;:::i;:::-;;:::i;15763:224::-;;;;;;;;;;-1:-1:-1;15763:224:0;;;;;:::i;:::-;;:::i;45723:103::-;;;;;;;;;;;;;:::i;45072:87::-;;;;;;;;;;-1:-1:-1;45118:7:0;45145:6;-1:-1:-1;;;;;45145:6:0;45072:87;;49080:174;;;;;;;;;;;;;:::i;20266:104::-;;;;;;;;;;;;;:::i;48970:102::-;;;;;;;;;;-1:-1:-1;48970:102:0;;;;;:::i;:::-;;:::i;22441:308::-;;;;;;;;;;-1:-1:-1;22441:308:0;;;;;:::i;:::-;;:::i;23548:396::-;;;;;;;;;;-1:-1:-1;23548:396:0;;;;;:::i;:::-;;:::i;47015:24::-;;;;;;;;;;-1:-1:-1;47015:24:0;;;;;;;;;;;;;;;;7929:25:1;;;7985:2;7970:18;;7963:34;;;;8013:18;;;8006:34;7917:2;7902:18;47015:24:0;7727:319:1;20441:318:0;;;;;;;;;;-1:-1:-1;20441:318:0;;;;;:::i;:::-;;:::i;47268:1028::-;;;;;;:::i;:::-;;:::i;22820:164::-;;;;;;;;;;-1:-1:-1;22820:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;22941:25:0;;;22917:4;22941:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22820:164;45981:201;;;;;;;;;;-1:-1:-1;45981:201:0;;;;;:::i;:::-;;:::i;48407:89::-;;;;;;;;;;-1:-1:-1;48407:89:0;;;;;:::i;:::-;;:::i;15084:615::-;15169:4;-1:-1:-1;;;;;;;;;15469:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15546:25:0;;;15469:102;:179;;;-1:-1:-1;;;;;;;;;;15623:25:0;;;15469:179;15449:199;15084:615;-1:-1:-1;;15084:615:0:o;20097:100::-;20151:13;20184:5;20177:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20097:100;:::o;22165:204::-;22233:7;22258:16;22266:7;22258;:16::i;:::-;22253:64;;22283:34;;-1:-1:-1;;;22283:34:0;;;;;;;;;;;22253:64;-1:-1:-1;22337:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22337:24:0;;22165:204::o;21625:474::-;21698:13;21730:27;21749:7;21730:18;:27::i;:::-;21698:61;;21780:5;-1:-1:-1;;;;;21774:11:0;:2;-1:-1:-1;;;;;21774:11:0;;21770:48;;;21794:24;;-1:-1:-1;;;21794:24:0;;;;;;;;;;;21770:48;38268:10;-1:-1:-1;;;;;21835:28:0;;;21831:175;;21883:44;21900:5;38268:10;22820:164;:::i;21883:44::-;21878:128;;21955:35;;-1:-1:-1;;;21955:35:0;;;;;;;;;;;21878:128;22018:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;22018:29:0;-1:-1:-1;;;;;22018:29:0;;;;;;;;;22063:28;;22018:24;;22063:28;;;;;;;21687:412;21625:474;;:::o;23051:170::-;23185:28;23195:4;23201:2;23205:7;23185:9;:28::i;:::-;23051:170;;;:::o;48304:95::-;45118:7;45145:6;-1:-1:-1;;;;;45145:6:0;38268:10;45292:23;45284:68;;;;-1:-1:-1;;;45284:68:0;;;;;;;:::i;:::-;;;;;;;;;48368:8:::1;:23:::0;48304:95::o;23292:185::-;23430:39;23447:4;23453:2;23457:7;23430:39;;;;;;;;;;;;:16;:39::i;19886:144::-;19950:7;19993:27;20012:7;19993:18;:27::i;47048:212::-;45118:7;45145:6;-1:-1:-1;;;;;45145:6:0;38268:10;45292:23;45284:68;;;;-1:-1:-1;;;45284:68:0;;;;;;;:::i;:::-;48691:33;;;;;;;;48716:8;48691:33;;;;;;;;;;;;;;;;14404:12;;13744:1;14388:13;47150:8;;14388:28;;-1:-1:-1;;14388:46:0;47134:24:::1;;;;:::i;:::-;:42;;47112:96;;;;-1:-1:-1::0;;;47112:96:0::1;;;;;;;:::i;:::-;47221:31;47231:10;47243:8;47221:9;:31::i;:::-;47048:212:::0;:::o;15763:224::-;15827:7;-1:-1:-1;;;;;15851:19:0;;15847:60;;15879:28;;-1:-1:-1;;;15879:28:0;;;;;;;;;;;15847:60;-1:-1:-1;;;;;;15925:25:0;;;;;:18;:25;;;;;;11102:13;15925:54;;15763:224::o;45723:103::-;45118:7;45145:6;-1:-1:-1;;;;;45145:6:0;38268:10;45292:23;45284:68;;;;-1:-1:-1;;;45284:68:0;;;;;;;:::i;:::-;45788:30:::1;45815:1;45788:18;:30::i;:::-;45723:103::o:0;49080:174::-;45118:7;45145:6;-1:-1:-1;;;;;45145:6:0;38268:10;45292:23;45284:68;;;;-1:-1:-1;;;45284:68:0;;;;;;;:::i;:::-;42170:1:::1;42768:7;;:19;;42760:63;;;::::0;-1:-1:-1;;;42760:63:0;;7055:2:1;42760:63:0::1;::::0;::::1;7037:21:1::0;7094:2;7074:18;;;7067:30;7133:33;7113:18;;;7106:61;7184:18;;42760:63:0::1;6853:355:1::0;42760:63:0::1;42170:1;42901:7;:18:::0;49162:49:::2;::::0;49144:12:::2;::::0;49162:10:::2;::::0;49185:21:::2;::::0;49144:12;49162:49;49144:12;49162:49;49185:21;49162:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49143:68;;;49230:7;49222:24;;;;-1:-1:-1::0;;;49222:24:0::2;;;;;;;:::i;:::-;-1:-1:-1::0;42126:1:0::1;43080:7;:22:::0;49080:174::o;20266:104::-;20322:13;20355:7;20348:14;;;;;:::i;48970:102::-;45118:7;45145:6;-1:-1:-1;;;;;45145:6:0;38268:10;45292:23;45284:68;;;;-1:-1:-1;;;45284:68:0;;;;;;;:::i;:::-;49041:23:::1;:13;49057:7:::0;;49041:23:::1;:::i;22441:308::-:0;-1:-1:-1;;;;;22540:31:0;;38268:10;22540:31;22536:61;;;22580:17;;-1:-1:-1;;;22580:17:0;;;;;;;;;;;22536:61;38268:10;22610:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22610:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;22610:60:0;;;;;;;;;;22686:55;;5809:41:1;;;22610:49:0;;38268:10;22686:55;;5782:18:1;22686:55:0;;;;;;;22441:308;;:::o;23548:396::-;23715:28;23725:4;23731:2;23735:7;23715:9;:28::i;:::-;-1:-1:-1;;;;;23758:14:0;;;:19;23754:183;;23797:56;23828:4;23834:2;23838:7;23847:5;23797:30;:56::i;:::-;23792:145;;23881:40;;-1:-1:-1;;;23881:40:0;;;;;;;;;;;23792:145;23548:396;;;;:::o;20441:318::-;20514:13;20545:16;20553:7;20545;:16::i;:::-;20540:59;;20570:29;;-1:-1:-1;;;20570:29:0;;;;;;;;;;;20540:59;20612:21;20636:10;:8;:10::i;:::-;20612:34;;20670:7;20664:21;20689:1;20664:26;;:87;;;;;;;;;;;;;;;;;20717:7;20726:18;20736:7;20726:9;:18::i;:::-;20700:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20664:87;20657:94;20441:318;-1:-1:-1;;;20441:318:0:o;47268:1028::-;47328:33;;;;;;;;47353:8;47328:33;;;;;;;;;;;;;;;;;;;;;;;47491:8;47562:14;48691:33;;;;;;;;48716:8;48691:33;;;;;;;;;;;;;;;;;48625:178;47562:14;14404:12;;13744:1;14388:13;47550:8;;14388:28;;-1:-1:-1;;14388:46:0;47534:24;;;;:::i;:::-;:42;;47512:96;;;;-1:-1:-1;;;47512:96:0;;;;;;;:::i;:::-;47657:10;48565:7;48592:13;;;:6;:13;;;;;;47683:7;;47641:38;;47671:8;;47641:38;:::i;:::-;:49;;47619:103;;;;-1:-1:-1;;;47619:103:0;;;;;;;:::i;:::-;47751:8;47739;;:20;47735:313;;47776:31;47786:10;47798:8;47776:9;:31::i;:::-;47834:8;47822;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;47868:1:0;;-1:-1:-1;47735:313:0;;-1:-1:-1;47735:313:0;;47902:1;47891:8;;:12;:35;;;;;47918:8;47907;;:19;47891:35;47887:161;;;47955:8;;47943:20;;;;:::i;:::-;;;47978:31;47988:10;48000:8;;47978:9;:31::i;:::-;48035:1;48024:8;:12;47887:161;48064:12;;48060:186;;48139:9;48119:16;48130:5;48119:8;:16;:::i;:::-;:29;;48093:95;;;;-1:-1:-1;;;48093:95:0;;;;;;;:::i;:::-;48203:31;48213:10;48225:8;48203:9;:31::i;:::-;48265:10;48258:18;;;;:6;:18;;;;;:30;;48280:8;;48258:18;:30;;48280:8;;48258:30;:::i;:::-;;;;-1:-1:-1;;;;;;;47268:1028:0:o;45981:201::-;45118:7;45145:6;-1:-1:-1;;;;;45145:6:0;38268:10;45292:23;45284:68;;;;-1:-1:-1;;;45284:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46070:22:0;::::1;46062:73;;;::::0;-1:-1:-1;;;46062:73:0;;6287:2:1;46062:73:0::1;::::0;::::1;6269:21:1::0;6326:2;6306:18;;;6299:30;6365:34;6345:18;;;6338:62;-1:-1:-1;;;6416:18:1;;;6409:36;6462:19;;46062:73:0::1;6085:402:1::0;46062:73:0::1;46146:28;46165:8;46146:18;:28::i;48407:89::-:0;45118:7;45145:6;-1:-1:-1;;;;;45145:6:0;38268:10;45292:23;45284:68;;;;-1:-1:-1;;;45284:68:0;;;;;;;:::i;:::-;48471:8:::1;:17:::0;48407:89::o;24199:273::-;24256:4;24312:7;13744:1;24293:26;;:66;;;;;24346:13;;24336:7;:23;24293:66;:152;;;;-1:-1:-1;;24397:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;24397:43:0;:48;;24199:273::o;17401:1129::-;17468:7;17503;;13744:1;17552:23;17548:915;;17605:13;;17598:4;:20;17594:869;;;17643:14;17660:23;;;:17;:23;;;;;;-1:-1:-1;;;17749:23:0;;17745:699;;18268:113;18275:11;18268:113;;-1:-1:-1;;;18346:6:0;18328:25;;;;:17;:25;;;;;;18268:113;;17745:699;17620:843;17594:869;18491:31;;-1:-1:-1;;;18491:31:0;;;;;;;;;;;29438:2515;29553:27;29583;29602:7;29583:18;:27::i;:::-;29553:57;;29668:4;-1:-1:-1;;;;;29627:45:0;29643:19;-1:-1:-1;;;;;29627:45:0;;29623:86;;29681:28;;-1:-1:-1;;;29681:28:0;;;;;;;;;;;29623:86;29722:22;38268:10;-1:-1:-1;;;;;29748:27:0;;;;:87;;-1:-1:-1;29792:43:0;29809:4;38268:10;22820:164;:::i;29792:43::-;29748:147;;;-1:-1:-1;38268:10:0;29852:20;29864:7;29852:11;:20::i;:::-;-1:-1:-1;;;;;29852:43:0;;29748:147;29722:174;;29914:17;29909:66;;29940:35;;-1:-1:-1;;;29940:35:0;;;;;;;;;;;29909:66;-1:-1:-1;;;;;29990:16:0;;29986:52;;30015:23;;-1:-1:-1;;;30015:23:0;;;;;;;;;;;29986:52;30167:24;;;;:15;:24;;;;;;;;30160:31;;-1:-1:-1;;;;;;30160:31:0;;;-1:-1:-1;;;;;30559:24:0;;;;;:18;:24;;;;;30557:26;;-1:-1:-1;;30557:26:0;;;30628:22;;;;;;;30626:24;;-1:-1:-1;30626:24:0;;;30921:26;;;:17;:26;;;;;-1:-1:-1;;;31009:15:0;11756:3;31009:41;30967:84;;:128;;30921:174;;;31215:46;;31211:626;;31319:1;31309:11;;31287:19;31442:30;;;:17;:30;;;;;;31438:384;;31580:13;;31565:11;:28;31561:242;;31727:30;;;;:17;:30;;;;;:52;;;31561:242;31268:569;31211:626;31884:7;31880:2;-1:-1:-1;;;;;31865:27:0;31874:4;-1:-1:-1;;;;;31865:27:0;;;;;;;;;;;29542:2411;;29438:2515;;;:::o;24556:104::-;24625:27;24635:2;24639:8;24625:27;;;;;;;;;;;;:9;:27::i;:::-;24556:104;;:::o;46342:191::-;46416:16;46435:6;;-1:-1:-1;;;;;46452:17:0;;;-1:-1:-1;;;;;;46452:17:0;;;;;;46485:40;;46435:6;;;;;;;46485:40;;46416:16;46485:40;46405:128;46342:191;:::o;35650:716::-;35834:88;;-1:-1:-1;;;35834:88:0;;35813:4;;-1:-1:-1;;;;;35834:45:0;;;;;:88;;38268:10;;35901:4;;35907:7;;35916:5;;35834:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35834:88:0;;;;;;;;-1:-1:-1;;35834:88:0;;;;;;;;;;;;:::i;:::-;;;35830:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36117:13:0;;36113:235;;36163:40;;-1:-1:-1;;;36163:40:0;;;;;;;;;;;36113:235;36306:6;36300:13;36291:6;36287:2;36283:15;36276:38;35830:529;-1:-1:-1;;;;;;35993:64:0;-1:-1:-1;;;35993:64:0;;-1:-1:-1;35650:716:0;;;;;;:::o;48848:114::-;48908:13;48941;48934:20;;;;;:::i;38392:1959::-;38863:4;38857:11;;38870:3;38853:21;;38948:17;;;;39645:11;;;39524:5;39777:2;39791;39781:13;;39773:22;39645:11;39760:36;39832:2;39822:13;;39415:682;39851:4;39415:682;;;40026:1;40021:3;40017:11;40010:18;;40077:2;40071:4;40067:13;40063:2;40059:22;40054:3;40046:36;39947:2;39937:13;;39415:682;;;-1:-1:-1;40139:13:0;;;-1:-1:-1;;40254:12:0;;;40314:19;;;40254:12;38392:1959;-1:-1:-1;38392:1959:0:o;25033:2236::-;25179:13;;-1:-1:-1;;;;;25207:16:0;;25203:48;;25232:19;;-1:-1:-1;;;25232:19:0;;;;;;;;;;;25203:48;25266:13;25262:44;;25288:18;;-1:-1:-1;;;25288:18:0;;;;;;;;;;;25262:44;-1:-1:-1;;;;;25855:22:0;;;;;;:18;:22;;;;11239:2;25855:22;;;:70;;25893:31;25881:44;;25855:70;;;26168:31;;;:17;:31;;;;;26261:15;11756:3;26261:41;26219:84;;-1:-1:-1;26339:13:0;;12019:3;26324:56;26219:162;26168:213;;:31;;26462:23;;;;26506:14;:19;26502:635;;26546:313;26577:38;;26602:12;;-1:-1:-1;;;;;26577:38:0;;;26594:1;;26577:38;;26594:1;;26577:38;26643:69;26682:1;26686:2;26690:14;;;;;;26706:5;26643:30;:69::i;:::-;26638:174;;26748:40;;-1:-1:-1;;;26748:40:0;;;;;;;;;;;26638:174;26854:3;26839:12;:18;26546:313;;26940:12;26923:13;;:29;26919:43;;26954:8;;;26919:43;26502:635;;;27003:119;27034:40;;27059:14;;;;;-1:-1:-1;;;;;27034:40:0;;;27051:1;;27034:40;;27051:1;;27034:40;27117:3;27102:12;:18;27003:119;;26502:635;-1:-1:-1;27151:13:0;:28;27201:60;27230:1;27234:2;27238:12;27252:8;27201:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:470::-;4462:3;4500:6;4494:13;4516:53;4562:6;4557:3;4550:4;4542:6;4538:17;4516:53;:::i;:::-;4632:13;;4591:16;;;;4654:57;4632:13;4591:16;4688:4;4676:17;;4654:57;:::i;:::-;4727:20;;4283:470;-1:-1:-1;;;;4283:470:1:o;5176:488::-;-1:-1:-1;;;;;5445:15:1;;;5427:34;;5497:15;;5492:2;5477:18;;5470:43;5544:2;5529:18;;5522:34;;;5592:3;5587:2;5572:18;;5565:31;;;5370:4;;5613:45;;5638:19;;5630:6;5613:45;:::i;:::-;5605:53;5176:488;-1:-1:-1;;;;;;5176:488:1:o;5861:219::-;6010:2;5999:9;5992:21;5973:4;6030:44;6070:2;6059:9;6055:18;6047:6;6030:44;:::i;6492:356::-;6694:2;6676:21;;;6713:18;;;6706:30;6772:34;6767:2;6752:18;;6745:62;6839:2;6824:18;;6492:356::o;7213:327::-;7415:2;7397:21;;;7454:1;7434:18;;;7427:29;-1:-1:-1;;;7487:2:1;7472:18;;7465:34;7531:2;7516:18;;7213:327::o;8051:128::-;8091:3;8122:1;8118:6;8115:1;8112:13;8109:39;;;8128:18;;:::i;:::-;-1:-1:-1;8164:9:1;;8051:128::o;8184:168::-;8224:7;8290:1;8286;8282:6;8278:14;8275:1;8272:21;8267:1;8260:9;8253:17;8249:45;8246:71;;;8297:18;;:::i;:::-;-1:-1:-1;8337:9:1;;8184:168::o;8357:125::-;8397:4;8425:1;8422;8419:8;8416:34;;;8430:18;;:::i;:::-;-1:-1:-1;8467:9:1;;8357:125::o;8487:258::-;8559:1;8569:113;8583:6;8580:1;8577:13;8569:113;;;8659:11;;;8653:18;8640:11;;;8633:39;8605:2;8598:10;8569:113;;;8700:6;8697:1;8694:13;8691:48;;;-1:-1:-1;;8735:1:1;8717:16;;8710:27;8487:258::o;8750:380::-;8829:1;8825:12;;;;8872;;;8893:61;;8947:4;8939:6;8935:17;8925:27;;8893:61;9000:2;8992:6;8989:14;8969:18;8966:38;8963:161;;;9046:10;9041:3;9037:20;9034:1;9027:31;9081:4;9078:1;9071:15;9109:4;9106:1;9099:15;8963:161;;8750:380;;;:::o;9135:127::-;9196:10;9191:3;9187:20;9184:1;9177:31;9227:4;9224:1;9217:15;9251:4;9248:1;9241:15;9267:127;9328:10;9323:3;9319:20;9316:1;9309:31;9359:4;9356:1;9349:15;9383:4;9380:1;9373:15;9399:131;-1:-1:-1;;;;;;9473:32:1;;9463:43;;9453:71;;9520:1;9517;9510:12

Swarm Source

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