ETH Price: $2,591.81 (-2.69%)

Token

Moon Lambs (ML)
 

Overview

Max Total Supply

7 ML

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ML
0xD6c9706C1f0EE53C12117809dB30CAD05D1C3274
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:
MoonLambs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-28
*/

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory 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.
                // The ASCII index of the '0' character is 48.
                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: contracts/MoonLambs.sol


pragma solidity ^0.8.4;

contract MoonLambs is ERC721A, Ownable {
  uint256 constant EXTRA_MINT_PRICE = 0.0069 ether;
  uint256 constant MAX_SUPPLY_PLUS_ONE = 5555;
  uint256 constant MAX_PER_TRANSACTION_PLUS_ONE = 11;

  string tokenBaseUri = "ipfs://Qmb5j3MxsgHtzXHaXNxhCtKSoGLgm1YLL2MFksh5oh9Bdr/";

  bool public paused = true;

  mapping(address => uint256) private _freeMintedCount;

  constructor() ERC721A("Moon Lambs", "ML") {}

  function mint(uint256 _quantity) external payable {
    require(!paused, "Minting paused");

    uint256 _totalSupply = totalSupply();

    require(_totalSupply + _quantity < MAX_SUPPLY_PLUS_ONE, "Exceeds supply");
    require(_quantity < MAX_PER_TRANSACTION_PLUS_ONE, "Exceeds max per tx");

    uint256 payForCount = _quantity;
    uint256 freeMintCount = _freeMintedCount[msg.sender];

    if (freeMintCount < 1) {
      if (_quantity > 1) {
        payForCount = _quantity - 1;
      } else {
        payForCount = 0;
      }

      _freeMintedCount[msg.sender] = 1;
    }

    require(msg.value >= payForCount * EXTRA_MINT_PRICE, "ETH sent not correct");

    _mint(msg.sender, _quantity);
  }

  function freeMintedCount(address owner) external view returns (uint256) {
    return _freeMintedCount[owner];
  }

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

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

  function setBaseURI(string calldata _newBaseUri) external onlyOwner {
    tokenBaseUri = _newBaseUri;
  }

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

  function collectReserves() external onlyOwner {
    require(totalSupply() == 0, "Reserves already taken");

    _mint(msg.sender, 100);
  }

  function withdraw() external onlyOwner {
    require(
      payable(owner()).send(address(this).balance),
      "Withdraw unsuccessful"
    );
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","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":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806036815260200162002cbb60369139600990805190602001906200003592919062000212565b506001600a60006101000a81548160ff0219169083151502179055503480156200005e57600080fd5b506040518060400160405280600a81526020017f4d6f6f6e204c616d6273000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d4c0000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000e392919062000212565b508060039080519060200190620000fc92919062000212565b506200010d6200013b60201b60201c565b600081905550505062000135620001296200014460201b60201c565b6200014c60201b60201c565b62000327565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022090620002c2565b90600052602060002090601f01602090048101928262000244576000855562000290565b82601f106200025f57805160ff191683800117855562000290565b8280016001018555821562000290579182015b828111156200028f57825182559160200191906001019062000272565b5b5090506200029f9190620002a3565b5090565b5b80821115620002be576000816000905550600101620002a4565b5090565b60006002820490506001821680620002db57607f821691505b60208210811415620002f257620002f1620002f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61298480620003376000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063a0712d681161006f578063a0712d6814610458578063a22cb46514610474578063b88d4fde1461049d578063c87b56dd146104c6578063e985e9c514610503578063f2fde38b146105405761014b565b806370a082311461035a578063715018a6146103975780637ba5e621146103ae5780638da5cb5b146103c557806395d89b41146103f0578063981332351461041b5761014b565b806323b872dd1161010857806323b872dd146102605780633ccfd60b1461028957806342842e0e146102a057806355f804b3146102c95780635c975abb146102f25780636352211e1461031d5761014b565b806301ffc9a714610150578063029877b61461018d57806306fdde03146101a4578063081812fc146101cf578063095ea7b31461020c57806318160ddd14610235575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611f93565b610569565b60405161018491906122da565b60405180910390f35b34801561019957600080fd5b506101a26105fb565b005b3480156101b057600080fd5b506101b961065a565b6040516101c691906122f5565b60405180910390f35b3480156101db57600080fd5b506101f660048036038101906101f1919061203a565b6106ec565b6040516102039190612273565b60405180910390f35b34801561021857600080fd5b50610233600480360381019061022e9190611f53565b61076b565b005b34801561024157600080fd5b5061024a6108af565b6040516102579190612417565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190611e3d565b6108c6565b005b34801561029557600080fd5b5061029e610beb565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190611e3d565b610c70565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190611fed565b610c90565b005b3480156102fe57600080fd5b50610307610cae565b60405161031491906122da565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f919061203a565b610cc1565b6040516103519190612273565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190611dd0565b610cd3565b60405161038e9190612417565b60405180910390f35b3480156103a357600080fd5b506103ac610d8c565b005b3480156103ba57600080fd5b506103c3610da0565b005b3480156103d157600080fd5b506103da610dd4565b6040516103e79190612273565b60405180910390f35b3480156103fc57600080fd5b50610405610dfe565b60405161041291906122f5565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190611dd0565b610e90565b60405161044f9190612417565b60405180910390f35b610472600480360381019061046d919061203a565b610ed9565b005b34801561048057600080fd5b5061049b60048036038101906104969190611f13565b6110e6565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190611e90565b61125e565b005b3480156104d257600080fd5b506104ed60048036038101906104e8919061203a565b6112d1565b6040516104fa91906122f5565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190611dfd565b611370565b60405161053791906122da565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190611dd0565b611404565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610603611488565b600061060d6108af565b1461064d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610644906123d7565b60405180910390fd5b610658336064611506565b565b60606002805461066990612665565b80601f016020809104026020016040519081016040528092919081815260200182805461069590612665565b80156106e25780601f106106b7576101008083540402835291602001916106e2565b820191906000526020600020905b8154815290600101906020018083116106c557829003601f168201915b5050505050905090565b60006106f7826116c3565b61072d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077682610cc1565b90508073ffffffffffffffffffffffffffffffffffffffff16610797611722565b73ffffffffffffffffffffffffffffffffffffffff16146107fa576107c3816107be611722565b611370565b6107f9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108b961172a565b6001546000540303905090565b60006108d182611733565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610938576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061094484611801565b9150915061095a8187610955611722565b611828565b6109a65761096f8661096a611722565b611370565b6109a5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a1a868686600161186c565b8015610a2557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610af385610acf888887611872565b7c02000000000000000000000000000000000000000000000000000000001761189a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b7b576000600185019050600060046000838152602001908152602001600020541415610b79576000548114610b78578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610be386868660016118c5565b505050505050565b610bf3611488565b610bfb610dd4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906123f7565b60405180910390fd5b565b610c8b8383836040518060200160405280600081525061125e565b505050565b610c98611488565b818160099190610ca9929190611bfe565b505050565b600a60009054906101000a900460ff1681565b6000610ccc82611733565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d94611488565b610d9e60006118cb565b565b610da8611488565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e0d90612665565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3990612665565b8015610e865780601f10610e5b57610100808354040283529160200191610e86565b820191906000526020600020905b815481529060010190602001808311610e6957829003601f168201915b5050505050905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900460ff1615610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090612357565b60405180910390fd5b6000610f336108af565b90506115b38282610f4491906124cb565b10610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90612317565b60405180910390fd5b600b8210610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90612397565b60405180910390fd5b60008290506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018110156110815760018411156110365760018461102f919061257b565b915061103b565b600091505b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6618838370f34000826110949190612521565b3410156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90612337565b60405180910390fd5b6110e03385611506565b50505050565b6110ee611722565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611153576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611160611722565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661120d611722565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125291906122da565b60405180910390a35050565b6112698484846108c6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112cb5761129484848484611991565b6112ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112dc826116c3565b611312576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061131c611af1565b905060008151141561133d5760405180602001604052806000815250611368565b8061134784611b83565b60405160200161135892919061224f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61140c611488565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390612377565b60405180910390fd5b611485816118cb565b50565b611490611bdd565b73ffffffffffffffffffffffffffffffffffffffff166114ae610dd4565b73ffffffffffffffffffffffffffffffffffffffff1614611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb906123b7565b60405180910390fd5b565b6000805490506000821415611547576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611554600084838561186c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115cb836115bc6000866000611872565b6115c585611be5565b1761189a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461166c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611631565b5060008214156116a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506116be60008483856118c5565b505050565b6000816116ce61172a565b111580156116dd575060005482105b801561171b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061174261172a565b116117ca576000548110156117c95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c7575b60008114156117bd576004600083600190039350838152602001908152602001600020549050611792565b80925050506117fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611889868684611bf5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119b7611722565b8786866040518563ffffffff1660e01b81526004016119d9949392919061228e565b602060405180830381600087803b1580156119f357600080fd5b505af1925050508015611a2457506040513d601f19601f82011682018060405250810190611a219190611fc0565b60015b611a9e573d8060008114611a54576040519150601f19603f3d011682016040523d82523d6000602084013e611a59565b606091505b50600081511415611a96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611b0090612665565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2c90612665565b8015611b795780601f10611b4e57610100808354040283529160200191611b79565b820191906000526020600020905b815481529060010190602001808311611b5c57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611bc957600183039250600a81066030018353600a81049050611ba9565b508181036020830392508083525050919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b828054611c0a90612665565b90600052602060002090601f016020900481019282611c2c5760008555611c73565b82601f10611c4557803560ff1916838001178555611c73565b82800160010185558215611c73579182015b82811115611c72578235825591602001919060010190611c57565b5b509050611c809190611c84565b5090565b5b80821115611c9d576000816000905550600101611c85565b5090565b6000611cb4611caf84612457565b612432565b905082815260208101848484011115611cd057611ccf612764565b5b611cdb848285612623565b509392505050565b600081359050611cf2816128f2565b92915050565b600081359050611d0781612909565b92915050565b600081359050611d1c81612920565b92915050565b600081519050611d3181612920565b92915050565b600082601f830112611d4c57611d4b61275a565b5b8135611d5c848260208601611ca1565b91505092915050565b60008083601f840112611d7b57611d7a61275a565b5b8235905067ffffffffffffffff811115611d9857611d97612755565b5b602083019150836001820283011115611db457611db361275f565b5b9250929050565b600081359050611dca81612937565b92915050565b600060208284031215611de657611de561276e565b5b6000611df484828501611ce3565b91505092915050565b60008060408385031215611e1457611e1361276e565b5b6000611e2285828601611ce3565b9250506020611e3385828601611ce3565b9150509250929050565b600080600060608486031215611e5657611e5561276e565b5b6000611e6486828701611ce3565b9350506020611e7586828701611ce3565b9250506040611e8686828701611dbb565b9150509250925092565b60008060008060808587031215611eaa57611ea961276e565b5b6000611eb887828801611ce3565b9450506020611ec987828801611ce3565b9350506040611eda87828801611dbb565b925050606085013567ffffffffffffffff811115611efb57611efa612769565b5b611f0787828801611d37565b91505092959194509250565b60008060408385031215611f2a57611f2961276e565b5b6000611f3885828601611ce3565b9250506020611f4985828601611cf8565b9150509250929050565b60008060408385031215611f6a57611f6961276e565b5b6000611f7885828601611ce3565b9250506020611f8985828601611dbb565b9150509250929050565b600060208284031215611fa957611fa861276e565b5b6000611fb784828501611d0d565b91505092915050565b600060208284031215611fd657611fd561276e565b5b6000611fe484828501611d22565b91505092915050565b600080602083850312156120045761200361276e565b5b600083013567ffffffffffffffff81111561202257612021612769565b5b61202e85828601611d65565b92509250509250929050565b6000602082840312156120505761204f61276e565b5b600061205e84828501611dbb565b91505092915050565b612070816125af565b82525050565b61207f816125c1565b82525050565b600061209082612488565b61209a818561249e565b93506120aa818560208601612632565b6120b381612773565b840191505092915050565b60006120c982612493565b6120d381856124af565b93506120e3818560208601612632565b6120ec81612773565b840191505092915050565b600061210282612493565b61210c81856124c0565b935061211c818560208601612632565b80840191505092915050565b6000612135600e836124af565b915061214082612784565b602082019050919050565b60006121586014836124af565b9150612163826127ad565b602082019050919050565b600061217b600e836124af565b9150612186826127d6565b602082019050919050565b600061219e6026836124af565b91506121a9826127ff565b604082019050919050565b60006121c16012836124af565b91506121cc8261284e565b602082019050919050565b60006121e46020836124af565b91506121ef82612877565b602082019050919050565b60006122076016836124af565b9150612212826128a0565b602082019050919050565b600061222a6015836124af565b9150612235826128c9565b602082019050919050565b61224981612619565b82525050565b600061225b82856120f7565b915061226782846120f7565b91508190509392505050565b60006020820190506122886000830184612067565b92915050565b60006080820190506122a36000830187612067565b6122b06020830186612067565b6122bd6040830185612240565b81810360608301526122cf8184612085565b905095945050505050565b60006020820190506122ef6000830184612076565b92915050565b6000602082019050818103600083015261230f81846120be565b905092915050565b6000602082019050818103600083015261233081612128565b9050919050565b600060208201905081810360008301526123508161214b565b9050919050565b600060208201905081810360008301526123708161216e565b9050919050565b6000602082019050818103600083015261239081612191565b9050919050565b600060208201905081810360008301526123b0816121b4565b9050919050565b600060208201905081810360008301526123d0816121d7565b9050919050565b600060208201905081810360008301526123f0816121fa565b9050919050565b600060208201905081810360008301526124108161221d565b9050919050565b600060208201905061242c6000830184612240565b92915050565b600061243c61244d565b90506124488282612697565b919050565b6000604051905090565b600067ffffffffffffffff82111561247257612471612726565b5b61247b82612773565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006124d682612619565b91506124e183612619565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612516576125156126c8565b5b828201905092915050565b600061252c82612619565b915061253783612619565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125705761256f6126c8565b5b828202905092915050565b600061258682612619565b915061259183612619565b9250828210156125a4576125a36126c8565b5b828203905092915050565b60006125ba826125f9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612650578082015181840152602081019050612635565b8381111561265f576000848401525b50505050565b6000600282049050600182168061267d57607f821691505b60208210811415612691576126906126f7565b5b50919050565b6126a082612773565b810181811067ffffffffffffffff821117156126bf576126be612726565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4554482073656e74206e6f7420636f7272656374000000000000000000000000600082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f526573657276657320616c72656164792074616b656e00000000000000000000600082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b6128fb816125af565b811461290657600080fd5b50565b612912816125c1565b811461291d57600080fd5b50565b612929816125cd565b811461293457600080fd5b50565b61294081612619565b811461294b57600080fd5b5056fea2646970667358221220c8a7189a1f8e9b961df40b8863db78800d2e677790675dff271f7006a15b180564736f6c63430008070033697066733a2f2f516d62356a334d78736748747a584861584e786843744b536f474c676d31594c4c324d466b7368356f68394264722f

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063a0712d681161006f578063a0712d6814610458578063a22cb46514610474578063b88d4fde1461049d578063c87b56dd146104c6578063e985e9c514610503578063f2fde38b146105405761014b565b806370a082311461035a578063715018a6146103975780637ba5e621146103ae5780638da5cb5b146103c557806395d89b41146103f0578063981332351461041b5761014b565b806323b872dd1161010857806323b872dd146102605780633ccfd60b1461028957806342842e0e146102a057806355f804b3146102c95780635c975abb146102f25780636352211e1461031d5761014b565b806301ffc9a714610150578063029877b61461018d57806306fdde03146101a4578063081812fc146101cf578063095ea7b31461020c57806318160ddd14610235575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611f93565b610569565b60405161018491906122da565b60405180910390f35b34801561019957600080fd5b506101a26105fb565b005b3480156101b057600080fd5b506101b961065a565b6040516101c691906122f5565b60405180910390f35b3480156101db57600080fd5b506101f660048036038101906101f1919061203a565b6106ec565b6040516102039190612273565b60405180910390f35b34801561021857600080fd5b50610233600480360381019061022e9190611f53565b61076b565b005b34801561024157600080fd5b5061024a6108af565b6040516102579190612417565b60405180910390f35b34801561026c57600080fd5b5061028760048036038101906102829190611e3d565b6108c6565b005b34801561029557600080fd5b5061029e610beb565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190611e3d565b610c70565b005b3480156102d557600080fd5b506102f060048036038101906102eb9190611fed565b610c90565b005b3480156102fe57600080fd5b50610307610cae565b60405161031491906122da565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f919061203a565b610cc1565b6040516103519190612273565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190611dd0565b610cd3565b60405161038e9190612417565b60405180910390f35b3480156103a357600080fd5b506103ac610d8c565b005b3480156103ba57600080fd5b506103c3610da0565b005b3480156103d157600080fd5b506103da610dd4565b6040516103e79190612273565b60405180910390f35b3480156103fc57600080fd5b50610405610dfe565b60405161041291906122f5565b60405180910390f35b34801561042757600080fd5b50610442600480360381019061043d9190611dd0565b610e90565b60405161044f9190612417565b60405180910390f35b610472600480360381019061046d919061203a565b610ed9565b005b34801561048057600080fd5b5061049b60048036038101906104969190611f13565b6110e6565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190611e90565b61125e565b005b3480156104d257600080fd5b506104ed60048036038101906104e8919061203a565b6112d1565b6040516104fa91906122f5565b60405180910390f35b34801561050f57600080fd5b5061052a60048036038101906105259190611dfd565b611370565b60405161053791906122da565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190611dd0565b611404565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105c457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610603611488565b600061060d6108af565b1461064d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610644906123d7565b60405180910390fd5b610658336064611506565b565b60606002805461066990612665565b80601f016020809104026020016040519081016040528092919081815260200182805461069590612665565b80156106e25780601f106106b7576101008083540402835291602001916106e2565b820191906000526020600020905b8154815290600101906020018083116106c557829003601f168201915b5050505050905090565b60006106f7826116c3565b61072d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061077682610cc1565b90508073ffffffffffffffffffffffffffffffffffffffff16610797611722565b73ffffffffffffffffffffffffffffffffffffffff16146107fa576107c3816107be611722565b611370565b6107f9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108b961172a565b6001546000540303905090565b60006108d182611733565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610938576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061094484611801565b9150915061095a8187610955611722565b611828565b6109a65761096f8661096a611722565b611370565b6109a5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a1a868686600161186c565b8015610a2557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610af385610acf888887611872565b7c02000000000000000000000000000000000000000000000000000000001761189a565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b7b576000600185019050600060046000838152602001908152602001600020541415610b79576000548114610b78578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610be386868660016118c5565b505050505050565b610bf3611488565b610bfb610dd4565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906123f7565b60405180910390fd5b565b610c8b8383836040518060200160405280600081525061125e565b505050565b610c98611488565b818160099190610ca9929190611bfe565b505050565b600a60009054906101000a900460ff1681565b6000610ccc82611733565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610d94611488565b610d9e60006118cb565b565b610da8611488565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e0d90612665565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3990612665565b8015610e865780601f10610e5b57610100808354040283529160200191610e86565b820191906000526020600020905b815481529060010190602001808311610e6957829003601f168201915b5050505050905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600a60009054906101000a900460ff1615610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090612357565b60405180910390fd5b6000610f336108af565b90506115b38282610f4491906124cb565b10610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90612317565b60405180910390fd5b600b8210610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90612397565b60405180910390fd5b60008290506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018110156110815760018411156110365760018461102f919061257b565b915061103b565b600091505b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6618838370f34000826110949190612521565b3410156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90612337565b60405180910390fd5b6110e03385611506565b50505050565b6110ee611722565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611153576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611160611722565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661120d611722565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161125291906122da565b60405180910390a35050565b6112698484846108c6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112cb5761129484848484611991565b6112ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606112dc826116c3565b611312576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061131c611af1565b905060008151141561133d5760405180602001604052806000815250611368565b8061134784611b83565b60405160200161135892919061224f565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61140c611488565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390612377565b60405180910390fd5b611485816118cb565b50565b611490611bdd565b73ffffffffffffffffffffffffffffffffffffffff166114ae610dd4565b73ffffffffffffffffffffffffffffffffffffffff1614611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb906123b7565b60405180910390fd5b565b6000805490506000821415611547576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611554600084838561186c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506115cb836115bc6000866000611872565b6115c585611be5565b1761189a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461166c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611631565b5060008214156116a8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506116be60008483856118c5565b505050565b6000816116ce61172a565b111580156116dd575060005482105b801561171b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061174261172a565b116117ca576000548110156117c95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c7575b60008114156117bd576004600083600190039350838152602001908152602001600020549050611792565b80925050506117fc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611889868684611bf5565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119b7611722565b8786866040518563ffffffff1660e01b81526004016119d9949392919061228e565b602060405180830381600087803b1580156119f357600080fd5b505af1925050508015611a2457506040513d601f19601f82011682018060405250810190611a219190611fc0565b60015b611a9e573d8060008114611a54576040519150601f19603f3d011682016040523d82523d6000602084013e611a59565b606091505b50600081511415611a96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611b0090612665565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2c90612665565b8015611b795780601f10611b4e57610100808354040283529160200191611b79565b820191906000526020600020905b815481529060010190602001808311611b5c57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611bc957600183039250600a81066030018353600a81049050611ba9565b508181036020830392508083525050919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b828054611c0a90612665565b90600052602060002090601f016020900481019282611c2c5760008555611c73565b82601f10611c4557803560ff1916838001178555611c73565b82800160010185558215611c73579182015b82811115611c72578235825591602001919060010190611c57565b5b509050611c809190611c84565b5090565b5b80821115611c9d576000816000905550600101611c85565b5090565b6000611cb4611caf84612457565b612432565b905082815260208101848484011115611cd057611ccf612764565b5b611cdb848285612623565b509392505050565b600081359050611cf2816128f2565b92915050565b600081359050611d0781612909565b92915050565b600081359050611d1c81612920565b92915050565b600081519050611d3181612920565b92915050565b600082601f830112611d4c57611d4b61275a565b5b8135611d5c848260208601611ca1565b91505092915050565b60008083601f840112611d7b57611d7a61275a565b5b8235905067ffffffffffffffff811115611d9857611d97612755565b5b602083019150836001820283011115611db457611db361275f565b5b9250929050565b600081359050611dca81612937565b92915050565b600060208284031215611de657611de561276e565b5b6000611df484828501611ce3565b91505092915050565b60008060408385031215611e1457611e1361276e565b5b6000611e2285828601611ce3565b9250506020611e3385828601611ce3565b9150509250929050565b600080600060608486031215611e5657611e5561276e565b5b6000611e6486828701611ce3565b9350506020611e7586828701611ce3565b9250506040611e8686828701611dbb565b9150509250925092565b60008060008060808587031215611eaa57611ea961276e565b5b6000611eb887828801611ce3565b9450506020611ec987828801611ce3565b9350506040611eda87828801611dbb565b925050606085013567ffffffffffffffff811115611efb57611efa612769565b5b611f0787828801611d37565b91505092959194509250565b60008060408385031215611f2a57611f2961276e565b5b6000611f3885828601611ce3565b9250506020611f4985828601611cf8565b9150509250929050565b60008060408385031215611f6a57611f6961276e565b5b6000611f7885828601611ce3565b9250506020611f8985828601611dbb565b9150509250929050565b600060208284031215611fa957611fa861276e565b5b6000611fb784828501611d0d565b91505092915050565b600060208284031215611fd657611fd561276e565b5b6000611fe484828501611d22565b91505092915050565b600080602083850312156120045761200361276e565b5b600083013567ffffffffffffffff81111561202257612021612769565b5b61202e85828601611d65565b92509250509250929050565b6000602082840312156120505761204f61276e565b5b600061205e84828501611dbb565b91505092915050565b612070816125af565b82525050565b61207f816125c1565b82525050565b600061209082612488565b61209a818561249e565b93506120aa818560208601612632565b6120b381612773565b840191505092915050565b60006120c982612493565b6120d381856124af565b93506120e3818560208601612632565b6120ec81612773565b840191505092915050565b600061210282612493565b61210c81856124c0565b935061211c818560208601612632565b80840191505092915050565b6000612135600e836124af565b915061214082612784565b602082019050919050565b60006121586014836124af565b9150612163826127ad565b602082019050919050565b600061217b600e836124af565b9150612186826127d6565b602082019050919050565b600061219e6026836124af565b91506121a9826127ff565b604082019050919050565b60006121c16012836124af565b91506121cc8261284e565b602082019050919050565b60006121e46020836124af565b91506121ef82612877565b602082019050919050565b60006122076016836124af565b9150612212826128a0565b602082019050919050565b600061222a6015836124af565b9150612235826128c9565b602082019050919050565b61224981612619565b82525050565b600061225b82856120f7565b915061226782846120f7565b91508190509392505050565b60006020820190506122886000830184612067565b92915050565b60006080820190506122a36000830187612067565b6122b06020830186612067565b6122bd6040830185612240565b81810360608301526122cf8184612085565b905095945050505050565b60006020820190506122ef6000830184612076565b92915050565b6000602082019050818103600083015261230f81846120be565b905092915050565b6000602082019050818103600083015261233081612128565b9050919050565b600060208201905081810360008301526123508161214b565b9050919050565b600060208201905081810360008301526123708161216e565b9050919050565b6000602082019050818103600083015261239081612191565b9050919050565b600060208201905081810360008301526123b0816121b4565b9050919050565b600060208201905081810360008301526123d0816121d7565b9050919050565b600060208201905081810360008301526123f0816121fa565b9050919050565b600060208201905081810360008301526124108161221d565b9050919050565b600060208201905061242c6000830184612240565b92915050565b600061243c61244d565b90506124488282612697565b919050565b6000604051905090565b600067ffffffffffffffff82111561247257612471612726565b5b61247b82612773565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006124d682612619565b91506124e183612619565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612516576125156126c8565b5b828201905092915050565b600061252c82612619565b915061253783612619565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125705761256f6126c8565b5b828202905092915050565b600061258682612619565b915061259183612619565b9250828210156125a4576125a36126c8565b5b828203905092915050565b60006125ba826125f9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612650578082015181840152602081019050612635565b8381111561265f576000848401525b50505050565b6000600282049050600182168061267d57607f821691505b60208210811415612691576126906126f7565b5b50919050565b6126a082612773565b810181811067ffffffffffffffff821117156126bf576126be612726565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4554482073656e74206e6f7420636f7272656374000000000000000000000000600082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f526573657276657320616c72656164792074616b656e00000000000000000000600082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b6128fb816125af565b811461290657600080fd5b50565b612912816125c1565b811461291d57600080fd5b50565b612929816125cd565b811461293457600080fd5b50565b61294081612619565b811461294b57600080fd5b5056fea2646970667358221220c8a7189a1f8e9b961df40b8863db78800d2e677790675dff271f7006a15b180564736f6c63430008070033

Deployed Bytecode Sourcemap

54905:1965:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22028:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56567:143;;;;;;;;;;;;;:::i;:::-;;22930:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29413:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28854:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18681:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33120:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56716:151;;;;;;;;;;;;;:::i;:::-;;36033:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56380:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55192:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24323:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19865:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2776:103;;;;;;;;;;;;;:::i;:::-;;56493:68;;;;;;;;;;;;;:::i;:::-;;2128:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23106:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56061:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55333:722;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29971:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36816:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23316:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30436:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3034:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22028:639;22113:4;22452:10;22437:25;;:11;:25;;;;:102;;;;22529:10;22514:25;;:11;:25;;;;22437:102;:179;;;;22606:10;22591:25;;:11;:25;;;;22437:179;22417:199;;22028:639;;;:::o;56567:143::-;2014:13;:11;:13::i;:::-;56645:1:::1;56628:13;:11;:13::i;:::-;:18;56620:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56682:22;56688:10;56700:3;56682:5;:22::i;:::-;56567:143::o:0;22930:100::-;22984:13;23017:5;23010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22930:100;:::o;29413:218::-;29489:7;29514:16;29522:7;29514;:16::i;:::-;29509:64;;29539:34;;;;;;;;;;;;;;29509:64;29593:15;:24;29609:7;29593:24;;;;;;;;;;;:30;;;;;;;;;;;;29586:37;;29413:218;;;:::o;28854:400::-;28935:13;28951:16;28959:7;28951;:16::i;:::-;28935:32;;29007:5;28984:28;;:19;:17;:19::i;:::-;:28;;;28980:175;;29032:44;29049:5;29056:19;:17;:19::i;:::-;29032:16;:44::i;:::-;29027:128;;29104:35;;;;;;;;;;;;;;29027:128;28980:175;29200:2;29167:15;:24;29183:7;29167:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29238:7;29234:2;29218:28;;29227:5;29218:28;;;;;;;;;;;;28924:330;28854:400;;:::o;18681:323::-;18742:7;18970:15;:13;:15::i;:::-;18955:12;;18939:13;;:28;:46;18932:53;;18681:323;:::o;33120:2817::-;33254:27;33284;33303:7;33284:18;:27::i;:::-;33254:57;;33369:4;33328:45;;33344:19;33328:45;;;33324:86;;33382:28;;;;;;;;;;;;;;33324:86;33424:27;33453:23;33480:35;33507:7;33480:26;:35::i;:::-;33423:92;;;;33615:68;33640:15;33657:4;33663:19;:17;:19::i;:::-;33615:24;:68::i;:::-;33610:180;;33703:43;33720:4;33726:19;:17;:19::i;:::-;33703:16;:43::i;:::-;33698:92;;33755:35;;;;;;;;;;;;;;33698:92;33610:180;33821:1;33807:16;;:2;:16;;;33803:52;;;33832:23;;;;;;;;;;;;;;33803:52;33868:43;33890:4;33896:2;33900:7;33909:1;33868:21;:43::i;:::-;34004:15;34001:160;;;34144:1;34123:19;34116:30;34001:160;34541:18;:24;34560:4;34541:24;;;;;;;;;;;;;;;;34539:26;;;;;;;;;;;;34610:18;:22;34629:2;34610:22;;;;;;;;;;;;;;;;34608:24;;;;;;;;;;;34932:146;34969:2;35018:45;35033:4;35039:2;35043:19;35018:14;:45::i;:::-;15080:8;34990:73;34932:18;:146::i;:::-;34903:17;:26;34921:7;34903:26;;;;;;;;;;;:175;;;;35249:1;15080:8;35198:19;:47;:52;35194:627;;;35271:19;35303:1;35293:7;:11;35271:33;;35460:1;35426:17;:30;35444:11;35426:30;;;;;;;;;;;;:35;35422:384;;;35564:13;;35549:11;:28;35545:242;;35744:19;35711:17;:30;35729:11;35711:30;;;;;;;;;;;:52;;;;35545:242;35422:384;35252:569;35194:627;35868:7;35864:2;35849:27;;35858:4;35849:27;;;;;;;;;;;;35887:42;35908:4;35914:2;35918:7;35927:1;35887:20;:42::i;:::-;33243:2694;;;33120:2817;;;:::o;56716:151::-;2014:13;:11;:13::i;:::-;56786:7:::1;:5;:7::i;:::-;56778:21;;:44;56800:21;56778:44;;;;;;;;;;;;;;;;;;;;;;;56762:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;56716:151::o:0;36033:185::-;36171:39;36188:4;36194:2;36198:7;36171:39;;;;;;;;;;;;:16;:39::i;:::-;36033:185;;;:::o;56380:107::-;2014:13;:11;:13::i;:::-;56470:11:::1;;56455:12;:26;;;;;;;:::i;:::-;;56380:107:::0;;:::o;55192:25::-;;;;;;;;;;;;;:::o;24323:152::-;24395:7;24438:27;24457:7;24438:18;:27::i;:::-;24415:52;;24323:152;;;:::o;19865:233::-;19937:7;19978:1;19961:19;;:5;:19;;;19957:60;;;19989:28;;;;;;;;;;;;;;19957:60;14024:13;20035:18;:25;20054:5;20035:25;;;;;;;;;;;;;;;;:55;20028:62;;19865:233;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;56493:68::-;2014:13;:11;:13::i;:::-;56549:6:::1;;;;;;;;;;;56548:7;56539:6;;:16;;;;;;;;;;;;;;;;;;56493:68::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;23106:104::-;23162:13;23195:7;23188:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23106:104;:::o;56061:115::-;56124:7;56147:16;:23;56164:5;56147:23;;;;;;;;;;;;;;;;56140:30;;56061:115;;;:::o;55333:722::-;55399:6;;;;;;;;;;;55398:7;55390:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;55433:20;55456:13;:11;:13::i;:::-;55433:36;;55041:4;55501:9;55486:12;:24;;;;:::i;:::-;:46;55478:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55098:2;55566:9;:40;55558:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;55638:19;55660:9;55638:31;;55676:21;55700:16;:28;55717:10;55700:28;;;;;;;;;;;;;;;;55676:52;;55757:1;55741:13;:17;55737:191;;;55785:1;55773:9;:13;55769:109;;;55825:1;55813:9;:13;;;;:::i;:::-;55799:27;;55769:109;;;55867:1;55853:15;;55769:109;55919:1;55888:16;:28;55905:10;55888:28;;;;;;;;;;;;;;;:32;;;;55737:191;54985:12;55957:11;:30;;;;:::i;:::-;55944:9;:43;;55936:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56021:28;56027:10;56039:9;56021:5;:28::i;:::-;55383:672;;;55333:722;:::o;29971:308::-;30082:19;:17;:19::i;:::-;30070:31;;:8;:31;;;30066:61;;;30110:17;;;;;;;;;;;;;;30066:61;30192:8;30140:18;:39;30159:19;:17;:19::i;:::-;30140:39;;;;;;;;;;;;;;;:49;30180:8;30140:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30252:8;30216:55;;30231:19;:17;:19::i;:::-;30216:55;;;30262:8;30216:55;;;;;;:::i;:::-;;;;;;;;29971:308;;:::o;36816:399::-;36983:31;36996:4;37002:2;37006:7;36983:12;:31::i;:::-;37047:1;37029:2;:14;;;:19;37025:183;;37068:56;37099:4;37105:2;37109:7;37118:5;37068:30;:56::i;:::-;37063:145;;37152:40;;;;;;;;;;;;;;37063:145;37025:183;36816:399;;;;:::o;23316:318::-;23389:13;23420:16;23428:7;23420;:16::i;:::-;23415:59;;23445:29;;;;;;;;;;;;;;23415:59;23487:21;23511:10;:8;:10::i;:::-;23487:34;;23564:1;23545:7;23539:21;:26;;:87;;;;;;;;;;;;;;;;;23592:7;23601:18;23611:7;23601:9;:18::i;:::-;23575:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23539:87;23532:94;;;23316:318;;;:::o;30436:164::-;30533:4;30557:18;:25;30576:5;30557:25;;;;;;;;;;;;;;;:35;30583:8;30557:35;;;;;;;;;;;;;;;;;;;;;;;;;30550:42;;30436:164;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;40477:2454::-;40550:20;40573:13;;40550:36;;40613:1;40601:8;:13;40597:44;;;40623:18;;;;;;;;;;;;;;40597:44;40654:61;40684:1;40688:2;40692:12;40706:8;40654:21;:61::i;:::-;41198:1;14162:2;41168:1;:26;;41167:32;41155:8;:45;41129:18;:22;41148:2;41129:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41477:139;41514:2;41568:33;41591:1;41595:2;41599:1;41568:14;:33::i;:::-;41535:30;41556:8;41535:20;:30::i;:::-;:66;41477:18;:139::i;:::-;41443:17;:31;41461:12;41443:31;;;;;;;;;;;:173;;;;41633:16;41664:11;41693:8;41678:12;:23;41664:37;;41948:16;41944:2;41940:25;41928:37;;42320:12;42280:8;42239:1;42177:25;42118:1;42057;42030:335;42445:1;42431:12;42427:20;42385:346;42486:3;42477:7;42474:16;42385:346;;42704:7;42694:8;42691:1;42664:25;42661:1;42658;42653:59;42539:1;42530:7;42526:15;42515:26;;42385:346;;;42389:77;42776:1;42764:8;:13;42760:45;;;42786:19;;;;;;;;;;;;;;42760:45;42838:3;42822:13;:19;;;;40903:1950;;42863:60;42892:1;42896:2;42900:12;42914:8;42863:20;:60::i;:::-;40539:2392;40477:2454;;:::o;30858:282::-;30923:4;30979:7;30960:15;:13;:15::i;:::-;:26;;:66;;;;;31013:13;;31003:7;:23;30960:66;:153;;;;;31112:1;14800:8;31064:17;:26;31082:7;31064:26;;;;;;;;;;;;:44;:49;30960:153;30940:173;;30858:282;;;:::o;52624:105::-;52684:7;52711:10;52704:17;;52624:105;:::o;56182:87::-;56239:7;56262:1;56255:8;;56182:87;:::o;25478:1275::-;25545:7;25565:12;25580:7;25565:22;;25648:4;25629:15;:13;:15::i;:::-;:23;25625:1061;;25682:13;;25675:4;:20;25671:1015;;;25720:14;25737:17;:23;25755:4;25737:23;;;;;;;;;;;;25720:40;;25854:1;14800:8;25826:6;:24;:29;25822:845;;;26491:113;26508:1;26498:6;:11;26491:113;;;26551:17;:25;26569:6;;;;;;;26551:25;;;;;;;;;;;;26542:34;;26491:113;;;26637:6;26630:13;;;;;;25822:845;25697:989;25671:1015;25625:1061;26714:31;;;;;;;;;;;;;;25478:1275;;;;:::o;32021:479::-;32123:27;32152:23;32193:38;32234:15;:24;32250:7;32234:24;;;;;;;;;;;32193:65;;32405:18;32382:41;;32462:19;32456:26;32437:45;;32367:126;32021:479;;;:::o;31249:659::-;31398:11;31563:16;31556:5;31552:28;31543:37;;31723:16;31712:9;31708:32;31695:45;;31873:15;31862:9;31859:30;31851:5;31840:9;31837:20;31834:56;31824:66;;31249:659;;;;;:::o;37877:159::-;;;;;:::o;51933:311::-;52068:7;52088:16;15204:3;52114:19;:41;;52088:68;;15204:3;52182:31;52193:4;52199:2;52203:9;52182:10;:31::i;:::-;52174:40;;:62;;52167:69;;;51933:311;;;;;:::o;27301:450::-;27381:14;27549:16;27542:5;27538:28;27529:37;;27726:5;27712:11;27687:23;27683:41;27680:52;27673:5;27670:63;27660:73;;27301:450;;;;:::o;38701:158::-;;;;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;39299:716::-;39462:4;39508:2;39483:45;;;39529:19;:17;:19::i;:::-;39550:4;39556:7;39565:5;39483:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39479:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39783:1;39766:6;:13;:18;39762:235;;;39812:40;;;;;;;;;;;;;;39762:235;39955:6;39949:13;39940:6;39936:2;39932:15;39925:38;39479:529;39652:54;;;39642:64;;;:6;:64;;;;39635:71;;;39299:716;;;;;;:::o;56275:99::-;56327:13;56356:12;56349:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56275:99;:::o;52831:2002::-;52896:17;53315:3;53308:4;53302:11;53298:21;53291:28;;53406:3;53400:4;53393:17;53512:3;53968:5;54098:1;54093:3;54089:11;54082:18;;54269:2;54263:4;54259:13;54255:2;54251:22;54246:3;54238:36;54310:2;54304:4;54300:13;54292:21;;53860:731;54329:4;53860:731;;;54520:1;54515:3;54511:11;54504:18;;54571:2;54565:4;54561:13;54557:2;54553:22;54548:3;54540:36;54424:2;54418:4;54414:13;54406:21;;53860:731;;;53864:464;54630:3;54625;54621:13;54745:2;54740:3;54736:12;54729:19;;54808:6;54803:3;54796:19;52935:1891;;52831:2002;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;27853:324::-;27923:14;28156:1;28146:8;28143:15;28117:24;28113:46;28103:56;;27853:324;;;:::o;51634:147::-;51771:6;51634:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:118::-;11394:24;11412:5;11394:24;:::i;:::-;11389:3;11382:37;11307:118;;:::o;11431:435::-;11611:3;11633:95;11724:3;11715:6;11633:95;:::i;:::-;11626:102;;11745:95;11836:3;11827:6;11745:95;:::i;:::-;11738:102;;11857:3;11850:10;;11431:435;;;;;:::o;11872:222::-;11965:4;12003:2;11992:9;11988:18;11980:26;;12016:71;12084:1;12073:9;12069:17;12060:6;12016:71;:::i;:::-;11872:222;;;;:::o;12100:640::-;12295:4;12333:3;12322:9;12318:19;12310:27;;12347:71;12415:1;12404:9;12400:17;12391:6;12347:71;:::i;:::-;12428:72;12496:2;12485:9;12481:18;12472:6;12428:72;:::i;:::-;12510;12578:2;12567:9;12563:18;12554:6;12510:72;:::i;:::-;12629:9;12623:4;12619:20;12614:2;12603:9;12599:18;12592:48;12657:76;12728:4;12719:6;12657:76;:::i;:::-;12649:84;;12100:640;;;;;;;:::o;12746:210::-;12833:4;12871:2;12860:9;12856:18;12848:26;;12884:65;12946:1;12935:9;12931:17;12922:6;12884:65;:::i;:::-;12746:210;;;;:::o;12962:313::-;13075:4;13113:2;13102:9;13098:18;13090:26;;13162:9;13156:4;13152:20;13148:1;13137:9;13133:17;13126:47;13190:78;13263:4;13254:6;13190:78;:::i;:::-;13182:86;;12962:313;;;;:::o;13281:419::-;13447:4;13485:2;13474:9;13470:18;13462:26;;13534:9;13528:4;13524:20;13520:1;13509:9;13505:17;13498:47;13562:131;13688:4;13562:131;:::i;:::-;13554:139;;13281:419;;;:::o;13706:::-;13872:4;13910:2;13899:9;13895:18;13887:26;;13959:9;13953:4;13949:20;13945:1;13934:9;13930:17;13923:47;13987:131;14113:4;13987:131;:::i;:::-;13979:139;;13706:419;;;:::o;14131:::-;14297:4;14335:2;14324:9;14320:18;14312:26;;14384:9;14378:4;14374:20;14370:1;14359:9;14355:17;14348:47;14412:131;14538:4;14412:131;:::i;:::-;14404:139;;14131:419;;;:::o;14556:::-;14722:4;14760:2;14749:9;14745:18;14737:26;;14809:9;14803:4;14799:20;14795:1;14784:9;14780:17;14773:47;14837:131;14963:4;14837:131;:::i;:::-;14829:139;;14556:419;;;:::o;14981:::-;15147:4;15185:2;15174:9;15170:18;15162:26;;15234:9;15228:4;15224:20;15220:1;15209:9;15205:17;15198:47;15262:131;15388:4;15262:131;:::i;:::-;15254:139;;14981:419;;;:::o;15406:::-;15572:4;15610:2;15599:9;15595:18;15587:26;;15659:9;15653:4;15649:20;15645:1;15634:9;15630:17;15623:47;15687:131;15813:4;15687:131;:::i;:::-;15679:139;;15406:419;;;:::o;15831:::-;15997:4;16035:2;16024:9;16020:18;16012:26;;16084:9;16078:4;16074:20;16070:1;16059:9;16055:17;16048:47;16112:131;16238:4;16112:131;:::i;:::-;16104:139;;15831:419;;;:::o;16256:::-;16422:4;16460:2;16449:9;16445:18;16437:26;;16509:9;16503:4;16499:20;16495:1;16484:9;16480:17;16473:47;16537:131;16663:4;16537:131;:::i;:::-;16529:139;;16256:419;;;:::o;16681:222::-;16774:4;16812:2;16801:9;16797:18;16789:26;;16825:71;16893:1;16882:9;16878:17;16869:6;16825:71;:::i;:::-;16681:222;;;;:::o;16909:129::-;16943:6;16970:20;;:::i;:::-;16960:30;;16999:33;17027:4;17019:6;16999:33;:::i;:::-;16909:129;;;:::o;17044:75::-;17077:6;17110:2;17104:9;17094:19;;17044:75;:::o;17125:307::-;17186:4;17276:18;17268:6;17265:30;17262:56;;;17298:18;;:::i;:::-;17262:56;17336:29;17358:6;17336:29;:::i;:::-;17328:37;;17420:4;17414;17410:15;17402:23;;17125:307;;;:::o;17438:98::-;17489:6;17523:5;17517:12;17507:22;;17438:98;;;:::o;17542:99::-;17594:6;17628:5;17622:12;17612:22;;17542:99;;;:::o;17647:168::-;17730:11;17764:6;17759:3;17752:19;17804:4;17799:3;17795:14;17780:29;;17647:168;;;;:::o;17821:169::-;17905:11;17939:6;17934:3;17927:19;17979:4;17974:3;17970:14;17955:29;;17821:169;;;;:::o;17996:148::-;18098:11;18135:3;18120:18;;17996:148;;;;:::o;18150:305::-;18190:3;18209:20;18227:1;18209:20;:::i;:::-;18204:25;;18243:20;18261:1;18243:20;:::i;:::-;18238:25;;18397:1;18329:66;18325:74;18322:1;18319:81;18316:107;;;18403:18;;:::i;:::-;18316:107;18447:1;18444;18440:9;18433:16;;18150:305;;;;:::o;18461:348::-;18501:7;18524:20;18542:1;18524:20;:::i;:::-;18519:25;;18558:20;18576:1;18558:20;:::i;:::-;18553:25;;18746:1;18678:66;18674:74;18671:1;18668:81;18663:1;18656:9;18649:17;18645:105;18642:131;;;18753:18;;:::i;:::-;18642:131;18801:1;18798;18794:9;18783:20;;18461:348;;;;:::o;18815:191::-;18855:4;18875:20;18893:1;18875:20;:::i;:::-;18870:25;;18909:20;18927:1;18909:20;:::i;:::-;18904:25;;18948:1;18945;18942:8;18939:34;;;18953:18;;:::i;:::-;18939:34;18998:1;18995;18991:9;18983:17;;18815:191;;;;:::o;19012:96::-;19049:7;19078:24;19096:5;19078:24;:::i;:::-;19067:35;;19012:96;;;:::o;19114:90::-;19148:7;19191:5;19184:13;19177:21;19166:32;;19114:90;;;:::o;19210:149::-;19246:7;19286:66;19279:5;19275:78;19264:89;;19210:149;;;:::o;19365:126::-;19402:7;19442:42;19435:5;19431:54;19420:65;;19365:126;;;:::o;19497:77::-;19534:7;19563:5;19552:16;;19497:77;;;:::o;19580:154::-;19664:6;19659:3;19654;19641:30;19726:1;19717:6;19712:3;19708:16;19701:27;19580:154;;;:::o;19740:307::-;19808:1;19818:113;19832:6;19829:1;19826:13;19818:113;;;19917:1;19912:3;19908:11;19902:18;19898:1;19893:3;19889:11;19882:39;19854:2;19851:1;19847:10;19842:15;;19818:113;;;19949:6;19946:1;19943:13;19940:101;;;20029:1;20020:6;20015:3;20011:16;20004:27;19940:101;19789:258;19740:307;;;:::o;20053:320::-;20097:6;20134:1;20128:4;20124:12;20114:22;;20181:1;20175:4;20171:12;20202:18;20192:81;;20258:4;20250:6;20246:17;20236:27;;20192:81;20320:2;20312:6;20309:14;20289:18;20286:38;20283:84;;;20339:18;;:::i;:::-;20283:84;20104:269;20053:320;;;:::o;20379:281::-;20462:27;20484:4;20462:27;:::i;:::-;20454:6;20450:40;20592:6;20580:10;20577:22;20556:18;20544:10;20541:34;20538:62;20535:88;;;20603:18;;:::i;:::-;20535:88;20643:10;20639:2;20632:22;20422:238;20379:281;;:::o;20666:180::-;20714:77;20711:1;20704:88;20811:4;20808:1;20801:15;20835:4;20832:1;20825:15;20852:180;20900:77;20897:1;20890:88;20997:4;20994:1;20987:15;21021:4;21018:1;21011:15;21038:180;21086:77;21083:1;21076:88;21183:4;21180:1;21173:15;21207:4;21204:1;21197:15;21224:117;21333:1;21330;21323:12;21347:117;21456:1;21453;21446:12;21470:117;21579:1;21576;21569:12;21593:117;21702:1;21699;21692:12;21716:117;21825:1;21822;21815:12;21839:117;21948:1;21945;21938:12;21962:102;22003:6;22054:2;22050:7;22045:2;22038:5;22034:14;22030:28;22020:38;;21962:102;;;:::o;22070:164::-;22210:16;22206:1;22198:6;22194:14;22187:40;22070:164;:::o;22240:170::-;22380:22;22376:1;22368:6;22364:14;22357:46;22240:170;:::o;22416:164::-;22556:16;22552:1;22544:6;22540:14;22533:40;22416:164;:::o;22586:225::-;22726:34;22722:1;22714:6;22710:14;22703:58;22795:8;22790:2;22782:6;22778:15;22771:33;22586:225;:::o;22817:168::-;22957:20;22953:1;22945:6;22941:14;22934:44;22817:168;:::o;22991:182::-;23131:34;23127:1;23119:6;23115:14;23108:58;22991:182;:::o;23179:172::-;23319:24;23315:1;23307:6;23303:14;23296:48;23179:172;:::o;23357:171::-;23497:23;23493:1;23485:6;23481:14;23474:47;23357:171;:::o;23534:122::-;23607:24;23625:5;23607:24;:::i;:::-;23600:5;23597:35;23587:63;;23646:1;23643;23636:12;23587:63;23534:122;:::o;23662:116::-;23732:21;23747:5;23732:21;:::i;:::-;23725:5;23722:32;23712:60;;23768:1;23765;23758:12;23712:60;23662:116;:::o;23784:120::-;23856:23;23873:5;23856:23;:::i;:::-;23849:5;23846:34;23836:62;;23894:1;23891;23884:12;23836:62;23784:120;:::o;23910:122::-;23983:24;24001:5;23983:24;:::i;:::-;23976:5;23973:35;23963:63;;24022:1;24019;24012:12;23963:63;23910:122;:::o

Swarm Source

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