ETH Price: $3,497.08 (+2.23%)
Gas: 3 Gwei

Token

Slimies (Slimies)
 

Overview

Max Total Supply

3,333 Slimies

Holders

574

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
4aaaa.eth
Balance
5 Slimies
0x89D3Afde089399534aFDB7aD2D05138315Ef45FF
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:
Slimies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-18
*/

// 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: https://github.com/chiru-labs/ERC721A/blob/main/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 totalSupply() 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 {}
}

// File: contracts/slimies.sol


pragma solidity ^0.8.7;



contract Slimies is ERC721A, Ownable {
    using Strings for uint256;
    address breedingContract;

    string public baseApiURI;
    
  

    //General Settings
    uint16 public maxMintAmountPerTransaction = 10;
    uint16 public maxMintAmountPerWallet = 10;

   
   

    //Inventory
    uint256 public maxSupply = 3333;

    //Prices
    uint256 public cost = 0.01 ether;
    uint256 public freeLimit = 1111;

    //Utility
    bool public paused = false;
    

    constructor(string memory _baseUrl) ERC721A("Slimies", "Slimies") {
        baseApiURI = _baseUrl;
    }

    function setFreeLimit(uint256 _limit) public onlyOwner{
        freeLimit = _limit;
    }


    //This function will be used to extend the project with more capabilities 
    function setBreedingContractAddress(address _bAddress) public onlyOwner {
        breedingContract = _bAddress;
    }


    //this function can be called only from the extending contract
    function mintExternal(address _address, uint256 _mintAmount) external {
        require(
            msg.sender == breedingContract,
            "Sorry you dont have permission to mint"
        );
        _safeMint(_address, _mintAmount);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    // public
    function mint(uint256 _mintAmount) public payable {
        if (msg.sender != owner()) {
            uint256 ownerTokenCount = balanceOf(msg.sender);

            require(!paused);
            require(_mintAmount > 0, "Mint amount should be greater than 0");
            require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cant mint this amount at once"
            );
            require(
                totalSupply() + _mintAmount <= maxSupply,
                "Exceeds Max Supply"
            );
            require(
                (ownerTokenCount + _mintAmount) <= maxMintAmountPerWallet,
                "Sorry you cant mint more"
            );

            if(totalSupply() > freeLimit){
                //not free
                require(msg.value >= cost * _mintAmount, "Insuffient funds");
            }else{
                uint256 a = freeLimit - totalSupply();
                
                if(_mintAmount > a){
                   uint256 c = _mintAmount - a; 
                   //pay only for A 
                    require(msg.value >= cost * c, "Insuffient funds");
                }

            }

             
        }

        _mintLoop(msg.sender, _mintAmount);
    }

    function gift(address _to, uint256 _mintAmount) public onlyOwner {
        _mintLoop(_to, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, 1);
        }
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
                : "";
    }

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

     //Burning functions
    function batchBurn(uint256[] memory _nftIds) public onlyOwner {
            for(uint256 i = 0; i < _nftIds.length; i++){
                _burn(_nftIds[i]);
            }
    }

    function burn(uint256 _nftId) public onlyOwner{
        _burn(_nftId);
    }
   
   
    function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner {
        maxMintAmountPerTransaction = _amount;
    }

    function setMaxMintAmountPerWallet(uint16 _amount) public onlyOwner {
        maxMintAmountPerWallet = _amount;
    }

   

    function setMaxSupply(uint256 _supply) public onlyOwner {
        maxSupply = _supply;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseApiURI = _newBaseURI;
    }

    function togglePause() public onlyOwner {
        paused = !paused;
    }



    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

  

    function withdraw() public payable onlyOwner {
         uint256 balance = address(this).balance;

        uint256 share1 = (balance * 10) / 100;
        
       
        
         (bool dev, ) = payable(
            0x16c7Fbd3D3f4d212624ba005D25B4e7Bcd1A65c7
        ).call{value: share1}("");
        require(dev);

        (bool os, ) = payable(0x59787884c7c6878e68C8A2C8a8C2BD274154E0e6).call{value: address(this).balance}("");
        require(os);

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseApiURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_nftIds","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setBreedingContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","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":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600b805463ffffffff1916620a000a179055610d05600c55662386f26fc10000600d55610457600e55600f805460ff191690553480156200004457600080fd5b50604051620027ff380380620027ff8339810160408190526200006791620001e6565b604080518082018252600780825266536c696d69657360c81b602080840182815285518087019096529285528401528151919291620000a99160029162000140565b508051620000bf90600390602084019062000140565b50506000805550620000d133620000ee565b8051620000e690600a90602084019062000140565b505062000315565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014e90620002c2565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b60006020808385031215620001fa57600080fd5b82516001600160401b03808211156200021257600080fd5b818501915085601f8301126200022757600080fd5b8151818111156200023c576200023c620002ff565b604051601f8201601f19908116603f01168101908382118183101715620002675762000267620002ff565b8160405282815288868487010111156200028057600080fd5b600093505b82841015620002a4578484018601518185018701529285019262000285565b82841115620002b65760008684830101525b98975050505050505050565b600181811c90821680620002d757607f821691505b60208210811415620002f957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6124da80620003256000396000f3fe60806040526004361061023b5760003560e01c8063729ad39e1161012e578063cbce4c97116100ab578063e97800cb1161006f578063e97800cb14610670578063e985e9c514610690578063f2fde38b146106d9578063f4da1846146106f9578063f8604f111461071957600080fd5b8063cbce4c97146105da578063cef11729146105fa578063d5abeb011461061a578063dc33e68114610630578063dc8e92ea1461065057600080fd5b8063b88d4fde116100f2578063b88d4fde14610536578063bbb8974414610556578063bc951b9114610584578063c4ae3168146105a5578063c87b56dd146105ba57600080fd5b8063729ad39e146104b05780638da5cb5b146104d057806395d89b41146104ee578063a0712d6814610503578063a22cb4651461051657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e1461041b57806368570bd61461043b5780636f8b44b01461045b57806370a082311461047b578063715018a61461049b57600080fd5b806342842e0e1461038157806342966c68146103a157806344a0d68a146103c157806355f804b3146103e15780635c975abb1461040157600080fd5b806318160ddd1161020357806318160ddd1461031557806323b872dd1461032e578063269bbebd1461034e5780633ccfd60b1461036457806341827f131461036c57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b36600461212c565b610739565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61078b565b60405161026c9190612283565b3480156102a357600080fd5b506102b76102b23660046121d2565b61081d565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611fd4565b610861565b005b3480156102fd57600080fd5b50610307600d5481565b60405190815260200161026c565b34801561032157600080fd5b5060015460005403610307565b34801561033a57600080fd5b506102ef610349366004611ee1565b6108ef565b34801561035a57600080fd5b50610307600e5481565b6102ef6108fa565b34801561037857600080fd5b5061028a610a22565b34801561038d57600080fd5b506102ef61039c366004611ee1565b610ab0565b3480156103ad57600080fd5b506102ef6103bc3660046121d2565b610acb565b3480156103cd57600080fd5b506102ef6103dc3660046121d2565b610b01565b3480156103ed57600080fd5b506102ef6103fc366004612166565b610b30565b34801561040d57600080fd5b50600f546102609060ff1681565b34801561042757600080fd5b506102b76104363660046121d2565b610b71565b34801561044757600080fd5b506102ef610456366004611e93565b610b83565b34801561046757600080fd5b506102ef6104763660046121d2565b610bcf565b34801561048757600080fd5b50610307610496366004611e93565b610bfe565b3480156104a757600080fd5b506102ef610c4c565b3480156104bc57600080fd5b506102ef6104cb366004611ffe565b610c82565b3480156104dc57600080fd5b506008546001600160a01b03166102b7565b3480156104fa57600080fd5b5061028a610cf4565b6102ef6105113660046121d2565b610d03565b34801561052257600080fd5b506102ef610531366004611f98565b610fb1565b34801561054257600080fd5b506102ef610551366004611f1d565b611047565b34801561056257600080fd5b50600b546105719061ffff1681565b60405161ffff909116815260200161026c565b34801561059057600080fd5b50600b546105719062010000900461ffff1681565b3480156105b157600080fd5b506102ef611092565b3480156105c657600080fd5b5061028a6105d53660046121d2565b6110d0565b3480156105e657600080fd5b506102ef6105f5366004611fd4565b61119b565b34801561060657600080fd5b506102ef6106153660046121ae565b6111cf565b34801561062657600080fd5b50610307600c5481565b34801561063c57600080fd5b5061030761064b366004611e93565b611219565b34801561065c57600080fd5b506102ef61066b3660046120a1565b611247565b34801561067c57600080fd5b506102ef61068b3660046121ae565b6112b1565b34801561069c57600080fd5b506102606106ab366004611eae565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106e557600080fd5b506102ef6106f4366004611e93565b6112f3565b34801561070557600080fd5b506102ef610714366004611fd4565b61138b565b34801561072557600080fd5b506102ef6107343660046121d2565b6113fe565b60006001600160e01b031982166380ac58cd60e01b148061076a57506001600160e01b03198216635b5e139f60e01b145b8061078557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461079a906123ac565b80601f01602080910402602001604051908101604052809291908181526020018280546107c6906123ac565b80156108135780601f106107e857610100808354040283529160200191610813565b820191906000526020600020905b8154815290600101906020018083116107f657829003601f168201915b5050505050905090565b60006108288261142d565b610845576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061086c82610b71565b9050806001600160a01b0316836001600160a01b031614156108a15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108c157506108bf81336106ab565b155b156108df576040516367d9dca160e11b815260040160405180910390fd5b6108ea838383611458565b505050565b6108ea8383836114b4565b6008546001600160a01b0316331461092d5760405162461bcd60e51b815260040161092490612296565b60405180910390fd5b476000606461093d83600a61234a565b6109479190612336565b6040519091506000907316c7fbd3d3f4d212624ba005d25b4e7bcd1a65c79083908381818185875af1925050503d80600081146109a0576040519150601f19603f3d011682016040523d82523d6000602084013e6109a5565b606091505b50509050806109b357600080fd5b6040516000907359787884c7c6878e68c8a2c8a8c2bd274154e0e69047908381818185875af1925050503d8060008114610a09576040519150601f19603f3d011682016040523d82523d6000602084013e610a0e565b606091505b5050905080610a1c57600080fd5b50505050565b600a8054610a2f906123ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5b906123ac565b8015610aa85780601f10610a7d57610100808354040283529160200191610aa8565b820191906000526020600020905b815481529060010190602001808311610a8b57829003601f168201915b505050505081565b6108ea83838360405180602001604052806000815250611047565b6008546001600160a01b03163314610af55760405162461bcd60e51b815260040161092490612296565b610afe81611690565b50565b6008546001600160a01b03163314610b2b5760405162461bcd60e51b815260040161092490612296565b600d55565b6008546001600160a01b03163314610b5a5760405162461bcd60e51b815260040161092490612296565b8051610b6d90600a906020840190611d87565b5050565b6000610b7c8261169b565b5192915050565b6008546001600160a01b03163314610bad5760405162461bcd60e51b815260040161092490612296565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610bf95760405162461bcd60e51b815260040161092490612296565b600c55565b60006001600160a01b038216610c27576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c765760405162461bcd60e51b815260040161092490612296565b610c8060006117b5565b565b6008546001600160a01b03163314610cac5760405162461bcd60e51b815260040161092490612296565b60005b8151811015610b6d576000828281518110610ccc57610ccc612442565b60200260200101519050610ce18160016113f4565b5080610cec816123e7565b915050610caf565b60606003805461079a906123ac565b6008546001600160a01b03163314610fa7576000610d2033610bfe565b600f5490915060ff1615610d3357600080fd5b60008211610d8f5760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610924565b600b5461ffff16821115610df55760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610924565b600c5482610e066001546000540390565b610e10919061231e565b1115610e535760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610924565b600b5462010000900461ffff16610e6a838361231e565b1115610eb85760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610924565b600e54600154600054031115610f1d5781600d54610ed6919061234a565b341015610f185760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610924565b610fa5565b6000610f2c6001546000540390565b600e54610f399190612369565b905080831115610fa3576000610f4f8285612369565b905080600d54610f5f919061234a565b341015610fa15760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610924565b505b505b505b610afe33826113f4565b6001600160a01b038216331415610fdb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110528484846114b4565b6001600160a01b0383163b15158015611074575061107284848484611807565b155b15610a1c576040516368d2bf6b60e11b815260040160405180910390fd5b6008546001600160a01b031633146110bc5760405162461bcd60e51b815260040161092490612296565b600f805460ff19811660ff90911615179055565b60606110db8261142d565b61113f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610924565b60006111496118ff565b905060008151116111695760405180602001604052806000815250611194565b806111738461190e565b604051602001611184929190612217565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111c55760405162461bcd60e51b815260040161092490612296565b610b6d82826113f4565b6008546001600160a01b031633146111f95760405162461bcd60e51b815260040161092490612296565b600b805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610785565b6008546001600160a01b031633146112715760405162461bcd60e51b815260040161092490612296565b60005b8151811015610b6d5761129f82828151811061129257611292612442565b6020026020010151611690565b806112a9816123e7565b915050611274565b6008546001600160a01b031633146112db5760405162461bcd60e51b815260040161092490612296565b600b805461ffff191661ffff92909216919091179055565b6008546001600160a01b0316331461131d5760405162461bcd60e51b815260040161092490612296565b6001600160a01b0381166113825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610924565b610afe816117b5565b6009546001600160a01b031633146113f45760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610924565b610b6d8282611a0b565b6008546001600160a01b031633146114285760405162461bcd60e51b815260040161092490612296565b600e55565b6000805482108015610785575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114bf8261169b565b9050836001600160a01b031681600001516001600160a01b0316146114f65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611514575061151485336106ab565b8061152f5750336115248461081d565b6001600160a01b0316145b90508061154f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661157657604051633a954ecd60e21b815260040160405180910390fd5b61158260008487611458565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661165657600054821461165657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061248583398151915260405160405180910390a45b5050505050565b610afe816000611a25565b60408051606081018252600080825260208201819052918101919091528160005481101561179c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061179a5780516001600160a01b031615611731579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611795579392505050565b611731565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061183c903390899088908890600401612246565b602060405180830381600087803b15801561185657600080fd5b505af1925050508015611886575060408051601f3d908101601f1916820190925261188391810190612149565b60015b6118e1573d8080156118b4576040519150601f19603f3d011682016040523d82523d6000602084013e6118b9565b606091505b5080516118d9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461079a906123ac565b6060816119325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561195c5780611946816123e7565b91506119559050600a83612336565b9150611936565b6000816001600160401b0381111561197657611976612458565b6040519080825280601f01601f1916602001820160405280156119a0576020820181803683370190505b5090505b84156118f7576119b5600183612369565b91506119c2600a86612402565b6119cd90603061231e565b60f81b8183815181106119e2576119e2612442565b60200101906001600160f81b031916908160001a905350611a04600a86612336565b94506119a4565b610b6d828260405180602001604052806000815250611bd8565b6000611a308361169b565b80519091508215611a96576000336001600160a01b0383161480611a595750611a5982336106ab565b80611a74575033611a698661081d565b6001600160a01b0316145b905080611a9457604051632ce44b5f60e11b815260040160405180910390fd5b505b611aa260008583611458565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611ba0576000548214611ba057805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612485833981519152908390a4505060018054810190555050565b6108ea83838360016000546001600160a01b038516611c0957604051622e076360e81b815260040160405180910390fd5b83611c275760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611cd357506001600160a01b0387163b15155b15611d4a575b60405182906001600160a01b03891690600090600080516020612485833981519152908290a4611d126000888480600101955088611807565b611d2f576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611cd9578260005414611d4557600080fd5b611d7e565b5b6040516001830192906001600160a01b03891690600090600080516020612485833981519152908290a480821415611d4b575b50600055611689565b828054611d93906123ac565b90600052602060002090601f016020900481019282611db55760008555611dfb565b82601f10611dce57805160ff1916838001178555611dfb565b82800160010185558215611dfb579182015b82811115611dfb578251825591602001919060010190611de0565b50611e07929150611e0b565b5090565b5b80821115611e075760008155600101611e0c565b60006001600160401b03831115611e3957611e39612458565b611e4c601f8401601f19166020016122cb565b9050828152838383011115611e6057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611e8e57600080fd5b919050565b600060208284031215611ea557600080fd5b61119482611e77565b60008060408385031215611ec157600080fd5b611eca83611e77565b9150611ed860208401611e77565b90509250929050565b600080600060608486031215611ef657600080fd5b611eff84611e77565b9250611f0d60208501611e77565b9150604084013590509250925092565b60008060008060808587031215611f3357600080fd5b611f3c85611e77565b9350611f4a60208601611e77565b92506040850135915060608501356001600160401b03811115611f6c57600080fd5b8501601f81018713611f7d57600080fd5b611f8c87823560208401611e20565b91505092959194509250565b60008060408385031215611fab57600080fd5b611fb483611e77565b915060208301358015158114611fc957600080fd5b809150509250929050565b60008060408385031215611fe757600080fd5b611ff083611e77565b946020939093013593505050565b6000602080838503121561201157600080fd5b82356001600160401b0381111561202757600080fd5b8301601f8101851361203857600080fd5b803561204b612046826122fb565b6122cb565b80828252848201915084840188868560051b870101111561206b57600080fd5b600094505b838510156120955761208181611e77565b835260019490940193918501918501612070565b50979650505050505050565b600060208083850312156120b457600080fd5b82356001600160401b038111156120ca57600080fd5b8301601f810185136120db57600080fd5b80356120e9612046826122fb565b80828252848201915084840188868560051b870101111561210957600080fd5b600094505b8385101561209557803583526001949094019391850191850161210e565b60006020828403121561213e57600080fd5b81356111948161246e565b60006020828403121561215b57600080fd5b81516111948161246e565b60006020828403121561217857600080fd5b81356001600160401b0381111561218e57600080fd5b8201601f8101841361219f57600080fd5b6118f784823560208401611e20565b6000602082840312156121c057600080fd5b813561ffff8116811461119457600080fd5b6000602082840312156121e457600080fd5b5035919050565b60008151808452612203816020860160208601612380565b601f01601f19169290920160200192915050565b60008351612229818460208801612380565b83519083019061223d818360208801612380565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612279908301846121eb565b9695505050505050565b60208152600061119460208301846121eb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156122f3576122f3612458565b604052919050565b60006001600160401b0382111561231457612314612458565b5060051b60200190565b6000821982111561233157612331612416565b500190565b6000826123455761234561242c565b500490565b600081600019048311821515161561236457612364612416565b500290565b60008282101561237b5761237b612416565b500390565b60005b8381101561239b578181015183820152602001612383565b83811115610a1c5750506000910152565b600181811c908216806123c057607f821691505b602082108114156123e157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123fb576123fb612416565b5060010190565b6000826124115761241161242c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610afe57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203875366d67a95c667b782ebfc0c13ffa5dc503acadf5b70d1847d5ba3bc3661664736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f75732d63656e7472616c312d746f6f6e732d67656e657369732d736d6172742d636f6e74726163742e636c6f756466756e6374696f6e732e6e65742f6170702f736c696d6965732f00000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063729ad39e1161012e578063cbce4c97116100ab578063e97800cb1161006f578063e97800cb14610670578063e985e9c514610690578063f2fde38b146106d9578063f4da1846146106f9578063f8604f111461071957600080fd5b8063cbce4c97146105da578063cef11729146105fa578063d5abeb011461061a578063dc33e68114610630578063dc8e92ea1461065057600080fd5b8063b88d4fde116100f2578063b88d4fde14610536578063bbb8974414610556578063bc951b9114610584578063c4ae3168146105a5578063c87b56dd146105ba57600080fd5b8063729ad39e146104b05780638da5cb5b146104d057806395d89b41146104ee578063a0712d6814610503578063a22cb4651461051657600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e1461041b57806368570bd61461043b5780636f8b44b01461045b57806370a082311461047b578063715018a61461049b57600080fd5b806342842e0e1461038157806342966c68146103a157806344a0d68a146103c157806355f804b3146103e15780635c975abb1461040157600080fd5b806318160ddd1161020357806318160ddd1461031557806323b872dd1461032e578063269bbebd1461034e5780633ccfd60b1461036457806341827f131461036c57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806313faede6146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b36600461212c565b610739565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61078b565b60405161026c9190612283565b3480156102a357600080fd5b506102b76102b23660046121d2565b61081d565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611fd4565b610861565b005b3480156102fd57600080fd5b50610307600d5481565b60405190815260200161026c565b34801561032157600080fd5b5060015460005403610307565b34801561033a57600080fd5b506102ef610349366004611ee1565b6108ef565b34801561035a57600080fd5b50610307600e5481565b6102ef6108fa565b34801561037857600080fd5b5061028a610a22565b34801561038d57600080fd5b506102ef61039c366004611ee1565b610ab0565b3480156103ad57600080fd5b506102ef6103bc3660046121d2565b610acb565b3480156103cd57600080fd5b506102ef6103dc3660046121d2565b610b01565b3480156103ed57600080fd5b506102ef6103fc366004612166565b610b30565b34801561040d57600080fd5b50600f546102609060ff1681565b34801561042757600080fd5b506102b76104363660046121d2565b610b71565b34801561044757600080fd5b506102ef610456366004611e93565b610b83565b34801561046757600080fd5b506102ef6104763660046121d2565b610bcf565b34801561048757600080fd5b50610307610496366004611e93565b610bfe565b3480156104a757600080fd5b506102ef610c4c565b3480156104bc57600080fd5b506102ef6104cb366004611ffe565b610c82565b3480156104dc57600080fd5b506008546001600160a01b03166102b7565b3480156104fa57600080fd5b5061028a610cf4565b6102ef6105113660046121d2565b610d03565b34801561052257600080fd5b506102ef610531366004611f98565b610fb1565b34801561054257600080fd5b506102ef610551366004611f1d565b611047565b34801561056257600080fd5b50600b546105719061ffff1681565b60405161ffff909116815260200161026c565b34801561059057600080fd5b50600b546105719062010000900461ffff1681565b3480156105b157600080fd5b506102ef611092565b3480156105c657600080fd5b5061028a6105d53660046121d2565b6110d0565b3480156105e657600080fd5b506102ef6105f5366004611fd4565b61119b565b34801561060657600080fd5b506102ef6106153660046121ae565b6111cf565b34801561062657600080fd5b50610307600c5481565b34801561063c57600080fd5b5061030761064b366004611e93565b611219565b34801561065c57600080fd5b506102ef61066b3660046120a1565b611247565b34801561067c57600080fd5b506102ef61068b3660046121ae565b6112b1565b34801561069c57600080fd5b506102606106ab366004611eae565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106e557600080fd5b506102ef6106f4366004611e93565b6112f3565b34801561070557600080fd5b506102ef610714366004611fd4565b61138b565b34801561072557600080fd5b506102ef6107343660046121d2565b6113fe565b60006001600160e01b031982166380ac58cd60e01b148061076a57506001600160e01b03198216635b5e139f60e01b145b8061078557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461079a906123ac565b80601f01602080910402602001604051908101604052809291908181526020018280546107c6906123ac565b80156108135780601f106107e857610100808354040283529160200191610813565b820191906000526020600020905b8154815290600101906020018083116107f657829003601f168201915b5050505050905090565b60006108288261142d565b610845576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061086c82610b71565b9050806001600160a01b0316836001600160a01b031614156108a15760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108c157506108bf81336106ab565b155b156108df576040516367d9dca160e11b815260040160405180910390fd5b6108ea838383611458565b505050565b6108ea8383836114b4565b6008546001600160a01b0316331461092d5760405162461bcd60e51b815260040161092490612296565b60405180910390fd5b476000606461093d83600a61234a565b6109479190612336565b6040519091506000907316c7fbd3d3f4d212624ba005d25b4e7bcd1a65c79083908381818185875af1925050503d80600081146109a0576040519150601f19603f3d011682016040523d82523d6000602084013e6109a5565b606091505b50509050806109b357600080fd5b6040516000907359787884c7c6878e68c8a2c8a8c2bd274154e0e69047908381818185875af1925050503d8060008114610a09576040519150601f19603f3d011682016040523d82523d6000602084013e610a0e565b606091505b5050905080610a1c57600080fd5b50505050565b600a8054610a2f906123ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5b906123ac565b8015610aa85780601f10610a7d57610100808354040283529160200191610aa8565b820191906000526020600020905b815481529060010190602001808311610a8b57829003601f168201915b505050505081565b6108ea83838360405180602001604052806000815250611047565b6008546001600160a01b03163314610af55760405162461bcd60e51b815260040161092490612296565b610afe81611690565b50565b6008546001600160a01b03163314610b2b5760405162461bcd60e51b815260040161092490612296565b600d55565b6008546001600160a01b03163314610b5a5760405162461bcd60e51b815260040161092490612296565b8051610b6d90600a906020840190611d87565b5050565b6000610b7c8261169b565b5192915050565b6008546001600160a01b03163314610bad5760405162461bcd60e51b815260040161092490612296565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610bf95760405162461bcd60e51b815260040161092490612296565b600c55565b60006001600160a01b038216610c27576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c765760405162461bcd60e51b815260040161092490612296565b610c8060006117b5565b565b6008546001600160a01b03163314610cac5760405162461bcd60e51b815260040161092490612296565b60005b8151811015610b6d576000828281518110610ccc57610ccc612442565b60200260200101519050610ce18160016113f4565b5080610cec816123e7565b915050610caf565b60606003805461079a906123ac565b6008546001600160a01b03163314610fa7576000610d2033610bfe565b600f5490915060ff1615610d3357600080fd5b60008211610d8f5760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610924565b600b5461ffff16821115610df55760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610924565b600c5482610e066001546000540390565b610e10919061231e565b1115610e535760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610924565b600b5462010000900461ffff16610e6a838361231e565b1115610eb85760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610924565b600e54600154600054031115610f1d5781600d54610ed6919061234a565b341015610f185760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610924565b610fa5565b6000610f2c6001546000540390565b600e54610f399190612369565b905080831115610fa3576000610f4f8285612369565b905080600d54610f5f919061234a565b341015610fa15760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610924565b505b505b505b610afe33826113f4565b6001600160a01b038216331415610fdb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110528484846114b4565b6001600160a01b0383163b15158015611074575061107284848484611807565b155b15610a1c576040516368d2bf6b60e11b815260040160405180910390fd5b6008546001600160a01b031633146110bc5760405162461bcd60e51b815260040161092490612296565b600f805460ff19811660ff90911615179055565b60606110db8261142d565b61113f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610924565b60006111496118ff565b905060008151116111695760405180602001604052806000815250611194565b806111738461190e565b604051602001611184929190612217565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111c55760405162461bcd60e51b815260040161092490612296565b610b6d82826113f4565b6008546001600160a01b031633146111f95760405162461bcd60e51b815260040161092490612296565b600b805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610785565b6008546001600160a01b031633146112715760405162461bcd60e51b815260040161092490612296565b60005b8151811015610b6d5761129f82828151811061129257611292612442565b6020026020010151611690565b806112a9816123e7565b915050611274565b6008546001600160a01b031633146112db5760405162461bcd60e51b815260040161092490612296565b600b805461ffff191661ffff92909216919091179055565b6008546001600160a01b0316331461131d5760405162461bcd60e51b815260040161092490612296565b6001600160a01b0381166113825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610924565b610afe816117b5565b6009546001600160a01b031633146113f45760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610924565b610b6d8282611a0b565b6008546001600160a01b031633146114285760405162461bcd60e51b815260040161092490612296565b600e55565b6000805482108015610785575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114bf8261169b565b9050836001600160a01b031681600001516001600160a01b0316146114f65760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611514575061151485336106ab565b8061152f5750336115248461081d565b6001600160a01b0316145b90508061154f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661157657604051633a954ecd60e21b815260040160405180910390fd5b61158260008487611458565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661165657600054821461165657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061248583398151915260405160405180910390a45b5050505050565b610afe816000611a25565b60408051606081018252600080825260208201819052918101919091528160005481101561179c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061179a5780516001600160a01b031615611731579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611795579392505050565b611731565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061183c903390899088908890600401612246565b602060405180830381600087803b15801561185657600080fd5b505af1925050508015611886575060408051601f3d908101601f1916820190925261188391810190612149565b60015b6118e1573d8080156118b4576040519150601f19603f3d011682016040523d82523d6000602084013e6118b9565b606091505b5080516118d9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a805461079a906123ac565b6060816119325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561195c5780611946816123e7565b91506119559050600a83612336565b9150611936565b6000816001600160401b0381111561197657611976612458565b6040519080825280601f01601f1916602001820160405280156119a0576020820181803683370190505b5090505b84156118f7576119b5600183612369565b91506119c2600a86612402565b6119cd90603061231e565b60f81b8183815181106119e2576119e2612442565b60200101906001600160f81b031916908160001a905350611a04600a86612336565b94506119a4565b610b6d828260405180602001604052806000815250611bd8565b6000611a308361169b565b80519091508215611a96576000336001600160a01b0383161480611a595750611a5982336106ab565b80611a74575033611a698661081d565b6001600160a01b0316145b905080611a9457604051632ce44b5f60e11b815260040160405180910390fd5b505b611aa260008583611458565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116611ba0576000548214611ba057805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020612485833981519152908390a4505060018054810190555050565b6108ea83838360016000546001600160a01b038516611c0957604051622e076360e81b815260040160405180910390fd5b83611c275760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611cd357506001600160a01b0387163b15155b15611d4a575b60405182906001600160a01b03891690600090600080516020612485833981519152908290a4611d126000888480600101955088611807565b611d2f576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611cd9578260005414611d4557600080fd5b611d7e565b5b6040516001830192906001600160a01b03891690600090600080516020612485833981519152908290a480821415611d4b575b50600055611689565b828054611d93906123ac565b90600052602060002090601f016020900481019282611db55760008555611dfb565b82601f10611dce57805160ff1916838001178555611dfb565b82800160010185558215611dfb579182015b82811115611dfb578251825591602001919060010190611de0565b50611e07929150611e0b565b5090565b5b80821115611e075760008155600101611e0c565b60006001600160401b03831115611e3957611e39612458565b611e4c601f8401601f19166020016122cb565b9050828152838383011115611e6057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611e8e57600080fd5b919050565b600060208284031215611ea557600080fd5b61119482611e77565b60008060408385031215611ec157600080fd5b611eca83611e77565b9150611ed860208401611e77565b90509250929050565b600080600060608486031215611ef657600080fd5b611eff84611e77565b9250611f0d60208501611e77565b9150604084013590509250925092565b60008060008060808587031215611f3357600080fd5b611f3c85611e77565b9350611f4a60208601611e77565b92506040850135915060608501356001600160401b03811115611f6c57600080fd5b8501601f81018713611f7d57600080fd5b611f8c87823560208401611e20565b91505092959194509250565b60008060408385031215611fab57600080fd5b611fb483611e77565b915060208301358015158114611fc957600080fd5b809150509250929050565b60008060408385031215611fe757600080fd5b611ff083611e77565b946020939093013593505050565b6000602080838503121561201157600080fd5b82356001600160401b0381111561202757600080fd5b8301601f8101851361203857600080fd5b803561204b612046826122fb565b6122cb565b80828252848201915084840188868560051b870101111561206b57600080fd5b600094505b838510156120955761208181611e77565b835260019490940193918501918501612070565b50979650505050505050565b600060208083850312156120b457600080fd5b82356001600160401b038111156120ca57600080fd5b8301601f810185136120db57600080fd5b80356120e9612046826122fb565b80828252848201915084840188868560051b870101111561210957600080fd5b600094505b8385101561209557803583526001949094019391850191850161210e565b60006020828403121561213e57600080fd5b81356111948161246e565b60006020828403121561215b57600080fd5b81516111948161246e565b60006020828403121561217857600080fd5b81356001600160401b0381111561218e57600080fd5b8201601f8101841361219f57600080fd5b6118f784823560208401611e20565b6000602082840312156121c057600080fd5b813561ffff8116811461119457600080fd5b6000602082840312156121e457600080fd5b5035919050565b60008151808452612203816020860160208601612380565b601f01601f19169290920160200192915050565b60008351612229818460208801612380565b83519083019061223d818360208801612380565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612279908301846121eb565b9695505050505050565b60208152600061119460208301846121eb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156122f3576122f3612458565b604052919050565b60006001600160401b0382111561231457612314612458565b5060051b60200190565b6000821982111561233157612331612416565b500190565b6000826123455761234561242c565b500490565b600081600019048311821515161561236457612364612416565b500290565b60008282101561237b5761237b612416565b500390565b60005b8381101561239b578181015183820152602001612383565b83811115610a1c5750506000910152565b600181811c908216806123c057607f821691505b602082108114156123e157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123fb576123fb612416565b5060010190565b6000826124115761241161242c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610afe57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212203875366d67a95c667b782ebfc0c13ffa5dc503acadf5b70d1847d5ba3bc3661664736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f75732d63656e7472616c312d746f6f6e732d67656e657369732d736d6172742d636f6e74726163742e636c6f756466756e6374696f6e732e6e65742f6170702f736c696d6965732f00000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUrl (string): https://us-central1-toons-genesis-smart-contract.cloudfunctions.net/app/slimies/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [2] : 68747470733a2f2f75732d63656e7472616c312d746f6f6e732d67656e657369
Arg [3] : 732d736d6172742d636f6e74726163742e636c6f756466756e6374696f6e732e
Arg [4] : 6e65742f6170702f736c696d6965732f00000000000000000000000000000000


Deployed Bytecode Sourcemap

44837:5230:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27012:305;;;;;;;;;;-1:-1:-1;27012:305:0;;;;;:::i;:::-;;:::i;:::-;;;7728:14:1;;7721:22;7703:41;;7691:2;7676:18;27012:305:0;;;;;;;;30125:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31628:204::-;;;;;;;;;;-1:-1:-1;31628:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7026:32:1;;;7008:51;;6996:2;6981:18;31628:204:0;6862:203:1;31191:371:0;;;;;;;;;;-1:-1:-1;31191:371:0;;;;;:::i;:::-;;:::i;:::-;;45199:32;;;;;;;;;;;;;;;;;;;11767:25:1;;;11755:2;11740:18;45199:32:0;11621:177:1;26261:303:0;;;;;;;;;;-1:-1:-1;26515:12:0;;26305:7;26499:13;:28;26261:303;;32493:170;;;;;;;;;;-1:-1:-1;32493:170:0;;;;;:::i;:::-;;:::i;45238:31::-;;;;;;;;;;;;;;;;49591:473;;;:::i;44946:24::-;;;;;;;;;;;;;:::i;32734:185::-;;;;;;;;;;-1:-1:-1;32734:185:0;;;;;:::i;:::-;;:::i;48788:78::-;;;;;;;;;;-1:-1:-1;48788:78:0;;;;;:::i;:::-;;:::i;48481:86::-;;;;;;;;;;-1:-1:-1;48481:86:0;;;;;:::i;:::-;;:::i;49255:107::-;;;;;;;;;;-1:-1:-1;49255:107:0;;;;;:::i;:::-;;:::i;45293:26::-;;;;;;;;;;-1:-1:-1;45293:26:0;;;;;;;;29933:125;;;;;;;;;;-1:-1:-1;29933:125:0;;;;;:::i;:::-;;:::i;45629:119::-;;;;;;;;;;-1:-1:-1;45629:119:0;;;;;:::i;:::-;;:::i;49153:94::-;;;;;;;;;;-1:-1:-1;49153:94:0;;;;;:::i;:::-;;:::i;27381:206::-;;;;;;;;;;-1:-1:-1;27381:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;47625:234::-;;;;;;;;;;-1:-1:-1;47625:234:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;30294:104;;;;;;;;;;;;;:::i;46220:1278::-;;;;;;:::i;:::-;;:::i;31904:287::-;;;;;;;;;;-1:-1:-1;31904:287:0;;;;;:::i;:::-;;:::i;32990:369::-;;;;;;;;;;-1:-1:-1;32990:369:0;;;;;:::i;:::-;;:::i;45013:46::-;;;;;;;;;;-1:-1:-1;45013:46:0;;;;;;;;;;;11602:6:1;11590:19;;;11572:38;;11560:2;11545:18;45013:46:0;11428:188:1;45066:41:0;;;;;;;;;;-1:-1:-1;45066:41:0;;;;;;;;;;;49370:75;;;;;;;;;;;;;:::i;47986:487::-;;;;;;;;;;-1:-1:-1;47986:487:0;;;;;:::i;:::-;;:::i;47506:111::-;;;;;;;;;;-1:-1:-1;47506:111:0;;;;;:::i;:::-;;:::i;49019:119::-;;;;;;;;;;-1:-1:-1;49019:119:0;;;;;:::i;:::-;;:::i;45145:31::-;;;;;;;;;;;;;;;;46084:113;;;;;;;;;;-1:-1:-1;46084:113:0;;;;;:::i;:::-;;:::i;48601:179::-;;;;;;;;;;-1:-1:-1;48601:179:0;;;;;:::i;:::-;;:::i;48882:129::-;;;;;;;;;;-1:-1:-1;48882:129:0;;;;;:::i;:::-;;:::i;32262:164::-;;;;;;;;;;-1:-1:-1;32262:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32383:25:0;;;32359:4;32383:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32262:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;45826:250::-;;;;;;;;;;-1:-1:-1;45826:250:0;;;;;:::i;:::-;;:::i;45448:91::-;;;;;;;;;;-1:-1:-1;45448:91:0;;;;;:::i;:::-;;:::i;27012:305::-;27114:4;-1:-1:-1;;;;;;27151:40:0;;-1:-1:-1;;;27151:40:0;;:105;;-1:-1:-1;;;;;;;27208:48:0;;-1:-1:-1;;;27208:48:0;27151:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;27273:36;27131:178;27012:305;-1:-1:-1;;27012:305:0:o;30125:100::-;30179:13;30212:5;30205:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30125:100;:::o;31628:204::-;31696:7;31721:16;31729:7;31721;:16::i;:::-;31716:64;;31746:34;;-1:-1:-1;;;31746:34:0;;;;;;;;;;;31716:64;-1:-1:-1;31800:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31800:24:0;;31628:204::o;31191:371::-;31264:13;31280:24;31296:7;31280:15;:24::i;:::-;31264:40;;31325:5;-1:-1:-1;;;;;31319:11:0;:2;-1:-1:-1;;;;;31319:11:0;;31315:48;;;31339:24;;-1:-1:-1;;;31339:24:0;;;;;;;;;;;31315:48;2883:10;-1:-1:-1;;;;;31380:21:0;;;;;;:63;;-1:-1:-1;31406:37:0;31423:5;2883:10;32262:164;:::i;31406:37::-;31405:38;31380:63;31376:138;;;31467:35;;-1:-1:-1;;;31467:35:0;;;;;;;;;;;31376:138;31526:28;31535:2;31539:7;31548:5;31526:8;:28::i;:::-;31253:309;31191:371;;:::o;32493:170::-;32627:28;32637:4;32643:2;32647:7;32627:9;:28::i;49591:473::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;49666:21:::1;49648:15;49734:3;49718:12;49666:21:::0;49728:2:::1;49718:12;:::i;:::-;49717:20;;;;:::i;:::-;49793:99;::::0;49700:37;;-1:-1:-1;49779:8:0::1;::::0;49815:42:::1;::::0;49700:37;;49779:8;49793:99;49779:8;49793:99;49700:37;49815:42;49793:99:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49778:114;;;49911:3;49903:12;;;::::0;::::1;;49942:90;::::0;49929:7:::1;::::0;49950:42:::1;::::0;50006:21:::1;::::0;49929:7;49942:90;49929:7;49942:90;50006:21;49950:42;49942:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49928:104;;;50051:2;50043:11;;;::::0;::::1;;49636:428;;;;49591:473::o:0;44946:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32734:185::-;32872:39;32889:4;32895:2;32899:7;32872:39;;;;;;;;;;;;:16;:39::i;48788:78::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48845:13:::1;48851:6;48845:5;:13::i;:::-;48788:78:::0;:::o;48481:86::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48544:4:::1;:15:::0;48481:86::o;49255:107::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49330:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49255:107:::0;:::o;29933:125::-;29997:7;30024:21;30037:7;30024:12;:21::i;:::-;:26;;29933:125;-1:-1:-1;;29933:125:0:o;45629:119::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45712:16:::1;:28:::0;;-1:-1:-1;;;;;;45712:28:0::1;-1:-1:-1::0;;;;;45712:28:0;;;::::1;::::0;;;::::1;::::0;;45629:119::o;49153:94::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49220:9:::1;:19:::0;49153:94::o;27381:206::-;27445:7;-1:-1:-1;;;;;27469:19:0;;27465:60;;27497:28;;-1:-1:-1;;;27497:28:0;;;;;;;;;;;27465:60;-1:-1:-1;;;;;;27551:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27551:27:0;;27381:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;47625:234::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47711:9:::1;47706:146;47730:17;:24;47726:1;:28;47706:146;;;47776:10;47789:17;47807:1;47789:20;;;;;;;;:::i;:::-;;;;;;;47776:33;;47824:16;47834:2;47838:1;47824:9;:16::i;:::-;-1:-1:-1::0;47756:3:0;::::1;::::0;::::1;:::i;:::-;;;;47706:146;;30294:104:::0;30350:13;30383:7;30376:14;;;;;:::i;46220:1278::-;4152:6;;-1:-1:-1;;;;;4152:6:0;46285:10;:21;46281:1163;;46323:23;46349:21;46359:10;46349:9;:21::i;:::-;46396:6;;46323:47;;-1:-1:-1;46396:6:0;;46395:7;46387:16;;;;;;46440:1;46426:11;:15;46418:64;;;;-1:-1:-1;;;46418:64:0;;10872:2:1;46418:64:0;;;10854:21:1;10911:2;10891:18;;;10884:30;10950:34;10930:18;;;10923:62;-1:-1:-1;;;11001:18:1;;;10994:34;11045:19;;46418:64:0;10670:400:1;46418:64:0;46538:27;;;;46523:42;;;46497:143;;;;-1:-1:-1;;;46497:143:0;;9687:2:1;46497:143:0;;;9669:21:1;9726:2;9706:18;;;9699:30;9765:34;9745:18;;;9738:62;-1:-1:-1;;;9816:18:1;;;9809:37;9863:19;;46497:143:0;9485:403:1;46497:143:0;46712:9;;46697:11;46681:13;26515:12;;26305:7;26499:13;:28;;26261:303;46681:13;:27;;;;:::i;:::-;:40;;46655:120;;;;-1:-1:-1;;;46655:120:0;;8181:2:1;46655:120:0;;;8163:21:1;8220:2;8200:18;;;8193:30;-1:-1:-1;;;8239:18:1;;;8232:48;8297:18;;46655:120:0;7979:342:1;46655:120:0;46851:22;;;;;;;46817:29;46835:11;46817:15;:29;:::i;:::-;46816:57;;46790:143;;;;-1:-1:-1;;;46790:143:0;;11277:2:1;46790:143:0;;;11259:21:1;11316:2;11296:18;;;11289:30;11355:26;11335:18;;;11328:54;11399:18;;46790:143:0;11075:348:1;46790:143:0;46969:9;;26515:12;;26305:7;26499:13;:28;46953:25;46950:466;;;47054:11;47047:4;;:18;;;;:::i;:::-;47034:9;:31;;47026:60;;;;-1:-1:-1;;;47026:60:0;;9342:2:1;47026:60:0;;;9324:21:1;9381:2;9361:18;;;9354:30;-1:-1:-1;;;9400:18:1;;;9393:46;9456:18;;47026:60:0;9140:340:1;47026:60:0;46950:466;;;47125:9;47149:13;26515:12;;26305:7;26499:13;:28;;26261:303;47149:13;47137:9;;:25;;;;:::i;:::-;47125:37;;47216:1;47202:11;:15;47199:200;;;47240:9;47252:15;47266:1;47252:11;:15;:::i;:::-;47240:27;;47357:1;47350:4;;:8;;;;:::i;:::-;47337:9;:21;;47329:50;;;;-1:-1:-1;;;47329:50:0;;9342:2:1;47329:50:0;;;9324:21:1;9381:2;9361:18;;;9354:30;-1:-1:-1;;;9400:18:1;;;9393:46;9456:18;;47329:50:0;9140:340:1;47329:50:0;47218:181;47199:200;47106:310;46950:466;46308:1136;46281:1163;47456:34;47466:10;47478:11;47456:9;:34::i;31904:287::-;-1:-1:-1;;;;;32003:24:0;;2883:10;32003:24;31999:54;;;32036:17;;-1:-1:-1;;;32036:17:0;;;;;;;;;;;31999:54;2883:10;32066:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32066:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32066:53:0;;;;;;;;;;32135:48;;7703:41:1;;;32066:42:0;;2883:10;32135:48;;7676:18:1;32135:48:0;;;;;;;31904:287;;:::o;32990:369::-;33157:28;33167:4;33173:2;33177:7;33157:9;:28::i;:::-;-1:-1:-1;;;;;33200:13:0;;7075:19;:23;;33200:76;;;;;33220:56;33251:4;33257:2;33261:7;33270:5;33220:30;:56::i;:::-;33219:57;33200:76;33196:156;;;33300:40;;-1:-1:-1;;;33300:40:0;;;;;;;;;;;49370:75;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49431:6:::1;::::0;;-1:-1:-1;;49421:16:0;::::1;49431:6;::::0;;::::1;49430:7;49421:16;::::0;;49370:75::o;47986:487::-;48104:13;48157:16;48165:7;48157;:16::i;:::-;48135:113;;;;-1:-1:-1;;;48135:113:0;;10456:2:1;48135:113:0;;;10438:21:1;10495:2;10475:18;;;10468:30;10534:34;10514:18;;;10507:62;-1:-1:-1;;;10585:18:1;;;10578:45;10640:19;;48135:113:0;10254:411:1;48135:113:0;48259:28;48290:10;:8;:10::i;:::-;48259:41;;48362:1;48337:14;48331:28;:32;:134;;;;;;;;;;;;;;;;;48407:14;48423:18;:7;:16;:18::i;:::-;48390:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48331:134;48311:154;47986:487;-1:-1:-1;;;47986:487:0:o;47506:111::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;47582:27:::1;47592:3;47597:11;47582:9;:27::i;49019:119::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;49098:22:::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;49098:32:0;;::::1;::::0;;;::::1;::::0;;49019:119::o;46084:113::-;-1:-1:-1;;;;;27765:19:0;;46142:7;27765:19;;;:12;:19;;;;;:32;-1:-1:-1;;;27765:32:0;;-1:-1:-1;;;;;27765:32:0;46169:20;27669:137;48601:179;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48682:9:::1;48678:95;48701:7;:14;48697:1;:18;48678:95;;;48740:17;48746:7;48754:1;48746:10;;;;;;;;:::i;:::-;;;;;;;48740:5;:17::i;:::-;48717:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48678:95;;48882:129:::0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;48966:27:::1;:37:::0;;-1:-1:-1;;48966:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;48882:129::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;8528:2:1;5069:73:0::1;::::0;::::1;8510:21:1::0;8567:2;8547:18;;;8540:30;8606:34;8586:18;;;8579:62;-1:-1:-1;;;8657:18:1;;;8650:36;8703:19;;5069:73:0::1;8326:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;45826:250::-:0;45943:16;;-1:-1:-1;;;;;45943:16:0;45929:10;:30;45907:118;;;;-1:-1:-1;;;45907:118:0;;8935:2:1;45907:118:0;;;8917:21:1;8974:2;8954:18;;;8947:30;9013:34;8993:18;;;8986:62;-1:-1:-1;;;9064:18:1;;;9057:36;9110:19;;45907:118:0;8733:402:1;45907:118:0;46036:32;46046:8;46056:11;46036:9;:32::i;45448:91::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45513:9:::1;:18:::0;45448:91::o;33614:187::-;33671:4;33735:13;;33725:7;:23;33695:98;;;;-1:-1:-1;;33766:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33766:27:0;;;;33765:28;;33614:187::o;41784:196::-;41899:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41899:29:0;-1:-1:-1;;;;;41899:29:0;;;;;;;;;41944:28;;41899:24;;41944:28;;;;;;;41784:196;;;:::o;36727:2130::-;36842:35;36880:21;36893:7;36880:12;:21::i;:::-;36842:59;;36940:4;-1:-1:-1;;;;;36918:26:0;:13;:18;;;-1:-1:-1;;;;;36918:26:0;;36914:67;;36953:28;;-1:-1:-1;;;36953:28:0;;;;;;;;;;;36914:67;36994:22;2883:10;-1:-1:-1;;;;;37020:20:0;;;;:73;;-1:-1:-1;37057:36:0;37074:4;2883:10;32262:164;:::i;37057:36::-;37020:126;;;-1:-1:-1;2883:10:0;37110:20;37122:7;37110:11;:20::i;:::-;-1:-1:-1;;;;;37110:36:0;;37020:126;36994:153;;37165:17;37160:66;;37191:35;;-1:-1:-1;;;37191:35:0;;;;;;;;;;;37160:66;-1:-1:-1;;;;;37241:16:0;;37237:52;;37266:23;;-1:-1:-1;;;37266:23:0;;;;;;;;;;;37237:52;37410:35;37427:1;37431:7;37440:4;37410:8;:35::i;:::-;-1:-1:-1;;;;;37741:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37741:31:0;;;-1:-1:-1;;;;;37741:31:0;;;-1:-1:-1;;37741:31:0;;;;;;;37787:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37787:29:0;;;;;;;;;;;37867:20;;;:11;:20;;;;;;37902:18;;-1:-1:-1;;;;;;37935:49:0;;;;-1:-1:-1;;;37968:15:0;37935:49;;;;;;;;;;38258:11;;38318:24;;;;;38361:13;;37867:20;;38318:24;;38361:13;38357:384;;38571:13;;38556:11;:28;38552:174;;38609:20;;38678:28;;;;-1:-1:-1;;;;;38652:54:0;-1:-1:-1;;;38652:54:0;-1:-1:-1;;;;;;38652:54:0;;;-1:-1:-1;;;;;38609:20:0;;38652:54;;;;38552:174;37716:1036;;;38788:7;38784:2;-1:-1:-1;;;;;38769:27:0;38778:4;-1:-1:-1;;;;;38769:27:0;-1:-1:-1;;;;;;;;;;;38769:27:0;;;;;;;;;38807:42;36831:2026;;36727:2130;;;:::o;38940:89::-;39000:21;39006:7;39015:5;39000;:21::i;28762:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28873:7:0;28956:13;;28949:4;:20;28918:886;;;28990:31;29024:17;;;:11;:17;;;;;;;;;28990:51;;;;;;;;;-1:-1:-1;;;;;28990:51:0;;;;-1:-1:-1;;;28990:51:0;;-1:-1:-1;;;;;28990:51:0;;;;;;;;-1:-1:-1;;;28990:51:0;;;;;;;;;;;;;;29060:729;;29110:14;;-1:-1:-1;;;;;29110:28:0;;29106:101;;29174:9;28762:1109;-1:-1:-1;;;28762:1109:0:o;29106:101::-;-1:-1:-1;;;29549:6:0;29594:17;;;;:11;:17;;;;;;;;;29582:29;;;;;;;;;-1:-1:-1;;;;;29582:29:0;;;;;-1:-1:-1;;;29582:29:0;;-1:-1:-1;;;;;29582:29:0;;;;;;;;-1:-1:-1;;;29582:29:0;;;;;;;;;;;;;29642:28;29638:109;;29710:9;28762:1109;-1:-1:-1;;;28762:1109:0:o;29638:109::-;29509:261;;;28971:833;28918:886;29832:31;;-1:-1:-1;;;29832:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;42472:667::-;42656:72;;-1:-1:-1;;;42656:72:0;;42635:4;;-1:-1:-1;;;;;42656:36:0;;;;;:72;;2883:10;;42707:4;;42713:7;;42722:5;;42656:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42656:72:0;;;;;;;;-1:-1:-1;;42656:72:0;;;;;;;;;;;;:::i;:::-;;;42652:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42890:13:0;;42886:235;;42936:40;;-1:-1:-1;;;42936:40:0;;;;;;;;;;;42886:235;43079:6;43073:13;43064:6;43060:2;43056:15;43049:38;42652:480;-1:-1:-1;;;;;;42775:55:0;-1:-1:-1;;;42775:55:0;;-1:-1:-1;42652:480:0;42472:667;;;;;;:::o;47867:111::-;47927:13;47960:10;47953:17;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;33809:104;33878:27;33888:2;33892:8;33878:27;;;;;;;;;;;;:9;:27::i;39258:2408::-;39338:35;39376:21;39389:7;39376:12;:21::i;:::-;39425:18;;39338:59;;-1:-1:-1;39456:290:0;;;;39490:22;2883:10;-1:-1:-1;;;;;39516:20:0;;;;:77;;-1:-1:-1;39557:36:0;39574:4;2883:10;32262:164;:::i;39557:36::-;39516:134;;;-1:-1:-1;2883:10:0;39614:20;39626:7;39614:11;:20::i;:::-;-1:-1:-1;;;;;39614:36:0;;39516:134;39490:161;;39673:17;39668:66;;39699:35;;-1:-1:-1;;;39699:35:0;;;;;;;;;;;39668:66;39475:271;39456:290;39874:35;39891:1;39895:7;39904:4;39874:8;:35::i;:::-;-1:-1:-1;;;;;40239:18:0;;;40205:31;40239:18;;;:12;:18;;;;;;;;40272:24;;-1:-1:-1;;;;;;;;;;40272:24:0;;;;;;;;;-1:-1:-1;;40272:24:0;;;;40311:29;;;;;40295:1;40311:29;;;;;;;;-1:-1:-1;;40311:29:0;;;;;;;;;;40473:20;;;:11;:20;;;;;;40508;;-1:-1:-1;;;;40576:15:0;40543:49;;;-1:-1:-1;;;40543:49:0;-1:-1:-1;;;;;;40543:49:0;;;;;;;;;;40607:22;-1:-1:-1;;;40607:22:0;;;40899:11;;;40959:24;;;;;41002:13;;40239:18;;40959:24;;41002:13;40998:384;;41212:13;;41197:11;:28;41193:174;;41250:20;;41319:28;;;;-1:-1:-1;;;;;41293:54:0;-1:-1:-1;;;41293:54:0;-1:-1:-1;;;;;;41293:54:0;;;-1:-1:-1;;;;;41250:20:0;;41293:54;;;;41193:174;-1:-1:-1;;41410:35:0;;41437:7;;-1:-1:-1;41433:1:0;;-1:-1:-1;;;;;;41410:35:0;;;-1:-1:-1;;;;;;;;;;;41410:35:0;41433:1;;41410:35;-1:-1:-1;;41633:12:0;:14;;;;;;-1:-1:-1;;39258:2408:0:o;34276:163::-;34399:32;34405:2;34409:8;34419:5;34426:4;34837:20;34860:13;-1:-1:-1;;;;;34888:16:0;;34884:48;;34913:19;;-1:-1:-1;;;34913:19:0;;;;;;;;;;;34884:48;34947:13;34943:44;;34969:18;;-1:-1:-1;;;34969:18:0;;;;;;;;;;;34943:44;-1:-1:-1;;;;;35338:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35397:49:0;;-1:-1:-1;;;;;35338:44:0;;;;;;;35397:49;;;-1:-1:-1;;;;;35338:44:0;;;;;;35397:49;;;;;;;;;;;;;;;;35463:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35513:66:0;;;;-1:-1:-1;;;35563:15:0;35513:66;;;;;;;;;;35463:25;35660:23;;;35704:4;:23;;;;-1:-1:-1;;;;;;35712:13:0;;7075:19;:23;;35712:15;35700:641;;;35748:314;35779:38;;35804:12;;-1:-1:-1;;;;;35779:38:0;;;35796:1;;-1:-1:-1;;;;;;;;;;;35779:38:0;35796:1;;35779:38;35845:69;35884:1;35888:2;35892:14;;;;;;35908:5;35845:30;:69::i;:::-;35840:174;;35950:40;;-1:-1:-1;;;35950:40:0;;;;;;;;;;;35840:174;36057:3;36041:12;:19;;35748:314;;36143:12;36126:13;;:29;36122:43;;36157:8;;;36122:43;35700:641;;;36206:120;36237:40;;36262:14;;;;;-1:-1:-1;;;;;36237:40:0;;;36254:1;;-1:-1:-1;;;;;;;;;;;36237:40:0;36254:1;;36237:40;36321:3;36305:12;:19;;36206:120;;35700:641;-1:-1:-1;36355:13:0;:28;36405:60;49591:473;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;-1:-1:-1;;;;;1811:6:1;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:908::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;-1:-1:-1;;;;;2913:6:1;2910:30;2907:50;;;2953:1;2950;2943:12;2907:50;2976:22;;3029:4;3021:13;;3017:27;-1:-1:-1;3007:55:1;;3058:1;3055;3048:12;3007:55;3094:2;3081:16;3117:60;3133:43;3173:2;3133:43;:::i;:::-;3117:60;:::i;:::-;3199:3;3223:2;3218:3;3211:15;3251:2;3246:3;3242:12;3235:19;;3282:2;3278;3274:11;3330:7;3325:2;3319;3316:1;3312:10;3308:2;3304:19;3300:28;3297:41;3294:61;;;3351:1;3348;3341:12;3294:61;3373:1;3364:10;;3383:169;3397:2;3394:1;3391:9;3383:169;;;3454:23;3473:3;3454:23;:::i;:::-;3442:36;;3415:1;3408:9;;;;;3498:12;;;;3530;;3383:169;;;-1:-1:-1;3571:5:1;2674:908;-1:-1:-1;;;;;;;2674:908:1:o;3587:902::-;3671:6;3702:2;3745;3733:9;3724:7;3720:23;3716:32;3713:52;;;3761:1;3758;3751:12;3713:52;3801:9;3788:23;-1:-1:-1;;;;;3826:6:1;3823:30;3820:50;;;3866:1;3863;3856:12;3820:50;3889:22;;3942:4;3934:13;;3930:27;-1:-1:-1;3920:55:1;;3971:1;3968;3961:12;3920:55;4007:2;3994:16;4030:60;4046:43;4086:2;4046:43;:::i;4030:60::-;4112:3;4136:2;4131:3;4124:15;4164:2;4159:3;4155:12;4148:19;;4195:2;4191;4187:11;4243:7;4238:2;4232;4229:1;4225:10;4221:2;4217:19;4213:28;4210:41;4207:61;;;4264:1;4261;4254:12;4207:61;4286:1;4277:10;;4296:163;4310:2;4307:1;4304:9;4296:163;;;4367:17;;4355:30;;4328:1;4321:9;;;;;4405:12;;;;4437;;4296:163;;4494:245;4552:6;4605:2;4593:9;4584:7;4580:23;4576:32;4573:52;;;4621:1;4618;4611:12;4573:52;4660:9;4647:23;4679:30;4703:5;4679:30;:::i;4744:249::-;4813:6;4866:2;4854:9;4845:7;4841:23;4837:32;4834:52;;;4882:1;4879;4872:12;4834:52;4914:9;4908:16;4933:30;4957:5;4933:30;:::i;4998:450::-;5067:6;5120:2;5108:9;5099:7;5095:23;5091:32;5088:52;;;5136:1;5133;5126:12;5088:52;5176:9;5163:23;-1:-1:-1;;;;;5201:6:1;5198:30;5195:50;;;5241:1;5238;5231:12;5195:50;5264:22;;5317:4;5309:13;;5305:27;-1:-1:-1;5295:55:1;;5346:1;5343;5336:12;5295:55;5369:73;5434:7;5429:2;5416:16;5411:2;5407;5403:11;5369:73;:::i;5453:272::-;5511:6;5564:2;5552:9;5543:7;5539:23;5535:32;5532:52;;;5580:1;5577;5570:12;5532:52;5619:9;5606:23;5669:6;5662:5;5658:18;5651:5;5648:29;5638:57;;5691:1;5688;5681:12;5730:180;5789:6;5842:2;5830:9;5821:7;5817:23;5813:32;5810:52;;;5858:1;5855;5848:12;5810:52;-1:-1:-1;5881:23:1;;5730:180;-1:-1:-1;5730:180:1:o;5915:257::-;5956:3;5994:5;5988:12;6021:6;6016:3;6009:19;6037:63;6093:6;6086:4;6081:3;6077:14;6070:4;6063:5;6059:16;6037:63;:::i;:::-;6154:2;6133:15;-1:-1:-1;;6129:29:1;6120:39;;;;6161:4;6116:50;;5915:257;-1:-1:-1;;5915:257:1:o;6177:470::-;6356:3;6394:6;6388:13;6410:53;6456:6;6451:3;6444:4;6436:6;6432:17;6410:53;:::i;:::-;6526:13;;6485:16;;;;6548:57;6526:13;6485:16;6582:4;6570:17;;6548:57;:::i;:::-;6621:20;;6177:470;-1:-1:-1;;;;6177:470:1:o;7070:488::-;-1:-1:-1;;;;;7339:15:1;;;7321:34;;7391:15;;7386:2;7371:18;;7364:43;7438:2;7423:18;;7416:34;;;7486:3;7481:2;7466:18;;7459:31;;;7264:4;;7507:45;;7532:19;;7524:6;7507:45;:::i;:::-;7499:53;7070:488;-1:-1:-1;;;;;;7070:488:1:o;7755:219::-;7904:2;7893:9;7886:21;7867:4;7924:44;7964:2;7953:9;7949:18;7941:6;7924:44;:::i;9893:356::-;10095:2;10077:21;;;10114:18;;;10107:30;10173:34;10168:2;10153:18;;10146:62;10240:2;10225:18;;9893:356::o;11803:275::-;11874:2;11868:9;11939:2;11920:13;;-1:-1:-1;;11916:27:1;11904:40;;-1:-1:-1;;;;;11959:34:1;;11995:22;;;11956:62;11953:88;;;12021:18;;:::i;:::-;12057:2;12050:22;11803:275;;-1:-1:-1;11803:275:1:o;12083:183::-;12143:4;-1:-1:-1;;;;;12168:6:1;12165:30;12162:56;;;12198:18;;:::i;:::-;-1:-1:-1;12243:1:1;12239:14;12255:4;12235:25;;12083:183::o;12271:128::-;12311:3;12342:1;12338:6;12335:1;12332:13;12329:39;;;12348:18;;:::i;:::-;-1:-1:-1;12384:9:1;;12271:128::o;12404:120::-;12444:1;12470;12460:35;;12475:18;;:::i;:::-;-1:-1:-1;12509:9:1;;12404:120::o;12529:168::-;12569:7;12635:1;12631;12627:6;12623:14;12620:1;12617:21;12612:1;12605:9;12598:17;12594:45;12591:71;;;12642:18;;:::i;:::-;-1:-1:-1;12682:9:1;;12529:168::o;12702:125::-;12742:4;12770:1;12767;12764:8;12761:34;;;12775:18;;:::i;:::-;-1:-1:-1;12812:9:1;;12702:125::o;12832:258::-;12904:1;12914:113;12928:6;12925:1;12922:13;12914:113;;;13004:11;;;12998:18;12985:11;;;12978:39;12950:2;12943:10;12914:113;;;13045:6;13042:1;13039:13;13036:48;;;-1:-1:-1;;13080:1:1;13062:16;;13055:27;12832:258::o;13095:380::-;13174:1;13170:12;;;;13217;;;13238:61;;13292:4;13284:6;13280:17;13270:27;;13238:61;13345:2;13337:6;13334:14;13314:18;13311:38;13308:161;;;13391:10;13386:3;13382:20;13379:1;13372:31;13426:4;13423:1;13416:15;13454:4;13451:1;13444:15;13308:161;;13095:380;;;:::o;13480:135::-;13519:3;-1:-1:-1;;13540:17:1;;13537:43;;;13560:18;;:::i;:::-;-1:-1:-1;13607:1:1;13596:13;;13480:135::o;13620:112::-;13652:1;13678;13668:35;;13683:18;;:::i;:::-;-1:-1:-1;13717:9:1;;13620:112::o;13737:127::-;13798:10;13793:3;13789:20;13786:1;13779:31;13829:4;13826:1;13819:15;13853:4;13850:1;13843:15;13869:127;13930:10;13925:3;13921:20;13918:1;13911:31;13961:4;13958:1;13951:15;13985:4;13982:1;13975:15;14001:127;14062:10;14057:3;14053:20;14050:1;14043:31;14093:4;14090:1;14083:15;14117:4;14114:1;14107:15;14133:127;14194:10;14189:3;14185:20;14182:1;14175:31;14225:4;14222:1;14215:15;14249:4;14246:1;14239:15;14265:131;-1:-1:-1;;;;;;14339:32:1;;14329:43;;14319:71;;14386:1;14383;14376:12

Swarm Source

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