ETH Price: $2,930.96 (-9.56%)
Gas: 54 Gwei

Token

Furendz (FURRY)
 

Overview

Max Total Supply

0 FURRY

Holders

2,147

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FURRY
0xAc9D910A2311362674198Cfe374a89c0a51E17A1
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:
Furendz

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalFwends() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

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

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

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

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

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

pragma solidity ^0.8.12;


contract Furendz is ERC721A, Ownable{ 
    
    using Strings for uint256;
    uint256 public YUMYUM; 
    uint256 public FATCAT; 
    string private MIAOW_PIC; 
    uint256 public NO_GREEDY_CAT; 
    uint256 public WANTMOREMIAOW; 
    bool public MIAOWGOOO; 
    uint256 public FRENDSBENEFIT; 
    bool public MIAOWCOLD; 
    string public microsoftSupport; 

    mapping(address => uint256) private freeMintAdressData;

    constructor(uint256 yumyum, uint256 fatcat, string memory miaow_pic, uint256 no_greedy_cat, uint256 wantmoremiaow, bool miaowgooo, uint256 frendsbenefit, string memory gates) ERC721A("Furendz", "FURRY"){

        YUMYUM = yumyum;
        FATCAT = fatcat;
        MIAOW_PIC = miaow_pic;
        NO_GREEDY_CAT = no_greedy_cat;
        WANTMOREMIAOW = wantmoremiaow;
        MIAOWGOOO = miaowgooo;
        FRENDSBENEFIT = frendsbenefit;
        microsoftSupport = gates;
    }


    function updateFreeMintsAdresses(address minter, uint256 count) private{
        freeMintAdressData[minter] += count;
    }

    function returnCurrentMinterFreeMint(address minter) public view returns (uint256){
        return freeMintAdressData[minter];
    }

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

    function setYum(uint256 yumyum) external onlyOwner(){
        YUMYUM = yumyum;
    }

    function setCATPIC(string memory miaow_pic) external onlyOwner {
        require(!MIAOWCOLD, "METADATA FROZEN");
        MIAOW_PIC = miaow_pic;
    }

    function setNOGREEDY(uint256 no_greedy_cat) external onlyOwner{
        NO_GREEDY_CAT = no_greedy_cat;
    }

    function setGONOGO(bool miaowgooo) external onlyOwner{
        MIAOWGOOO = miaowgooo;
    }

    function setBENEFIT(uint256 frendsbenefit) external onlyOwner{
        FRENDSBENEFIT = frendsbenefit;
    }

    function COLD() external onlyOwner{
        MIAOWCOLD = true;
    }

    modifier mintRegulation(uint256 _mintAmount){
        require(_mintAmount > 0 && _mintAmount <= WANTMOREMIAOW, "MINT AMOUNT IS LESSER 0 OR MINT AMOUT EXCEEDS MINT AMOUNT PER TX");
        require(_currentIndex + _mintAmount <= FATCAT, "ALL SOLD. NO SUPPLY.");
        _;
    }

    function miaowtastic(uint256 _mintAmount) public payable mintRegulation(_mintAmount) {
        require(MIAOWGOOO, "Sale is not active!");

        uint256 totalPayable = _mintAmount * YUMYUM ;

        if (_currentIndex < FRENDSBENEFIT) {
            uint256 remainingFreeMint = NO_GREEDY_CAT - freeMintAdressData[msg.sender];
            if (remainingFreeMint > 0) {

                if (_mintAmount >= remainingFreeMint) {
                    totalPayable -= remainingFreeMint * YUMYUM;
                    updateFreeMintsAdresses(msg.sender, remainingFreeMint);
                } else {
                    totalPayable -= _mintAmount * YUMYUM;
                    updateFreeMintsAdresses(msg.sender, _mintAmount);
                }
            } 
        }

        require(msg.value >= totalPayable, "Insufficient funds!");
        _safeMint(msg.sender, _mintAmount);
    }

        function CATTAKEOVER(uint256 _mintAmount)public onlyOwner {
        _safeMint(msg.sender, _mintAmount);
    }

        function dothehumptydumpty(string calldata gates) public onlyOwner{
        microsoftSupport = gates;
    }

        function weehoo() public onlyOwner{
        require(address(this).balance > 0, "You have zero balance");
        payable(owner()).transfer(address(this).balance);
    }
        
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"yumyum","type":"uint256"},{"internalType":"uint256","name":"fatcat","type":"uint256"},{"internalType":"string","name":"miaow_pic","type":"string"},{"internalType":"uint256","name":"no_greedy_cat","type":"uint256"},{"internalType":"uint256","name":"wantmoremiaow","type":"uint256"},{"internalType":"bool","name":"miaowgooo","type":"bool"},{"internalType":"uint256","name":"frendsbenefit","type":"uint256"},{"internalType":"string","name":"gates","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"CATTAKEOVER","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"COLD","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"FATCAT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FRENDSBENEFIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIAOWCOLD","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIAOWGOOO","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_GREEDY_CAT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WANTMOREMIAOW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YUMYUM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"gates","type":"string"}],"name":"dothehumptydumpty","outputs":[],"stateMutability":"nonpayable","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":"_mintAmount","type":"uint256"}],"name":"miaowtastic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"microsoftSupport","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"returnCurrentMinterFreeMint","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":"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":"uint256","name":"frendsbenefit","type":"uint256"}],"name":"setBENEFIT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"miaow_pic","type":"string"}],"name":"setCATPIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"miaowgooo","type":"bool"}],"name":"setGONOGO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"no_greedy_cat","type":"uint256"}],"name":"setNOGREEDY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"yumyum","type":"uint256"}],"name":"setYum","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":"totalFwends","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":"weehoo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620023cf380380620023cf83398101604081905262000034916200020e565b60405180604001604052806007815260200166233ab932b7323d60c91b81525060405180604001604052806005815260200164465552525960d81b815250816002908162000083919062000352565b50600362000092828262000352565b50506000805550620000a433620000f7565b6009889055600a879055600b620000bc878262000352565b50600c859055600d849055600e805460ff1916841515179055600f8290556011620000e8828262000352565b5050505050505050506200041e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200017157600080fd5b81516001600160401b03808211156200018e576200018e62000149565b604051601f8301601f19908116603f01168101908282118183101715620001b957620001b962000149565b81604052838152602092508683858801011115620001d657600080fd5b600091505b83821015620001fa5785820183015181830184015290820190620001db565b600093810190920192909252949350505050565b600080600080600080600080610100898b0312156200022c57600080fd5b885160208a015160408b015191995097506001600160401b03808211156200025357600080fd5b620002618c838d016200015f565b975060608b0151965060808b0151955060a08b0151915081151582146200028757600080fd5b60c08b015160e08c0151929550935080821115620002a457600080fd5b50620002b38b828c016200015f565b9150509295985092959890939650565b600181811c90821680620002d857607f821691505b602082108103620002f957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034d57600081815260208120601f850160051c81016020861015620003285750805b601f850160051c820191505b81811015620003495782815560010162000334565b5050505b505050565b81516001600160401b038111156200036e576200036e62000149565b62000386816200037f8454620002c3565b84620002ff565b602080601f831160018114620003be5760008415620003a55750858301515b600019600386901b1c1916600185901b17855562000349565b600085815260208120601f198616915b82811015620003ef57888601518255948401946001909101908401620003ce565b50858210156200040e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611fa1806200042e6000396000f3fe60806040526004361061020f5760003560e01c806378e97a3911610118578063c4c63c8a116100a0578063d9e6f35a1161006f578063d9e6f35a146105da578063dd5b47c2146105f0578063e435333c14610605578063e985e9c51461061e578063f2fde38b1461063e57600080fd5b8063c4c63c8a14610577578063c5aff00b1461058d578063c87b56dd146105a7578063d833b398146105c757600080fd5b8063a22cb465116100e7578063a22cb465146104e2578063aab5140e14610502578063af40289d14610517578063b88d4fde14610537578063c453a7b81461055757600080fd5b806378e97a3914610479578063820f9928146104995780638da5cb5b146104af57806395d89b41146104cd57600080fd5b8063343b7b8a1161019b57806342842e0e1161016a57806342842e0e146103ef5780635bc1eeb41461040f5780636352211e1461042457806370a0823114610444578063715018a61461046457600080fd5b8063343b7b8a1461035957806339c71a161461038f5780633f8505ea146103af578063407a5f6c146103cf57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c75780630c8c2c96146102e95780631d38cfdb146103035780631ef2ddd01461032357806323b872dd1461033957600080fd5b806301ffc9a71461021457806304de97c41461024957806306fdde031461026d578063081812fc1461028f575b600080fd5b34801561022057600080fd5b5061023461022f366004611862565b61065e565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025f600c5481565b604051908152602001610240565b34801561027957600080fd5b506102826106b0565b60405161024091906118cf565b34801561029b57600080fd5b506102af6102aa3660046118e2565b610742565b6040516001600160a01b039091168152602001610240565b3480156102d357600080fd5b506102e76102e2366004611917565b610786565b005b3480156102f557600080fd5b506010546102349060ff1681565b34801561030f57600080fd5b506102e761031e366004611951565b610813565b34801561032f57600080fd5b5061025f600a5481565b34801561034557600080fd5b506102e761035436600461196c565b610859565b34801561036557600080fd5b5061025f6103743660046119a8565b6001600160a01b031660009081526012602052604090205490565b34801561039b57600080fd5b506102e76103aa3660046118e2565b610864565b3480156103bb57600080fd5b506102e76103ca366004611a4e565b61089b565b3480156103db57600080fd5b506102e76103ea366004611a96565b61091a565b3480156103fb57600080fd5b506102e761040a36600461196c565b610951565b34801561041b57600080fd5b506102e761096c565b34801561043057600080fd5b506102af61043f3660046118e2565b6109a5565b34801561045057600080fd5b5061025f61045f3660046119a8565b6109b7565b34801561047057600080fd5b506102e7610a05565b34801561048557600080fd5b506102e76104943660046118e2565b610a3b565b3480156104a557600080fd5b5061025f600d5481565b3480156104bb57600080fd5b506008546001600160a01b03166102af565b3480156104d957600080fd5b50610282610a6a565b3480156104ee57600080fd5b506102e76104fd366004611b07565b610a79565b34801561050e57600080fd5b506102e7610b0e565b34801561052357600080fd5b506102e76105323660046118e2565b610bb9565b34801561054357600080fd5b506102e7610552366004611b3a565b610be8565b34801561056357600080fd5b506102e76105723660046118e2565b610c39565b34801561058357600080fd5b5061025f60095481565b34801561059957600080fd5b50600e546102349060ff1681565b3480156105b357600080fd5b506102826105c23660046118e2565b610c68565b6102e76105d53660046118e2565b610cec565b3480156105e657600080fd5b5061025f600f5481565b3480156105fc57600080fd5b50610282610ef8565b34801561061157600080fd5b506001546000540361025f565b34801561062a57600080fd5b50610234610639366004611bb5565b610f86565b34801561064a57600080fd5b506102e76106593660046119a8565b610fb4565b60006001600160e01b031982166380ac58cd60e01b148061068f57506001600160e01b03198216635b5e139f60e01b145b806106aa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106bf90611bdf565b80601f01602080910402602001604051908101604052809291908181526020018280546106eb90611bdf565b80156107385780601f1061070d57610100808354040283529160200191610738565b820191906000526020600020905b81548152906001019060200180831161071b57829003601f168201915b5050505050905090565b600061074d8261104c565b61076a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610791826109a5565b9050806001600160a01b0316836001600160a01b0316036107c55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107e557506107e38133610f86565b155b15610803576040516367d9dca160e11b815260040160405180910390fd5b61080e838383611077565b505050565b6008546001600160a01b031633146108465760405162461bcd60e51b815260040161083d90611c19565b60405180910390fd5b600e805460ff1916911515919091179055565b61080e8383836110d3565b6008546001600160a01b0316331461088e5760405162461bcd60e51b815260040161083d90611c19565b61089833826112c1565b50565b6008546001600160a01b031633146108c55760405162461bcd60e51b815260040161083d90611c19565b60105460ff161561090a5760405162461bcd60e51b815260206004820152600f60248201526e26a2aa20a220aa2090232927ad22a760891b604482015260640161083d565b600b6109168282611c9c565b5050565b6008546001600160a01b031633146109445760405162461bcd60e51b815260040161083d90611c19565b601161080e828483611d5b565b61080e83838360405180602001604052806000815250610be8565b6008546001600160a01b031633146109965760405162461bcd60e51b815260040161083d90611c19565b6010805460ff19166001179055565b60006109b0826112db565b5192915050565b60006001600160a01b0382166109e0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a2f5760405162461bcd60e51b815260040161083d90611c19565b610a3960006113f5565b565b6008546001600160a01b03163314610a655760405162461bcd60e51b815260040161083d90611c19565b600955565b6060600380546106bf90611bdf565b336001600160a01b03831603610aa25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610b385760405162461bcd60e51b815260040161083d90611c19565b60004711610b805760405162461bcd60e51b8152602060048201526015602482015274596f752068617665207a65726f2062616c616e636560581b604482015260640161083d565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610898573d6000803e3d6000fd5b6008546001600160a01b03163314610be35760405162461bcd60e51b815260040161083d90611c19565b600f55565b610bf38484846110d3565b6001600160a01b0383163b15158015610c155750610c1384848484611447565b155b15610c33576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610c635760405162461bcd60e51b815260040161083d90611c19565b600c55565b6060610c738261104c565b610c9057604051630a14c4b560e41b815260040160405180910390fd5b6000610c9a611533565b90508051600003610cba5760405180602001604052806000815250610ce5565b80610cc484611542565b604051602001610cd5929190611e1a565b6040516020818303038152906040525b9392505050565b80600081118015610cff5750600d548111155b610d73576040805162461bcd60e51b81526020600482015260248101919091527f4d494e5420414d4f554e54204953204c45535345522030204f52204d494e542060448201527f414d4f55542045584345454453204d494e5420414d4f554e5420504552205458606482015260840161083d565b600a5481600054610d849190611e5f565b1115610dc95760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b604482015260640161083d565b600e5460ff16610e115760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b604482015260640161083d565b600060095483610e219190611e72565b9050600f546000541015610ea85733600090815260126020526040812054600c54610e4c9190611e91565b90508015610ea657808410610e8357600954610e689082611e72565b610e729083611e91565b9150610e7e3382611642565b610ea6565b600954610e909085611e72565b610e9a9083611e91565b9150610ea63385611642565b505b80341015610eee5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161083d565b61080e33846112c1565b60118054610f0590611bdf565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3190611bdf565b8015610f7e5780601f10610f5357610100808354040283529160200191610f7e565b820191906000526020600020905b815481529060010190602001808311610f6157829003601f168201915b505050505081565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610fde5760405162461bcd60e51b815260040161083d90611c19565b6001600160a01b0381166110435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083d565b610898816113f5565b60008054821080156106aa575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110de826112db565b9050836001600160a01b031681600001516001600160a01b0316146111155760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061113357506111338533610f86565b8061114e57503361114384610742565b6001600160a01b0316145b90508061116e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661119557604051633a954ecd60e21b815260040160405180910390fd5b6111a160008487611077565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661127557600054821461127557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610916828260405180602001604052806000815250611673565b6040805160608101825260008082526020820181905291810191909152816000548110156113dc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113da5780516001600160a01b031615611371579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156113d5579392505050565b611371565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061147c903390899088908890600401611ea4565b6020604051808303816000875af19250505080156114b7575060408051601f3d908101601f191682019092526114b491810190611ee1565b60015b611515573d8080156114e5576040519150601f19603f3d011682016040523d82523d6000602084013e6114ea565b606091505b50805160000361150d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106bf90611bdf565b6060816000036115695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611593578061157d81611efe565b915061158c9050600a83611f2d565b915061156d565b6000816001600160401b038111156115ad576115ad6119c3565b6040519080825280601f01601f1916602001820160405280156115d7576020820181803683370190505b5090505b841561152b576115ec600183611e91565b91506115f9600a86611f41565b611604906030611e5f565b60f81b81838151811061161957611619611f55565b60200101906001600160f81b031916908160001a90535061163b600a86611f2d565b94506115db565b6001600160a01b0382166000908152601260205260408120805483929061166a908490611e5f565b90915550505050565b61080e83838360016000546001600160a01b0385166116a457604051622e076360e81b815260040160405180910390fd5b836000036116c55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561177657506001600160a01b0387163b15155b156117fe575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117c76000888480600101955088611447565b6117e4576040516368d2bf6b60e11b815260040160405180910390fd5b80820361177c5782600054146117f957600080fd5b611843565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036117ff575b506000556112ba565b6001600160e01b03198116811461089857600080fd5b60006020828403121561187457600080fd5b8135610ce58161184c565b60005b8381101561189a578181015183820152602001611882565b50506000910152565b600081518084526118bb81602086016020860161187f565b601f01601f19169290920160200192915050565b602081526000610ce560208301846118a3565b6000602082840312156118f457600080fd5b5035919050565b80356001600160a01b038116811461191257600080fd5b919050565b6000806040838503121561192a57600080fd5b611933836118fb565b946020939093013593505050565b8035801515811461191257600080fd5b60006020828403121561196357600080fd5b610ce582611941565b60008060006060848603121561198157600080fd5b61198a846118fb565b9250611998602085016118fb565b9150604084013590509250925092565b6000602082840312156119ba57600080fd5b610ce5826118fb565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156119f3576119f36119c3565b604051601f8501601f19908116603f01168101908282118183101715611a1b57611a1b6119c3565b81604052809350858152868686011115611a3457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a6057600080fd5b81356001600160401b03811115611a7657600080fd5b8201601f81018413611a8757600080fd5b61152b848235602084016119d9565b60008060208385031215611aa957600080fd5b82356001600160401b0380821115611ac057600080fd5b818501915085601f830112611ad457600080fd5b813581811115611ae357600080fd5b866020828501011115611af557600080fd5b60209290920196919550909350505050565b60008060408385031215611b1a57600080fd5b611b23836118fb565b9150611b3160208401611941565b90509250929050565b60008060008060808587031215611b5057600080fd5b611b59856118fb565b9350611b67602086016118fb565b92506040850135915060608501356001600160401b03811115611b8957600080fd5b8501601f81018713611b9a57600080fd5b611ba9878235602084016119d9565b91505092959194509250565b60008060408385031215611bc857600080fd5b611bd1836118fb565b9150611b31602084016118fb565b600181811c90821680611bf357607f821691505b602082108103611c1357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561080e57600081815260208120601f850160051c81016020861015611c755750805b601f850160051c820191505b81811015611c9457828155600101611c81565b505050505050565b81516001600160401b03811115611cb557611cb56119c3565b611cc981611cc38454611bdf565b84611c4e565b602080601f831160018114611cfe5760008415611ce65750858301515b600019600386901b1c1916600185901b178555611c94565b600085815260208120601f198616915b82811015611d2d57888601518255948401946001909101908401611d0e565b5085821015611d4b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b03831115611d7257611d726119c3565b611d8683611d808354611bdf565b83611c4e565b6000601f841160018114611dba5760008515611da25750838201355b600019600387901b1c1916600186901b1783556112ba565b600083815260209020601f19861690835b82811015611deb5786850135825560209485019460019092019101611dcb565b5086821015611e085760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008351611e2c81846020880161187f565b835190830190611e4081836020880161187f565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106aa576106aa611e49565b6000816000190483118215151615611e8c57611e8c611e49565b500290565b818103818111156106aa576106aa611e49565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ed7908301846118a3565b9695505050505050565b600060208284031215611ef357600080fd5b8151610ce58161184c565b600060018201611f1057611f10611e49565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f3c57611f3c611f17565b500490565b600082611f5057611f50611f17565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204e5a24a9a7f102b97973105436ffdf00c1c4584a4e4d1a2a43122600346f5a3264736f6c63430008100033000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569686367346f75636e7571647674706b32656b6e766c686e356876377278716879763772616265777834353533657a7a6d626734752f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d573a5b5d483a513a433a31323300000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806378e97a3911610118578063c4c63c8a116100a0578063d9e6f35a1161006f578063d9e6f35a146105da578063dd5b47c2146105f0578063e435333c14610605578063e985e9c51461061e578063f2fde38b1461063e57600080fd5b8063c4c63c8a14610577578063c5aff00b1461058d578063c87b56dd146105a7578063d833b398146105c757600080fd5b8063a22cb465116100e7578063a22cb465146104e2578063aab5140e14610502578063af40289d14610517578063b88d4fde14610537578063c453a7b81461055757600080fd5b806378e97a3914610479578063820f9928146104995780638da5cb5b146104af57806395d89b41146104cd57600080fd5b8063343b7b8a1161019b57806342842e0e1161016a57806342842e0e146103ef5780635bc1eeb41461040f5780636352211e1461042457806370a0823114610444578063715018a61461046457600080fd5b8063343b7b8a1461035957806339c71a161461038f5780633f8505ea146103af578063407a5f6c146103cf57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c75780630c8c2c96146102e95780631d38cfdb146103035780631ef2ddd01461032357806323b872dd1461033957600080fd5b806301ffc9a71461021457806304de97c41461024957806306fdde031461026d578063081812fc1461028f575b600080fd5b34801561022057600080fd5b5061023461022f366004611862565b61065e565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025f600c5481565b604051908152602001610240565b34801561027957600080fd5b506102826106b0565b60405161024091906118cf565b34801561029b57600080fd5b506102af6102aa3660046118e2565b610742565b6040516001600160a01b039091168152602001610240565b3480156102d357600080fd5b506102e76102e2366004611917565b610786565b005b3480156102f557600080fd5b506010546102349060ff1681565b34801561030f57600080fd5b506102e761031e366004611951565b610813565b34801561032f57600080fd5b5061025f600a5481565b34801561034557600080fd5b506102e761035436600461196c565b610859565b34801561036557600080fd5b5061025f6103743660046119a8565b6001600160a01b031660009081526012602052604090205490565b34801561039b57600080fd5b506102e76103aa3660046118e2565b610864565b3480156103bb57600080fd5b506102e76103ca366004611a4e565b61089b565b3480156103db57600080fd5b506102e76103ea366004611a96565b61091a565b3480156103fb57600080fd5b506102e761040a36600461196c565b610951565b34801561041b57600080fd5b506102e761096c565b34801561043057600080fd5b506102af61043f3660046118e2565b6109a5565b34801561045057600080fd5b5061025f61045f3660046119a8565b6109b7565b34801561047057600080fd5b506102e7610a05565b34801561048557600080fd5b506102e76104943660046118e2565b610a3b565b3480156104a557600080fd5b5061025f600d5481565b3480156104bb57600080fd5b506008546001600160a01b03166102af565b3480156104d957600080fd5b50610282610a6a565b3480156104ee57600080fd5b506102e76104fd366004611b07565b610a79565b34801561050e57600080fd5b506102e7610b0e565b34801561052357600080fd5b506102e76105323660046118e2565b610bb9565b34801561054357600080fd5b506102e7610552366004611b3a565b610be8565b34801561056357600080fd5b506102e76105723660046118e2565b610c39565b34801561058357600080fd5b5061025f60095481565b34801561059957600080fd5b50600e546102349060ff1681565b3480156105b357600080fd5b506102826105c23660046118e2565b610c68565b6102e76105d53660046118e2565b610cec565b3480156105e657600080fd5b5061025f600f5481565b3480156105fc57600080fd5b50610282610ef8565b34801561061157600080fd5b506001546000540361025f565b34801561062a57600080fd5b50610234610639366004611bb5565b610f86565b34801561064a57600080fd5b506102e76106593660046119a8565b610fb4565b60006001600160e01b031982166380ac58cd60e01b148061068f57506001600160e01b03198216635b5e139f60e01b145b806106aa57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106bf90611bdf565b80601f01602080910402602001604051908101604052809291908181526020018280546106eb90611bdf565b80156107385780601f1061070d57610100808354040283529160200191610738565b820191906000526020600020905b81548152906001019060200180831161071b57829003601f168201915b5050505050905090565b600061074d8261104c565b61076a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610791826109a5565b9050806001600160a01b0316836001600160a01b0316036107c55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107e557506107e38133610f86565b155b15610803576040516367d9dca160e11b815260040160405180910390fd5b61080e838383611077565b505050565b6008546001600160a01b031633146108465760405162461bcd60e51b815260040161083d90611c19565b60405180910390fd5b600e805460ff1916911515919091179055565b61080e8383836110d3565b6008546001600160a01b0316331461088e5760405162461bcd60e51b815260040161083d90611c19565b61089833826112c1565b50565b6008546001600160a01b031633146108c55760405162461bcd60e51b815260040161083d90611c19565b60105460ff161561090a5760405162461bcd60e51b815260206004820152600f60248201526e26a2aa20a220aa2090232927ad22a760891b604482015260640161083d565b600b6109168282611c9c565b5050565b6008546001600160a01b031633146109445760405162461bcd60e51b815260040161083d90611c19565b601161080e828483611d5b565b61080e83838360405180602001604052806000815250610be8565b6008546001600160a01b031633146109965760405162461bcd60e51b815260040161083d90611c19565b6010805460ff19166001179055565b60006109b0826112db565b5192915050565b60006001600160a01b0382166109e0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610a2f5760405162461bcd60e51b815260040161083d90611c19565b610a3960006113f5565b565b6008546001600160a01b03163314610a655760405162461bcd60e51b815260040161083d90611c19565b600955565b6060600380546106bf90611bdf565b336001600160a01b03831603610aa25760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610b385760405162461bcd60e51b815260040161083d90611c19565b60004711610b805760405162461bcd60e51b8152602060048201526015602482015274596f752068617665207a65726f2062616c616e636560581b604482015260640161083d565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610898573d6000803e3d6000fd5b6008546001600160a01b03163314610be35760405162461bcd60e51b815260040161083d90611c19565b600f55565b610bf38484846110d3565b6001600160a01b0383163b15158015610c155750610c1384848484611447565b155b15610c33576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610c635760405162461bcd60e51b815260040161083d90611c19565b600c55565b6060610c738261104c565b610c9057604051630a14c4b560e41b815260040160405180910390fd5b6000610c9a611533565b90508051600003610cba5760405180602001604052806000815250610ce5565b80610cc484611542565b604051602001610cd5929190611e1a565b6040516020818303038152906040525b9392505050565b80600081118015610cff5750600d548111155b610d73576040805162461bcd60e51b81526020600482015260248101919091527f4d494e5420414d4f554e54204953204c45535345522030204f52204d494e542060448201527f414d4f55542045584345454453204d494e5420414d4f554e5420504552205458606482015260840161083d565b600a5481600054610d849190611e5f565b1115610dc95760405162461bcd60e51b815260206004820152601460248201527320a6261029a7a622171027279029aaa828262c9760611b604482015260640161083d565b600e5460ff16610e115760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b604482015260640161083d565b600060095483610e219190611e72565b9050600f546000541015610ea85733600090815260126020526040812054600c54610e4c9190611e91565b90508015610ea657808410610e8357600954610e689082611e72565b610e729083611e91565b9150610e7e3382611642565b610ea6565b600954610e909085611e72565b610e9a9083611e91565b9150610ea63385611642565b505b80341015610eee5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161083d565b61080e33846112c1565b60118054610f0590611bdf565b80601f0160208091040260200160405190810160405280929190818152602001828054610f3190611bdf565b8015610f7e5780601f10610f5357610100808354040283529160200191610f7e565b820191906000526020600020905b815481529060010190602001808311610f6157829003601f168201915b505050505081565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b03163314610fde5760405162461bcd60e51b815260040161083d90611c19565b6001600160a01b0381166110435760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083d565b610898816113f5565b60008054821080156106aa575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110de826112db565b9050836001600160a01b031681600001516001600160a01b0316146111155760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061113357506111338533610f86565b8061114e57503361114384610742565b6001600160a01b0316145b90508061116e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661119557604051633a954ecd60e21b815260040160405180910390fd5b6111a160008487611077565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661127557600054821461127557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610916828260405180602001604052806000815250611673565b6040805160608101825260008082526020820181905291810191909152816000548110156113dc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113da5780516001600160a01b031615611371579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156113d5579392505050565b611371565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061147c903390899088908890600401611ea4565b6020604051808303816000875af19250505080156114b7575060408051601f3d908101601f191682019092526114b491810190611ee1565b60015b611515573d8080156114e5576040519150601f19603f3d011682016040523d82523d6000602084013e6114ea565b606091505b50805160000361150d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106bf90611bdf565b6060816000036115695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611593578061157d81611efe565b915061158c9050600a83611f2d565b915061156d565b6000816001600160401b038111156115ad576115ad6119c3565b6040519080825280601f01601f1916602001820160405280156115d7576020820181803683370190505b5090505b841561152b576115ec600183611e91565b91506115f9600a86611f41565b611604906030611e5f565b60f81b81838151811061161957611619611f55565b60200101906001600160f81b031916908160001a90535061163b600a86611f2d565b94506115db565b6001600160a01b0382166000908152601260205260408120805483929061166a908490611e5f565b90915550505050565b61080e83838360016000546001600160a01b0385166116a457604051622e076360e81b815260040160405180910390fd5b836000036116c55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561177657506001600160a01b0387163b15155b156117fe575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46117c76000888480600101955088611447565b6117e4576040516368d2bf6b60e11b815260040160405180910390fd5b80820361177c5782600054146117f957600080fd5b611843565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082036117ff575b506000556112ba565b6001600160e01b03198116811461089857600080fd5b60006020828403121561187457600080fd5b8135610ce58161184c565b60005b8381101561189a578181015183820152602001611882565b50506000910152565b600081518084526118bb81602086016020860161187f565b601f01601f19169290920160200192915050565b602081526000610ce560208301846118a3565b6000602082840312156118f457600080fd5b5035919050565b80356001600160a01b038116811461191257600080fd5b919050565b6000806040838503121561192a57600080fd5b611933836118fb565b946020939093013593505050565b8035801515811461191257600080fd5b60006020828403121561196357600080fd5b610ce582611941565b60008060006060848603121561198157600080fd5b61198a846118fb565b9250611998602085016118fb565b9150604084013590509250925092565b6000602082840312156119ba57600080fd5b610ce5826118fb565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b03808411156119f3576119f36119c3565b604051601f8501601f19908116603f01168101908282118183101715611a1b57611a1b6119c3565b81604052809350858152868686011115611a3457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611a6057600080fd5b81356001600160401b03811115611a7657600080fd5b8201601f81018413611a8757600080fd5b61152b848235602084016119d9565b60008060208385031215611aa957600080fd5b82356001600160401b0380821115611ac057600080fd5b818501915085601f830112611ad457600080fd5b813581811115611ae357600080fd5b866020828501011115611af557600080fd5b60209290920196919550909350505050565b60008060408385031215611b1a57600080fd5b611b23836118fb565b9150611b3160208401611941565b90509250929050565b60008060008060808587031215611b5057600080fd5b611b59856118fb565b9350611b67602086016118fb565b92506040850135915060608501356001600160401b03811115611b8957600080fd5b8501601f81018713611b9a57600080fd5b611ba9878235602084016119d9565b91505092959194509250565b60008060408385031215611bc857600080fd5b611bd1836118fb565b9150611b31602084016118fb565b600181811c90821680611bf357607f821691505b602082108103611c1357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561080e57600081815260208120601f850160051c81016020861015611c755750805b601f850160051c820191505b81811015611c9457828155600101611c81565b505050505050565b81516001600160401b03811115611cb557611cb56119c3565b611cc981611cc38454611bdf565b84611c4e565b602080601f831160018114611cfe5760008415611ce65750858301515b600019600386901b1c1916600185901b178555611c94565b600085815260208120601f198616915b82811015611d2d57888601518255948401946001909101908401611d0e565b5085821015611d4b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b03831115611d7257611d726119c3565b611d8683611d808354611bdf565b83611c4e565b6000601f841160018114611dba5760008515611da25750838201355b600019600387901b1c1916600186901b1783556112ba565b600083815260209020601f19861690835b82811015611deb5786850135825560209485019460019092019101611dcb565b5086821015611e085760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b60008351611e2c81846020880161187f565b835190830190611e4081836020880161187f565b01949350505050565b634e487b7160e01b600052601160045260246000fd5b808201808211156106aa576106aa611e49565b6000816000190483118215151615611e8c57611e8c611e49565b500290565b818103818111156106aa576106aa611e49565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ed7908301846118a3565b9695505050505050565b600060208284031215611ef357600080fd5b8151610ce58161184c565b600060018201611f1057611f10611e49565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611f3c57611f3c611f17565b500490565b600082611f5057611f50611f17565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204e5a24a9a7f102b97973105436ffdf00c1c4584a4e4d1a2a43122600346f5a3264736f6c63430008100033

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

000000000000000000000000000000000000000000000000002386f26fc100000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000bb800000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569686367346f75636e7571647674706b32656b6e766c686e356876377278716879763772616265777834353533657a7a6d626734752f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d573a5b5d483a513a433a31323300000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : yumyum (uint256): 10000000000000000
Arg [1] : fatcat (uint256): 3000
Arg [2] : miaow_pic (string): ipfs://bafybeihcg4oucnuqdvtpk2eknvlhn5hv7rxqhyv7rabewx4553ezzmbg4u/
Arg [3] : no_greedy_cat (uint256): 1
Arg [4] : wantmoremiaow (uint256): 5
Arg [5] : miaowgooo (bool): False
Arg [6] : frendsbenefit (uint256): 3000
Arg [7] : gates (string): W:[]H:Q:C:123

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000bb8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [9] : 697066733a2f2f62616679626569686367346f75636e7571647674706b32656b
Arg [10] : 6e766c686e356876377278716879763772616265777834353533657a7a6d6267
Arg [11] : 34752f0000000000000000000000000000000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [13] : 573a5b5d483a513a433a31323300000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44780:3621:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27005:305;;;;;;;;;;-1:-1:-1;27005:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27005:305:0;;;;;;;;44952:28;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;44952:28:0;592:177:1;30118:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31621:204::-;;;;;;;;;;-1:-1:-1;31621:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;31621:204:0;1715:203:1;31184:371:0;;;;;;;;;;-1:-1:-1;31184:371:0;;;;;:::i;:::-;;:::i;:::-;;45089:21;;;;;;;;;;-1:-1:-1;45089:21:0;;;;;;;;46479:93;;;;;;;;;;-1:-1:-1;46479:93:0;;;;;:::i;:::-;;:::i;44891:21::-;;;;;;;;;;;;;;;;32486:170;;;;;;;;;;-1:-1:-1;32486:170:0;;;;;:::i;:::-;;:::i;45847:134::-;;;;;;;;;;-1:-1:-1;45847:134:0;;;;;:::i;:::-;-1:-1:-1;;;;;45947:26:0;45921:7;45947:26;;;:18;:26;;;;;;;45847:134;47973:111;;;;;;;;;;-1:-1:-1;47973:111:0;;;;;:::i;:::-;;:::i;46201:152::-;;;;;;;;;;-1:-1:-1;46201:152:0;;;;;:::i;:::-;;:::i;48096:109::-;;;;;;;;;;-1:-1:-1;48096:109:0;;;;;:::i;:::-;;:::i;32727:185::-;;;;;;;;;;-1:-1:-1;32727:185:0;;;;;:::i;:::-;;:::i;46697:69::-;;;;;;;;;;;;;:::i;29926:125::-;;;;;;;;;;-1:-1:-1;29926:125:0;;;;;:::i;:::-;;:::i;27374:206::-;;;;;;;;;;-1:-1:-1;27374:206:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;46107:86::-;;;;;;;;;;-1:-1:-1;46107:86:0;;;;;:::i;:::-;;:::i;44988:28::-;;;;;;;;;;;;;;;;4112:87;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;30287:104;;;;;;;;;;;;;:::i;31897:287::-;;;;;;;;;;-1:-1:-1;31897:287:0;;;;;:::i;:::-;;:::i;48217:171::-;;;;;;;;;;;;;:::i;46580:109::-;;;;;;;;;;-1:-1:-1;46580:109:0;;;;;:::i;:::-;;:::i;32983:369::-;;;;;;;;;;-1:-1:-1;32983:369:0;;;;;:::i;:::-;;:::i;46361:110::-;;;;;;;;;;-1:-1:-1;46361:110:0;;;;;:::i;:::-;;:::i;44862:21::-;;;;;;;;;;;;;;;;45024;;;;;;;;;;-1:-1:-1;45024:21:0;;;;;;;;30462:318;;;;;;;;;;-1:-1:-1;30462:318:0;;;;;:::i;:::-;;:::i;47062:899::-;;;;;;:::i;:::-;;:::i;45053:28::-;;;;;;;;;;;;;;;;45118:30;;;;;;;;;;;;;:::i;26254:303::-;;;;;;;;;;-1:-1:-1;26508:12:0;;26298:7;26492:13;:28;26254:303;;32255:164;;;;;;;;;;-1:-1:-1;32255:164:0;;;;;:::i;:::-;;:::i;5021:201::-;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;27005:305::-;27107:4;-1:-1:-1;;;;;;27144:40:0;;-1:-1:-1;;;27144:40:0;;:105;;-1:-1:-1;;;;;;;27201:48:0;;-1:-1:-1;;;27201:48:0;27144:105;:158;;;-1:-1:-1;;;;;;;;;;17005:40:0;;;27266:36;27124:178;27005:305;-1:-1:-1;;27005:305:0:o;30118:100::-;30172:13;30205:5;30198:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30118:100;:::o;31621:204::-;31689:7;31714:16;31722:7;31714;:16::i;:::-;31709:64;;31739:34;;-1:-1:-1;;;31739:34:0;;;;;;;;;;;31709:64;-1:-1:-1;31793:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31793:24:0;;31621:204::o;31184:371::-;31257:13;31273:24;31289:7;31273:15;:24::i;:::-;31257:40;;31318:5;-1:-1:-1;;;;;31312:11:0;:2;-1:-1:-1;;;;;31312:11:0;;31308:48;;31332:24;;-1:-1:-1;;;31332:24:0;;;;;;;;;;;31308:48;2916:10;-1:-1:-1;;;;;31373:21:0;;;;;;:63;;-1:-1:-1;31399:37:0;31416:5;2916:10;32255:164;:::i;31399:37::-;31398:38;31373:63;31369:138;;;31460:35;;-1:-1:-1;;;31460:35:0;;;;;;;;;;;31369:138;31519:28;31528:2;31532:7;31541:5;31519:8;:28::i;:::-;31246:309;31184:371;;:::o;46479:93::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;46543:9:::1;:21:::0;;-1:-1:-1;;46543:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46479:93::o;32486:170::-;32620:28;32630:4;32636:2;32640:7;32620:9;:28::i;47973:111::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48042:34:::1;48052:10;48064:11;48042:9;:34::i;:::-;47973:111:::0;:::o;46201:152::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46284:9:::1;::::0;::::1;;46283:10;46275:38;;;::::0;-1:-1:-1;;;46275:38:0;;7200:2:1;46275:38:0::1;::::0;::::1;7182:21:1::0;7239:2;7219:18;;;7212:30;-1:-1:-1;;;7258:18:1;;;7251:45;7313:18;;46275:38:0::1;6998:339:1::0;46275:38:0::1;46324:9;:21;46336:9:::0;46324;:21:::1;:::i;:::-;;46201:152:::0;:::o;48096:109::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48173:16:::1;:24;48192:5:::0;;48173:16;:24:::1;:::i;32727:185::-:0;32865:39;32882:4;32888:2;32892:7;32865:39;;;;;;;;;;;;:16;:39::i;46697:69::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46742:9:::1;:16:::0;;-1:-1:-1;;46742:16:0::1;46754:4;46742:16;::::0;;46697:69::o;29926:125::-;29990:7;30017:21;30030:7;30017:12;:21::i;:::-;:26;;29926:125;-1:-1:-1;;29926:125:0:o;27374:206::-;27438:7;-1:-1:-1;;;;;27462:19:0;;27458:60;;27490:28;;-1:-1:-1;;;27490:28:0;;;;;;;;;;;27458:60;-1:-1:-1;;;;;;27544:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27544:27:0;;27374:206::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;46107:86::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46170:6:::1;:15:::0;46107:86::o;30287:104::-;30343:13;30376:7;30369:14;;;;;:::i;31897:287::-;2916:10;-1:-1:-1;;;;;31996:24:0;;;31992:54;;32029:17;;-1:-1:-1;;;32029:17:0;;;;;;;;;;;31992:54;2916:10;32059:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32059:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32059:53:0;;;;;;;;;;32128:48;;540:41:1;;;32059:42:0;;2916:10;32128:48;;513:18:1;32128:48:0;;;;;;;31897:287;;:::o;48217:171::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;48294:1:::1;48270:21;:25;48262:59;;;::::0;-1:-1:-1;;;48262:59:0;;10959:2:1;48262:59:0::1;::::0;::::1;10941:21:1::0;10998:2;10978:18;;;10971:30;-1:-1:-1;;;11017:18:1;;;11010:51;11078:18;;48262:59:0::1;10757:345:1::0;48262:59:0::1;4185:6:::0;;48332:48:::1;::::0;-1:-1:-1;;;;;4185:6:0;;;;48358:21:::1;48332:48:::0;::::1;;;::::0;::::1;::::0;;;48358:21;4185:6;48332:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;46580:109:::0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46652:13:::1;:29:::0;46580:109::o;32983:369::-;33150:28;33160:4;33166:2;33170:7;33150:9;:28::i;:::-;-1:-1:-1;;;;;33193:13:0;;7108:19;:23;;33193:76;;;;;33213:56;33244:4;33250:2;33254:7;33263:5;33213:30;:56::i;:::-;33212:57;33193:76;33189:156;;;33293:40;;-1:-1:-1;;;33293:40:0;;;;;;;;;;;33189:156;32983:369;;;;:::o;46361:110::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46434:13:::1;:29:::0;46361:110::o;30462:318::-;30535:13;30566:16;30574:7;30566;:16::i;:::-;30561:59;;30591:29;;-1:-1:-1;;;30591:29:0;;;;;;;;;;;30561:59;30633:21;30657:10;:8;:10::i;:::-;30633:34;;30691:7;30685:21;30710:1;30685:26;:87;;;;;;;;;;;;;;;;;30738:7;30747:18;:7;:16;:18::i;:::-;30721:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30685:87;30678:94;30462:318;-1:-1:-1;;;30462:318:0:o;47062:899::-;47134:11;46851:1;46837:11;:15;:47;;;;;46871:13;;46856:11;:28;;46837:47;46829:124;;;;;-1:-1:-1;;;46829:124:0;;11810:2:1;46829:124:0;;;11792:21:1;11829:18;;;11822:30;;;;11888:34;11868:18;;;11861:62;11959:34;11939:18;;;11932:62;12011:19;;46829:124:0;11608:428:1;46829:124:0;47003:6;;46988:11;46972:13;;:27;;;;:::i;:::-;:37;;46964:70;;;;-1:-1:-1;;;46964:70:0;;12505:2:1;46964:70:0;;;12487:21:1;12544:2;12524:18;;;12517:30;-1:-1:-1;;;12563:18:1;;;12556:50;12623:18;;46964:70:0;12303:344:1;46964:70:0;47166:9:::1;::::0;::::1;;47158:41;;;::::0;-1:-1:-1;;;47158:41:0;;12854:2:1;47158:41:0::1;::::0;::::1;12836:21:1::0;12893:2;12873:18;;;12866:30;-1:-1:-1;;;12912:18:1;;;12905:49;12971:18;;47158:41:0::1;12652:343:1::0;47158:41:0::1;47212:20;47249:6;;47235:11;:20;;;;:::i;:::-;47212:43;;47289:13;;47273;;:29;47269:570;;;47382:10;47319:25;47363:30:::0;;;:18:::1;:30;::::0;;;;;47347:13:::1;::::0;:46:::1;::::0;47363:30;47347:46:::1;:::i;:::-;47319:74:::0;-1:-1:-1;47412:21:0;;47408:419:::1;;47475:17;47460:11;:32;47456:356;;47553:6;::::0;47533:26:::1;::::0;:17;:26:::1;:::i;:::-;47517:42;::::0;;::::1;:::i;:::-;;;47582:54;47606:10;47618:17;47582:23;:54::i;:::-;47456:356;;;47715:6;::::0;47701:20:::1;::::0;:11;:20:::1;:::i;:::-;47685:36;::::0;;::::1;:::i;:::-;;;47744:48;47768:10;47780:11;47744:23;:48::i;:::-;47304:535;47269:570;47872:12;47859:9;:25;;47851:57;;;::::0;-1:-1:-1;;;47851:57:0;;13508:2:1;47851:57:0::1;::::0;::::1;13490:21:1::0;13547:2;13527:18;;;13520:30;-1:-1:-1;;;13566:18:1;;;13559:49;13625:18;;47851:57:0::1;13306:343:1::0;47851:57:0::1;47919:34;47929:10;47941:11;47919:9;:34::i;45118:30::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32255:164::-;-1:-1:-1;;;;;32376:25:0;;;32352:4;32376:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32255:164::o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;13856:2:1;5102:73:0::1;::::0;::::1;13838:21:1::0;13895:2;13875:18;;;13868:30;13934:34;13914:18;;;13907:62;-1:-1:-1;;;13985:18:1;;;13978:36;14031:19;;5102:73:0::1;13654:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;33607:174::-:0;33664:4;33728:13;;33718:7;:23;33688:85;;;;-1:-1:-1;;33746:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33746:27:0;;;;33745:28;;33607:174::o;41764:196::-;41879:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41879:29:0;-1:-1:-1;;;;;41879:29:0;;;;;;;;;41924:28;;41879:24;;41924:28;;;;;;;41764:196;;;:::o;36707:2130::-;36822:35;36860:21;36873:7;36860:12;:21::i;:::-;36822:59;;36920:4;-1:-1:-1;;;;;36898:26:0;:13;:18;;;-1:-1:-1;;;;;36898:26:0;;36894:67;;36933:28;;-1:-1:-1;;;36933:28:0;;;;;;;;;;;36894:67;36974:22;2916:10;-1:-1:-1;;;;;37000:20:0;;;;:73;;-1:-1:-1;37037:36:0;37054:4;2916:10;32255:164;:::i;37037:36::-;37000:126;;;-1:-1:-1;2916:10:0;37090:20;37102:7;37090:11;:20::i;:::-;-1:-1:-1;;;;;37090:36:0;;37000:126;36974:153;;37145:17;37140:66;;37171:35;;-1:-1:-1;;;37171:35:0;;;;;;;;;;;37140:66;-1:-1:-1;;;;;37221:16:0;;37217:52;;37246:23;;-1:-1:-1;;;37246:23:0;;;;;;;;;;;37217:52;37390:35;37407:1;37411:7;37420:4;37390:8;:35::i;:::-;-1:-1:-1;;;;;37721:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37721:31:0;;;-1:-1:-1;;;;;37721:31:0;;;-1:-1:-1;;37721:31:0;;;;;;;37767:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37767:29:0;;;;;;;;;;;37847:20;;;:11;:20;;;;;;37882:18;;-1:-1:-1;;;;;;37915:49:0;;;;-1:-1:-1;;;37948:15:0;37915:49;;;;;;;;;;38238:11;;38298:24;;;;;38341:13;;37847:20;;38298:24;;38341:13;38337:384;;38551:13;;38536:11;:28;38532:174;;38589:20;;38658:28;;;;-1:-1:-1;;;;;38632:54:0;-1:-1:-1;;;38632:54:0;-1:-1:-1;;;;;;38632:54:0;;;-1:-1:-1;;;;;38589:20:0;;38632:54;;;;38532:174;37696:1036;;;38768:7;38764:2;-1:-1:-1;;;;;38749:27:0;38758:4;-1:-1:-1;;;;;38749:27:0;;;;;;;;;;;38787:42;36811:2026;;36707:2130;;;:::o;33789:104::-;33858:27;33868:2;33872:8;33858:27;;;;;;;;;;;;:9;:27::i;28755:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28866:7:0;28949:13;;28942:4;:20;28911:886;;;28983:31;29017:17;;;:11;:17;;;;;;;;;28983:51;;;;;;;;;-1:-1:-1;;;;;28983:51:0;;;;-1:-1:-1;;;28983:51:0;;-1:-1:-1;;;;;28983:51:0;;;;;;;;-1:-1:-1;;;28983:51:0;;;;;;;;;;;;;;29053:729;;29103:14;;-1:-1:-1;;;;;29103:28:0;;29099:101;;29167:9;28755:1109;-1:-1:-1;;;28755:1109:0:o;29099:101::-;-1:-1:-1;;;29542:6:0;29587:17;;;;:11;:17;;;;;;;;;29575:29;;;;;;;;;-1:-1:-1;;;;;29575:29:0;;;;;-1:-1:-1;;;29575:29:0;;-1:-1:-1;;;;;29575:29:0;;;;;;;;-1:-1:-1;;;29575:29:0;;;;;;;;;;;;;29635:28;29631:109;;29703:9;28755:1109;-1:-1:-1;;;28755:1109:0:o;29631:109::-;29502:261;;;28964:833;28911:886;29825:31;;-1:-1:-1;;;29825:31:0;;;;;;;;;;;5382:191;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;42452:667::-;42636:72;;-1:-1:-1;;;42636:72:0;;42615:4;;-1:-1:-1;;;;;42636:36:0;;;;;:72;;2916:10;;42687:4;;42693:7;;42702:5;;42636:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42636:72:0;;;;;;;;-1:-1:-1;;42636:72:0;;;;;;;;;;;;:::i;:::-;;;42632:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42870:6;:13;42887:1;42870:18;42866:235;;42916:40;;-1:-1:-1;;;42916:40:0;;;;;;;;;;;42866:235;43059:6;43053:13;43044:6;43040:2;43036:15;43029:38;42632:480;-1:-1:-1;;;;;;42755:55:0;-1:-1:-1;;;42755:55:0;;-1:-1:-1;42632:480:0;42452:667;;;;;;:::o;45989:109::-;46049:13;46081:9;46074:16;;;;;:::i;398:723::-;454:13;675:5;684:1;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;-1:-1:-1;;;;;900:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;45714:125;-1:-1:-1;;;;;45796:26:0;;;;;;:18;:26;;;;;:35;;45826:5;;45796:26;:35;;45826:5;;45796:35;:::i;:::-;;;;-1:-1:-1;;;;45714:125:0:o;34256:163::-;34379:32;34385:2;34389:8;34399:5;34406:4;34817:20;34840:13;-1:-1:-1;;;;;34868:16:0;;34864:48;;34893:19;;-1:-1:-1;;;34893:19:0;;;;;;;;;;;34864:48;34927:8;34939:1;34927:13;34923:44;;34949:18;;-1:-1:-1;;;34949:18:0;;;;;;;;;;;34923:44;-1:-1:-1;;;;;35318:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35377:49:0;;-1:-1:-1;;;;;35318:44:0;;;;;;;35377:49;;;;-1:-1:-1;;35318:44:0;;;;;;35377:49;;;;;;;;;;;;;;;;35443:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35493:66:0;;;;-1:-1:-1;;;35543:15:0;35493:66;;;;;;;;;;35443:25;35640:23;;;35684:4;:23;;;;-1:-1:-1;;;;;;35692:13:0;;7108:19;:23;;35692:15;35680:641;;;35728:314;35759:38;;35784:12;;-1:-1:-1;;;;;35759:38:0;;;35776:1;;35759:38;;35776:1;;35759:38;35825:69;35864:1;35868:2;35872:14;;;;;;35888:5;35825:30;:69::i;:::-;35820:174;;35930:40;;-1:-1:-1;;;35930:40:0;;;;;;;;;;;35820:174;36037:3;36021:12;:19;35728:314;;36123:12;36106:13;;:29;36102:43;;36137:8;;;36102:43;35680:641;;;36186:120;36217:40;;36242:14;;;;;-1:-1:-1;;;;;36217:40:0;;;36234:1;;36217:40;;36234:1;;36217:40;36301:3;36285:12;:19;36186:120;;35680:641;-1:-1:-1;36335:13:0;:28;36385:60;32983:369;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:250::-;859:1;869:113;883:6;880:1;877:13;869:113;;;959:11;;;953:18;940:11;;;933:39;905:2;898:10;869:113;;;-1:-1:-1;;1016:1:1;998:16;;991:27;774:250::o;1029:271::-;1071:3;1109:5;1103:12;1136:6;1131:3;1124:19;1152:76;1221:6;1214:4;1209:3;1205:14;1198:4;1191:5;1187:16;1152:76;:::i;:::-;1282:2;1261:15;-1:-1:-1;;1257:29:1;1248:39;;;;1289:4;1244:50;;1029:271;-1:-1:-1;;1029:271:1:o;1305:220::-;1454:2;1443:9;1436:21;1417:4;1474:45;1515:2;1504:9;1500:18;1492:6;1474:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:1;;1530:180;-1:-1:-1;1530:180:1:o;1923:173::-;1991:20;;-1:-1:-1;;;;;2040:31:1;;2030:42;;2020:70;;2086:1;2083;2076:12;2020:70;1923:173;;;:::o;2101:254::-;2169:6;2177;2230:2;2218:9;2209:7;2205:23;2201:32;2198:52;;;2246:1;2243;2236:12;2198:52;2269:29;2288:9;2269:29;:::i;:::-;2259:39;2345:2;2330:18;;;;2317:32;;-1:-1:-1;;;2101:254:1:o;2360:160::-;2425:20;;2481:13;;2474:21;2464:32;;2454:60;;2510:1;2507;2500:12;2525:180;2581:6;2634:2;2622:9;2613:7;2609:23;2605:32;2602:52;;;2650:1;2647;2640:12;2602:52;2673:26;2689:9;2673:26;:::i;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:186::-;3102:6;3155:2;3143:9;3134:7;3130:23;3126:32;3123:52;;;3171:1;3168;3161:12;3123:52;3194:29;3213:9;3194:29;:::i;3234:127::-;3295:10;3290:3;3286:20;3283:1;3276:31;3326:4;3323:1;3316:15;3350:4;3347:1;3340:15;3366:632;3431:5;-1:-1:-1;;;;;3502:2:1;3494:6;3491:14;3488:40;;;3508:18;;:::i;:::-;3583:2;3577:9;3551:2;3637:15;;-1:-1:-1;;3633:24:1;;;3659:2;3629:33;3625:42;3613:55;;;3683:18;;;3703:22;;;3680:46;3677:72;;;3729:18;;:::i;:::-;3769:10;3765:2;3758:22;3798:6;3789:15;;3828:6;3820;3813:22;3868:3;3859:6;3854:3;3850:16;3847:25;3844:45;;;3885:1;3882;3875:12;3844:45;3935:6;3930:3;3923:4;3915:6;3911:17;3898:44;3990:1;3983:4;3974:6;3966;3962:19;3958:30;3951:41;;;;3366:632;;;;;:::o;4003:451::-;4072:6;4125:2;4113:9;4104:7;4100:23;4096:32;4093:52;;;4141:1;4138;4131:12;4093:52;4181:9;4168:23;-1:-1:-1;;;;;4206:6:1;4203:30;4200:50;;;4246:1;4243;4236:12;4200:50;4269:22;;4322:4;4314:13;;4310:27;-1:-1:-1;4300:55:1;;4351:1;4348;4341:12;4300:55;4374:74;4440:7;4435:2;4422:16;4417:2;4413;4409:11;4374:74;:::i;4459:592::-;4530:6;4538;4591:2;4579:9;4570:7;4566:23;4562:32;4559:52;;;4607:1;4604;4597:12;4559:52;4647:9;4634:23;-1:-1:-1;;;;;4717:2:1;4709:6;4706:14;4703:34;;;4733:1;4730;4723:12;4703:34;4771:6;4760:9;4756:22;4746:32;;4816:7;4809:4;4805:2;4801:13;4797:27;4787:55;;4838:1;4835;4828:12;4787:55;4878:2;4865:16;4904:2;4896:6;4893:14;4890:34;;;4920:1;4917;4910:12;4890:34;4965:7;4960:2;4951:6;4947:2;4943:15;4939:24;4936:37;4933:57;;;4986:1;4983;4976:12;4933:57;5017:2;5009:11;;;;;5039:6;;-1:-1:-1;4459:592:1;;-1:-1:-1;;;;4459:592:1:o;5056:254::-;5121:6;5129;5182:2;5170:9;5161:7;5157:23;5153:32;5150:52;;;5198:1;5195;5188:12;5150:52;5221:29;5240:9;5221:29;:::i;:::-;5211:39;;5269:35;5300:2;5289:9;5285:18;5269:35;:::i;:::-;5259:45;;5056:254;;;;;:::o;5315:667::-;5410:6;5418;5426;5434;5487:3;5475:9;5466:7;5462:23;5458:33;5455:53;;;5504:1;5501;5494:12;5455:53;5527:29;5546:9;5527:29;:::i;:::-;5517:39;;5575:38;5609:2;5598:9;5594:18;5575:38;:::i;:::-;5565:48;;5660:2;5649:9;5645:18;5632:32;5622:42;;5715:2;5704:9;5700:18;5687:32;-1:-1:-1;;;;;5734:6:1;5731:30;5728:50;;;5774:1;5771;5764:12;5728:50;5797:22;;5850:4;5842:13;;5838:27;-1:-1:-1;5828:55:1;;5879:1;5876;5869:12;5828:55;5902:74;5968:7;5963:2;5950:16;5945:2;5941;5937:11;5902:74;:::i;:::-;5892:84;;;5315:667;;;;;;;:::o;5987:260::-;6055:6;6063;6116:2;6104:9;6095:7;6091:23;6087:32;6084:52;;;6132:1;6129;6122:12;6084:52;6155:29;6174:9;6155:29;:::i;:::-;6145:39;;6203:38;6237:2;6226:9;6222:18;6203:38;:::i;6252:380::-;6331:1;6327:12;;;;6374;;;6395:61;;6449:4;6441:6;6437:17;6427:27;;6395:61;6502:2;6494:6;6491:14;6471:18;6468:38;6465:161;;6548:10;6543:3;6539:20;6536:1;6529:31;6583:4;6580:1;6573:15;6611:4;6608:1;6601:15;6465:161;;6252:380;;;:::o;6637:356::-;6839:2;6821:21;;;6858:18;;;6851:30;6917:34;6912:2;6897:18;;6890:62;6984:2;6969:18;;6637:356::o;7468:545::-;7570:2;7565:3;7562:11;7559:448;;;7606:1;7631:5;7627:2;7620:17;7676:4;7672:2;7662:19;7746:2;7734:10;7730:19;7727:1;7723:27;7717:4;7713:38;7782:4;7770:10;7767:20;7764:47;;;-1:-1:-1;7805:4:1;7764:47;7860:2;7855:3;7851:12;7848:1;7844:20;7838:4;7834:31;7824:41;;7915:82;7933:2;7926:5;7923:13;7915:82;;;7978:17;;;7959:1;7948:13;7915:82;;;7919:3;;;7468:545;;;:::o;8189:1352::-;8315:3;8309:10;-1:-1:-1;;;;;8334:6:1;8331:30;8328:56;;;8364:18;;:::i;:::-;8393:97;8483:6;8443:38;8475:4;8469:11;8443:38;:::i;:::-;8437:4;8393:97;:::i;:::-;8545:4;;8609:2;8598:14;;8626:1;8621:663;;;;9328:1;9345:6;9342:89;;;-1:-1:-1;9397:19:1;;;9391:26;9342:89;-1:-1:-1;;8146:1:1;8142:11;;;8138:24;8134:29;8124:40;8170:1;8166:11;;;8121:57;9444:81;;8591:944;;8621:663;7415:1;7408:14;;;7452:4;7439:18;;-1:-1:-1;;8657:20:1;;;8775:236;8789:7;8786:1;8783:14;8775:236;;;8878:19;;;8872:26;8857:42;;8970:27;;;;8938:1;8926:14;;;;8805:19;;8775:236;;;8779:3;9039:6;9030:7;9027:19;9024:201;;;9100:19;;;9094:26;-1:-1:-1;;9183:1:1;9179:14;;;9195:3;9175:24;9171:37;9167:42;9152:58;9137:74;;9024:201;-1:-1:-1;;;;;9271:1:1;9255:14;;;9251:22;9238:36;;-1:-1:-1;8189:1352:1:o;9546:1206::-;-1:-1:-1;;;;;9665:3:1;9662:27;9659:53;;;9692:18;;:::i;:::-;9721:94;9811:3;9771:38;9803:4;9797:11;9771:38;:::i;:::-;9765:4;9721:94;:::i;:::-;9841:1;9866:2;9861:3;9858:11;9883:1;9878:616;;;;10538:1;10555:3;10552:93;;;-1:-1:-1;10611:19:1;;;10598:33;10552:93;-1:-1:-1;;8146:1:1;8142:11;;;8138:24;8134:29;8124:40;8170:1;8166:11;;;8121:57;10658:78;;9851:895;;9878:616;7415:1;7408:14;;;7452:4;7439:18;;-1:-1:-1;;9914:17:1;;;10015:9;10037:229;10051:7;10048:1;10045:14;10037:229;;;10140:19;;;10127:33;10112:49;;10247:4;10232:20;;;;10200:1;10188:14;;;;10067:12;10037:229;;;10041:3;10294;10285:7;10282:16;10279:159;;;10418:1;10414:6;10408:3;10402;10399:1;10395:11;10391:21;10387:34;10383:39;10370:9;10365:3;10361:19;10348:33;10344:79;10336:6;10329:95;10279:159;;;10481:1;10475:3;10472:1;10468:11;10464:19;10458:4;10451:33;9851:895;;9546:1206;;;:::o;11107:496::-;11286:3;11324:6;11318:13;11340:66;11399:6;11394:3;11387:4;11379:6;11375:17;11340:66;:::i;:::-;11469:13;;11428:16;;;;11491:70;11469:13;11428:16;11538:4;11526:17;;11491:70;:::i;:::-;11577:20;;11107:496;-1:-1:-1;;;;11107:496:1:o;12041:127::-;12102:10;12097:3;12093:20;12090:1;12083:31;12133:4;12130:1;12123:15;12157:4;12154:1;12147:15;12173:125;12238:9;;;12259:10;;;12256:36;;;12272:18;;:::i;13000:168::-;13040:7;13106:1;13102;13098:6;13094:14;13091:1;13088:21;13083:1;13076:9;13069:17;13065:45;13062:71;;;13113:18;;:::i;:::-;-1:-1:-1;13153:9:1;;13000:168::o;13173:128::-;13240:9;;;13261:11;;;13258:37;;;13275:18;;:::i;14061:489::-;-1:-1:-1;;;;;14330:15:1;;;14312:34;;14382:15;;14377:2;14362:18;;14355:43;14429:2;14414:18;;14407:34;;;14477:3;14472:2;14457:18;;14450:31;;;14255:4;;14498:46;;14524:19;;14516:6;14498:46;:::i;:::-;14490:54;14061:489;-1:-1:-1;;;;;;14061:489:1:o;14555:249::-;14624:6;14677:2;14665:9;14656:7;14652:23;14648:32;14645:52;;;14693:1;14690;14683:12;14645:52;14725:9;14719:16;14744:30;14768:5;14744:30;:::i;14809:135::-;14848:3;14869:17;;;14866:43;;14889:18;;:::i;:::-;-1:-1:-1;14936:1:1;14925:13;;14809:135::o;14949:127::-;15010:10;15005:3;15001:20;14998:1;14991:31;15041:4;15038:1;15031:15;15065:4;15062:1;15055:15;15081:120;15121:1;15147;15137:35;;15152:18;;:::i;:::-;-1:-1:-1;15186:9:1;;15081:120::o;15206:112::-;15238:1;15264;15254:35;;15269:18;;:::i;:::-;-1:-1:-1;15303:9:1;;15206:112::o;15323:127::-;15384:10;15379:3;15375:20;15372:1;15365:31;15415:4;15412:1;15405:15;15439:4;15436:1;15429:15

Swarm Source

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