ETH Price: $3,404.18 (-0.98%)
Gas: 10 Gwei

Token

Kozmonauts (KOZMO)
 

Overview

Max Total Supply

5,555 KOZMO

Holders

653

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 KOZMO
0x18b32ae0afa74f6f1f1f9a1e29dc5b99341cc55d
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:
Kozmo

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: Kozmo.sol

// SPDX-License-Identifier: MIT

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 1;
    }

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

pragma solidity ^0.8.7;

contract Kozmo is ERC721A, Ownable {
    using Strings for uint256;

    string public baseMetaUri;
    
    //General Settings
    uint16 public maxMintAmountPerTransaction = 50;
    uint16 public maxMintAmountPerWallet = 50;

    //Inventory
    uint256 public maxSupply = 5555;

    //Prices
    uint256 public cost = 0.07 ether;

    //Utility
    bool public paused = true;
    
    constructor(string memory _baseUrl) ERC721A("Kozmonauts", "KOZMO") {
        baseMetaUri = _baseUrl;
    }

    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, "Contract 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"
            );
            require(
                msg.value >= cost * _mintAmount, 
                "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 baseMetaUri;
    }

    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;
    }

     //Burn functions
    function batchBurn(uint256[] memory _BurnTokenIds) public virtual {
            for(uint256 i = 0; i < _BurnTokenIds.length; i++){
                _burn(_BurnTokenIds[i], true);
            }
    }

    function burn(uint256 _BurnTokenId) public virtual{
        _burn(_BurnTokenId, true);
    }
   
    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 {
        baseMetaUri = _newBaseURI;
    }

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

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

    function withdraw() public payable onlyOwner {

        (bool hs, ) = payable(0x2D6D4CBbE680250C1fE92ECBfFdbEF3F891ce553).call{value: address(this).balance * 5 / 100}("");
        require(hs);

        (bool os, ) = payable(0x01478bb63727218cA0c874309A3B264E1D56CfFF).call{value: address(this).balance * 5 / 100}("");
        require(os);

        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed");

    }
}

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":"baseMetaUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_BurnTokenIds","type":"uint256[]"}],"name":"batchBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_BurnTokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","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":[],"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":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","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"}]

6080604052600a805463ffffffff1916623200321790556115b3600b5566f8b0a10e470000600c55600d805460ff191660011790553480156200004157600080fd5b5060405162002670380380620026708339810160408190526200006491620001f1565b604080518082018252600a8152694b6f7a6d6f6e6175747360b01b6020808301918252835180850190945260058452644b4f5a4d4f60d81b908401528151919291620000b3916002916200014b565b508051620000c99060039060208401906200014b565b5050600160005550620000dc33620000f9565b8051620000f19060099060208401906200014b565b505062000320565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015990620002cd565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b600060208083850312156200020557600080fd5b82516001600160401b03808211156200021d57600080fd5b818501915085601f8301126200023257600080fd5b8151818111156200024757620002476200030a565b604051601f8201601f19908116603f011681019083821181831017156200027257620002726200030a565b8160405282815288868487010111156200028b57600080fd5b600093505b82841015620002af578484018601518185018701529285019262000290565b82841115620002c15760008684830101525b98975050505050505050565b600181811c90821680620002e257607f821691505b602082108114156200030457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61234080620003306000396000f3fe60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e681146105d2578063dc8e92ea146105f2578063e97800cb14610612578063e985e9c514610632578063f2fde38b1461067b57600080fd5b8063c87b56dd1461055c578063cbce4c971461057c578063cef117291461059c578063d5abeb01146105bc57600080fd5b8063aa5aa2f6116100e7578063aa5aa2f6146104c3578063b88d4fde146104d8578063bbb89744146104f8578063bc951b9114610526578063c4ae31681461054757600080fd5b80638da5cb5b1461045d57806395d89b411461047b578063a0712d6814610490578063a22cb465146104a357600080fd5b806342966c681161019b5780636352211e1161016a5780636352211e146103c85780636f8b44b0146103e857806370a0823114610408578063715018a614610428578063729ad39e1461043d57600080fd5b806342966c681461034e57806344a0d68a1461036e57806355f804b31461038e5780635c975abb146103ae57600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806323b872dd146103065780633ccfd60b1461032657806342842e0e1461032e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611f92565b61069b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ed565b60405161024091906120e9565b34801561027757600080fd5b5061028b610286366004612038565b61077f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611e3a565b6107c3565b005b3480156102d157600080fd5b506102db600c5481565b604051908152602001610240565b3480156102f557600080fd5b5060015460005403600019016102db565b34801561031257600080fd5b506102c3610321366004611d47565b610851565b6102c361085c565b34801561033a57600080fd5b506102c3610349366004611d47565b610a13565b34801561035a57600080fd5b506102c3610369366004612038565b610a2e565b34801561037a57600080fd5b506102c3610389366004612038565b610a3c565b34801561039a57600080fd5b506102c36103a9366004611fcc565b610a6b565b3480156103ba57600080fd5b50600d546102349060ff1681565b3480156103d457600080fd5b5061028b6103e3366004612038565b610aac565b3480156103f457600080fd5b506102c3610403366004612038565b610abe565b34801561041457600080fd5b506102db610423366004611cf9565b610aed565b34801561043457600080fd5b506102c3610b3b565b34801561044957600080fd5b506102c3610458366004611e64565b610b71565b34801561046957600080fd5b506008546001600160a01b031661028b565b34801561048757600080fd5b5061025e610be3565b6102c361049e366004612038565b610bf2565b3480156104af57600080fd5b506102c36104be366004611dfe565b610e38565b3480156104cf57600080fd5b5061025e610ece565b3480156104e457600080fd5b506102c36104f3366004611d83565b610f5c565b34801561050457600080fd5b50600a546105139061ffff1681565b60405161ffff9091168152602001610240565b34801561053257600080fd5b50600a546105139062010000900461ffff1681565b34801561055357600080fd5b506102c3610fad565b34801561056857600080fd5b5061025e610577366004612038565b610feb565b34801561058857600080fd5b506102c3610597366004611e3a565b6110b6565b3480156105a857600080fd5b506102c36105b7366004612014565b6110ea565b3480156105c857600080fd5b506102db600b5481565b3480156105de57600080fd5b506102db6105ed366004611cf9565b611134565b3480156105fe57600080fd5b506102c361060d366004611f07565b611162565b34801561061e57600080fd5b506102c361062d366004612014565b6111a4565b34801561063e57600080fd5b5061023461064d366004611d14565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068757600080fd5b506102c3610696366004611cf9565b6111e6565b60006001600160e01b031982166380ac58cd60e01b14806106cc57506001600160e01b03198216635b5e139f60e01b145b806106e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106fc90612212565b80601f016020809104026020016040519081016040528092919081815260200182805461072890612212565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a8261127e565b6107a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ce82610aac565b9050806001600160a01b0316836001600160a01b031614156108035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108235750610821813361064d565b155b15610841576040516367d9dca160e11b815260040160405180910390fd5b61084c8383836112b7565b505050565b61084c838383611313565b6008546001600160a01b0316331461088f5760405162461bcd60e51b8152600401610886906120fc565b60405180910390fd5b6000732d6d4cbbe680250c1fe92ecbffdbef3f891ce55360646108b34760056121b0565b6108bd919061219c565b604051600081818185875af1925050503d80600081146108f9576040519150601f19603f3d011682016040523d82523d6000602084013e6108fe565b606091505b505090508061090c57600080fd5b60007301478bb63727218ca0c874309a3b264e1d56cfff60646109304760056121b0565b61093a919061219c565b604051600081818185875af1925050503d8060008114610976576040519150601f19603f3d011682016040523d82523d6000602084013e61097b565b606091505b505090508061098957600080fd5b604051600090339047908381818185875af1925050503d80600081146109cb576040519150601f19603f3d011682016040523d82523d6000602084013e6109d0565b606091505b505090508061084c5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610886565b61084c83838360405180602001604052806000815250610f5c565b610a398160016114ef565b50565b6008546001600160a01b03163314610a665760405162461bcd60e51b8152600401610886906120fc565b600c55565b6008546001600160a01b03163314610a955760405162461bcd60e51b8152600401610886906120fc565b8051610aa8906009906020840190611bed565b5050565b6000610ab7826116a2565b5192915050565b6008546001600160a01b03163314610ae85760405162461bcd60e51b8152600401610886906120fc565b600b55565b60006001600160a01b038216610b16576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610b655760405162461bcd60e51b8152600401610886906120fc565b610b6f60006117c9565b565b6008546001600160a01b03163314610b9b5760405162461bcd60e51b8152600401610886906120fc565b60005b8151811015610aa8576000828281518110610bbb57610bbb6122a8565b60200260200101519050610bd081600161181b565b5080610bdb8161224d565b915050610b9e565b6060600380546106fc90612212565b6008546001600160a01b03163314610e2e576000610c0f33610aed565b600d5490915060ff1615610c575760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd0814185d5cd959608a1b6044820152606401610886565b60008211610cb35760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610886565b600a5461ffff16821115610d195760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610886565b600b546001546000548491900360001901610d349190612184565b1115610d775760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610886565b600a5462010000900461ffff16610d8e8383612184565b1115610ddc5760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610886565b81600c54610dea91906121b0565b341015610e2c5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610886565b505b610a39338261181b565b6001600160a01b038216331415610e625760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610edb90612212565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0790612212565b8015610f545780601f10610f2957610100808354040283529160200191610f54565b820191906000526020600020905b815481529060010190602001808311610f3757829003601f168201915b505050505081565b610f67848484611313565b6001600160a01b0383163b15158015610f895750610f8784848484611825565b155b15610fa7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610fd75760405162461bcd60e51b8152600401610886906120fc565b600d805460ff19811660ff90911615179055565b6060610ff68261127e565b61105a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610886565b600061106461191d565b9050600081511161108457604051806020016040528060008152506110af565b8061108e8461192c565b60405160200161109f92919061207d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110e05760405162461bcd60e51b8152600401610886906120fc565b610aa8828261181b565b6008546001600160a01b031633146111145760405162461bcd60e51b8152600401610886906120fc565b600a805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b03166106e7565b60005b8151811015610aa857611192828281518110611183576111836122a8565b602002602001015160016114ef565b8061119c8161224d565b915050611165565b6008546001600160a01b031633146111ce5760405162461bcd60e51b8152600401610886906120fc565b600a805461ffff191661ffff92909216919091179055565b6008546001600160a01b031633146112105760405162461bcd60e51b8152600401610886906120fc565b6001600160a01b0381166112755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610886565b610a39816117c9565b600081600111158015611292575060005482105b80156106e7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061131e826116a2565b9050836001600160a01b031681600001516001600160a01b0316146113555760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113735750611373853361064d565b8061138e5750336113838461077f565b6001600160a01b0316145b9050806113ae57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166113d557604051633a954ecd60e21b815260040160405180910390fd5b6113e1600084876112b7565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166114b55760005482146114b557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206122eb83398151915260405160405180910390a45b5050505050565b60006114fa836116a2565b80519091508215611560576000336001600160a01b03831614806115235750611523823361064d565b8061153e5750336115338661077f565b6001600160a01b0316145b90508061155e57604051632ce44b5f60e11b815260040160405180910390fd5b505b61156c600085836112b7565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661166a57600054821461166a57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206122eb833981519152908390a4505060018054810190555050565b604080516060810182526000808252602082018190529181019190915281806001111580156116d2575060005481105b156117b057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117ae5780516001600160a01b031615611745579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156117a9579392505050565b611745565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610aa88282611a29565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061185a9033908990889088906004016120ac565b602060405180830381600087803b15801561187457600080fd5b505af19250505080156118a4575060408051601f3d908101601f191682019092526118a191810190611faf565b60015b6118ff573d8080156118d2576040519150601f19603f3d011682016040523d82523d6000602084013e6118d7565b606091505b5080516118f7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106fc90612212565b6060816119505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561197a57806119648161224d565b91506119739050600a8361219c565b9150611954565b6000816001600160401b03811115611994576119946122be565b6040519080825280601f01601f1916602001820160405280156119be576020820181803683370190505b5090505b8415611915576119d36001836121cf565b91506119e0600a86612268565b6119eb906030612184565b60f81b818381518110611a0057611a006122a8565b60200101906001600160f81b031916908160001a905350611a22600a8661219c565b94506119c2565b610aa882826040518060200160405280600081525061084c83838360016000546001600160a01b038516611a6f57604051622e076360e81b815260040160405180910390fd5b83611a8d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b3957506001600160a01b0387163b15155b15611bb0575b60405182906001600160a01b038916906000906000805160206122eb833981519152908290a4611b786000888480600101955088611825565b611b95576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b3f578260005414611bab57600080fd5b611be4565b5b6040516001830192906001600160a01b038916906000906000805160206122eb833981519152908290a480821415611bb1575b506000556114e8565b828054611bf990612212565b90600052602060002090601f016020900481019282611c1b5760008555611c61565b82601f10611c3457805160ff1916838001178555611c61565b82800160010185558215611c61579182015b82811115611c61578251825591602001919060010190611c46565b50611c6d929150611c71565b5090565b5b80821115611c6d5760008155600101611c72565b60006001600160401b03831115611c9f57611c9f6122be565b611cb2601f8401601f1916602001612131565b9050828152838383011115611cc657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cf457600080fd5b919050565b600060208284031215611d0b57600080fd5b6110af82611cdd565b60008060408385031215611d2757600080fd5b611d3083611cdd565b9150611d3e60208401611cdd565b90509250929050565b600080600060608486031215611d5c57600080fd5b611d6584611cdd565b9250611d7360208501611cdd565b9150604084013590509250925092565b60008060008060808587031215611d9957600080fd5b611da285611cdd565b9350611db060208601611cdd565b92506040850135915060608501356001600160401b03811115611dd257600080fd5b8501601f81018713611de357600080fd5b611df287823560208401611c86565b91505092959194509250565b60008060408385031215611e1157600080fd5b611e1a83611cdd565b915060208301358015158114611e2f57600080fd5b809150509250929050565b60008060408385031215611e4d57600080fd5b611e5683611cdd565b946020939093013593505050565b60006020808385031215611e7757600080fd5b82356001600160401b03811115611e8d57600080fd5b8301601f81018513611e9e57600080fd5b8035611eb1611eac82612161565b612131565b80828252848201915084840188868560051b8701011115611ed157600080fd5b600094505b83851015611efb57611ee781611cdd565b835260019490940193918501918501611ed6565b50979650505050505050565b60006020808385031215611f1a57600080fd5b82356001600160401b03811115611f3057600080fd5b8301601f81018513611f4157600080fd5b8035611f4f611eac82612161565b80828252848201915084840188868560051b8701011115611f6f57600080fd5b600094505b83851015611efb578035835260019490940193918501918501611f74565b600060208284031215611fa457600080fd5b81356110af816122d4565b600060208284031215611fc157600080fd5b81516110af816122d4565b600060208284031215611fde57600080fd5b81356001600160401b03811115611ff457600080fd5b8201601f8101841361200557600080fd5b61191584823560208401611c86565b60006020828403121561202657600080fd5b813561ffff811681146110af57600080fd5b60006020828403121561204a57600080fd5b5035919050565b600081518084526120698160208601602086016121e6565b601f01601f19169290920160200192915050565b6000835161208f8184602088016121e6565b8351908301906120a38183602088016121e6565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120df90830184612051565b9695505050505050565b6020815260006110af6020830184612051565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612159576121596122be565b604052919050565b60006001600160401b0382111561217a5761217a6122be565b5060051b60200190565b600082198211156121975761219761227c565b500190565b6000826121ab576121ab612292565b500490565b60008160001904831182151516156121ca576121ca61227c565b500290565b6000828210156121e1576121e161227c565b500390565b60005b838110156122015781810151838201526020016121e9565b83811115610fa75750506000910152565b600181811c9082168061222657607f821691505b6020821081141561224757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122615761226161227c565b5060010190565b60008261227757612277612292565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a3957600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122053c9812e7a968fb16504671d1449b2cf0189bddc23ebcb0868ca0ef20a99658b64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638da5cb5b11610118578063c87b56dd116100a0578063dc33e6811161006f578063dc33e681146105d2578063dc8e92ea146105f2578063e97800cb14610612578063e985e9c514610632578063f2fde38b1461067b57600080fd5b8063c87b56dd1461055c578063cbce4c971461057c578063cef117291461059c578063d5abeb01146105bc57600080fd5b8063aa5aa2f6116100e7578063aa5aa2f6146104c3578063b88d4fde146104d8578063bbb89744146104f8578063bc951b9114610526578063c4ae31681461054757600080fd5b80638da5cb5b1461045d57806395d89b411461047b578063a0712d6814610490578063a22cb465146104a357600080fd5b806342966c681161019b5780636352211e1161016a5780636352211e146103c85780636f8b44b0146103e857806370a0823114610408578063715018a614610428578063729ad39e1461043d57600080fd5b806342966c681461034e57806344a0d68a1461036e57806355f804b31461038e5780635c975abb146103ae57600080fd5b806313faede6116101e257806313faede6146102c557806318160ddd146102e957806323b872dd146103065780633ccfd60b1461032657806342842e0e1461032e57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611f92565b61069b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106ed565b60405161024091906120e9565b34801561027757600080fd5b5061028b610286366004612038565b61077f565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611e3a565b6107c3565b005b3480156102d157600080fd5b506102db600c5481565b604051908152602001610240565b3480156102f557600080fd5b5060015460005403600019016102db565b34801561031257600080fd5b506102c3610321366004611d47565b610851565b6102c361085c565b34801561033a57600080fd5b506102c3610349366004611d47565b610a13565b34801561035a57600080fd5b506102c3610369366004612038565b610a2e565b34801561037a57600080fd5b506102c3610389366004612038565b610a3c565b34801561039a57600080fd5b506102c36103a9366004611fcc565b610a6b565b3480156103ba57600080fd5b50600d546102349060ff1681565b3480156103d457600080fd5b5061028b6103e3366004612038565b610aac565b3480156103f457600080fd5b506102c3610403366004612038565b610abe565b34801561041457600080fd5b506102db610423366004611cf9565b610aed565b34801561043457600080fd5b506102c3610b3b565b34801561044957600080fd5b506102c3610458366004611e64565b610b71565b34801561046957600080fd5b506008546001600160a01b031661028b565b34801561048757600080fd5b5061025e610be3565b6102c361049e366004612038565b610bf2565b3480156104af57600080fd5b506102c36104be366004611dfe565b610e38565b3480156104cf57600080fd5b5061025e610ece565b3480156104e457600080fd5b506102c36104f3366004611d83565b610f5c565b34801561050457600080fd5b50600a546105139061ffff1681565b60405161ffff9091168152602001610240565b34801561053257600080fd5b50600a546105139062010000900461ffff1681565b34801561055357600080fd5b506102c3610fad565b34801561056857600080fd5b5061025e610577366004612038565b610feb565b34801561058857600080fd5b506102c3610597366004611e3a565b6110b6565b3480156105a857600080fd5b506102c36105b7366004612014565b6110ea565b3480156105c857600080fd5b506102db600b5481565b3480156105de57600080fd5b506102db6105ed366004611cf9565b611134565b3480156105fe57600080fd5b506102c361060d366004611f07565b611162565b34801561061e57600080fd5b506102c361062d366004612014565b6111a4565b34801561063e57600080fd5b5061023461064d366004611d14565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068757600080fd5b506102c3610696366004611cf9565b6111e6565b60006001600160e01b031982166380ac58cd60e01b14806106cc57506001600160e01b03198216635b5e139f60e01b145b806106e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106fc90612212565b80601f016020809104026020016040519081016040528092919081815260200182805461072890612212565b80156107755780601f1061074a57610100808354040283529160200191610775565b820191906000526020600020905b81548152906001019060200180831161075857829003601f168201915b5050505050905090565b600061078a8261127e565b6107a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ce82610aac565b9050806001600160a01b0316836001600160a01b031614156108035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108235750610821813361064d565b155b15610841576040516367d9dca160e11b815260040160405180910390fd5b61084c8383836112b7565b505050565b61084c838383611313565b6008546001600160a01b0316331461088f5760405162461bcd60e51b8152600401610886906120fc565b60405180910390fd5b6000732d6d4cbbe680250c1fe92ecbffdbef3f891ce55360646108b34760056121b0565b6108bd919061219c565b604051600081818185875af1925050503d80600081146108f9576040519150601f19603f3d011682016040523d82523d6000602084013e6108fe565b606091505b505090508061090c57600080fd5b60007301478bb63727218ca0c874309a3b264e1d56cfff60646109304760056121b0565b61093a919061219c565b604051600081818185875af1925050503d8060008114610976576040519150601f19603f3d011682016040523d82523d6000602084013e61097b565b606091505b505090508061098957600080fd5b604051600090339047908381818185875af1925050503d80600081146109cb576040519150601f19603f3d011682016040523d82523d6000602084013e6109d0565b606091505b505090508061084c5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610886565b61084c83838360405180602001604052806000815250610f5c565b610a398160016114ef565b50565b6008546001600160a01b03163314610a665760405162461bcd60e51b8152600401610886906120fc565b600c55565b6008546001600160a01b03163314610a955760405162461bcd60e51b8152600401610886906120fc565b8051610aa8906009906020840190611bed565b5050565b6000610ab7826116a2565b5192915050565b6008546001600160a01b03163314610ae85760405162461bcd60e51b8152600401610886906120fc565b600b55565b60006001600160a01b038216610b16576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610b655760405162461bcd60e51b8152600401610886906120fc565b610b6f60006117c9565b565b6008546001600160a01b03163314610b9b5760405162461bcd60e51b8152600401610886906120fc565b60005b8151811015610aa8576000828281518110610bbb57610bbb6122a8565b60200260200101519050610bd081600161181b565b5080610bdb8161224d565b915050610b9e565b6060600380546106fc90612212565b6008546001600160a01b03163314610e2e576000610c0f33610aed565b600d5490915060ff1615610c575760405162461bcd60e51b815260206004820152600f60248201526e10dbdb9d1c9858dd0814185d5cd959608a1b6044820152606401610886565b60008211610cb35760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610886565b600a5461ffff16821115610d195760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610886565b600b546001546000548491900360001901610d349190612184565b1115610d775760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610886565b600a5462010000900461ffff16610d8e8383612184565b1115610ddc5760405162461bcd60e51b815260206004820152601860248201527f536f72727920796f752063616e74206d696e74206d6f726500000000000000006044820152606401610886565b81600c54610dea91906121b0565b341015610e2c5760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610886565b505b610a39338261181b565b6001600160a01b038216331415610e625760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60098054610edb90612212565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0790612212565b8015610f545780601f10610f2957610100808354040283529160200191610f54565b820191906000526020600020905b815481529060010190602001808311610f3757829003601f168201915b505050505081565b610f67848484611313565b6001600160a01b0383163b15158015610f895750610f8784848484611825565b155b15610fa7576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610fd75760405162461bcd60e51b8152600401610886906120fc565b600d805460ff19811660ff90911615179055565b6060610ff68261127e565b61105a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610886565b600061106461191d565b9050600081511161108457604051806020016040528060008152506110af565b8061108e8461192c565b60405160200161109f92919061207d565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110e05760405162461bcd60e51b8152600401610886906120fc565b610aa8828261181b565b6008546001600160a01b031633146111145760405162461bcd60e51b8152600401610886906120fc565b600a805461ffff909216620100000263ffff000019909216919091179055565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b03166106e7565b60005b8151811015610aa857611192828281518110611183576111836122a8565b602002602001015160016114ef565b8061119c8161224d565b915050611165565b6008546001600160a01b031633146111ce5760405162461bcd60e51b8152600401610886906120fc565b600a805461ffff191661ffff92909216919091179055565b6008546001600160a01b031633146112105760405162461bcd60e51b8152600401610886906120fc565b6001600160a01b0381166112755760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610886565b610a39816117c9565b600081600111158015611292575060005482105b80156106e7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061131e826116a2565b9050836001600160a01b031681600001516001600160a01b0316146113555760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806113735750611373853361064d565b8061138e5750336113838461077f565b6001600160a01b0316145b9050806113ae57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166113d557604051633a954ecd60e21b815260040160405180910390fd5b6113e1600084876112b7565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166114b55760005482146114b557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206122eb83398151915260405160405180910390a45b5050505050565b60006114fa836116a2565b80519091508215611560576000336001600160a01b03831614806115235750611523823361064d565b8061153e5750336115338661077f565b6001600160a01b0316145b90508061155e57604051632ce44b5f60e11b815260040160405180910390fd5b505b61156c600085836112b7565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661166a57600054821461166a57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206122eb833981519152908390a4505060018054810190555050565b604080516060810182526000808252602082018190529181019190915281806001111580156116d2575060005481105b156117b057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117ae5780516001600160a01b031615611745579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156117a9579392505050565b611745565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610aa88282611a29565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061185a9033908990889088906004016120ac565b602060405180830381600087803b15801561187457600080fd5b505af19250505080156118a4575060408051601f3d908101601f191682019092526118a191810190611faf565b60015b6118ff573d8080156118d2576040519150601f19603f3d011682016040523d82523d6000602084013e6118d7565b606091505b5080516118f7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546106fc90612212565b6060816119505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561197a57806119648161224d565b91506119739050600a8361219c565b9150611954565b6000816001600160401b03811115611994576119946122be565b6040519080825280601f01601f1916602001820160405280156119be576020820181803683370190505b5090505b8415611915576119d36001836121cf565b91506119e0600a86612268565b6119eb906030612184565b60f81b818381518110611a0057611a006122a8565b60200101906001600160f81b031916908160001a905350611a22600a8661219c565b94506119c2565b610aa882826040518060200160405280600081525061084c83838360016000546001600160a01b038516611a6f57604051622e076360e81b815260040160405180910390fd5b83611a8d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b3957506001600160a01b0387163b15155b15611bb0575b60405182906001600160a01b038916906000906000805160206122eb833981519152908290a4611b786000888480600101955088611825565b611b95576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b3f578260005414611bab57600080fd5b611be4565b5b6040516001830192906001600160a01b038916906000906000805160206122eb833981519152908290a480821415611bb1575b506000556114e8565b828054611bf990612212565b90600052602060002090601f016020900481019282611c1b5760008555611c61565b82601f10611c3457805160ff1916838001178555611c61565b82800160010185558215611c61579182015b82811115611c61578251825591602001919060010190611c46565b50611c6d929150611c71565b5090565b5b80821115611c6d5760008155600101611c72565b60006001600160401b03831115611c9f57611c9f6122be565b611cb2601f8401601f1916602001612131565b9050828152838383011115611cc657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611cf457600080fd5b919050565b600060208284031215611d0b57600080fd5b6110af82611cdd565b60008060408385031215611d2757600080fd5b611d3083611cdd565b9150611d3e60208401611cdd565b90509250929050565b600080600060608486031215611d5c57600080fd5b611d6584611cdd565b9250611d7360208501611cdd565b9150604084013590509250925092565b60008060008060808587031215611d9957600080fd5b611da285611cdd565b9350611db060208601611cdd565b92506040850135915060608501356001600160401b03811115611dd257600080fd5b8501601f81018713611de357600080fd5b611df287823560208401611c86565b91505092959194509250565b60008060408385031215611e1157600080fd5b611e1a83611cdd565b915060208301358015158114611e2f57600080fd5b809150509250929050565b60008060408385031215611e4d57600080fd5b611e5683611cdd565b946020939093013593505050565b60006020808385031215611e7757600080fd5b82356001600160401b03811115611e8d57600080fd5b8301601f81018513611e9e57600080fd5b8035611eb1611eac82612161565b612131565b80828252848201915084840188868560051b8701011115611ed157600080fd5b600094505b83851015611efb57611ee781611cdd565b835260019490940193918501918501611ed6565b50979650505050505050565b60006020808385031215611f1a57600080fd5b82356001600160401b03811115611f3057600080fd5b8301601f81018513611f4157600080fd5b8035611f4f611eac82612161565b80828252848201915084840188868560051b8701011115611f6f57600080fd5b600094505b83851015611efb578035835260019490940193918501918501611f74565b600060208284031215611fa457600080fd5b81356110af816122d4565b600060208284031215611fc157600080fd5b81516110af816122d4565b600060208284031215611fde57600080fd5b81356001600160401b03811115611ff457600080fd5b8201601f8101841361200557600080fd5b61191584823560208401611c86565b60006020828403121561202657600080fd5b813561ffff811681146110af57600080fd5b60006020828403121561204a57600080fd5b5035919050565b600081518084526120698160208601602086016121e6565b601f01601f19169290920160200192915050565b6000835161208f8184602088016121e6565b8351908301906120a38183602088016121e6565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120df90830184612051565b9695505050505050565b6020815260006110af6020830184612051565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715612159576121596122be565b604052919050565b60006001600160401b0382111561217a5761217a6122be565b5060051b60200190565b600082198211156121975761219761227c565b500190565b6000826121ab576121ab612292565b500490565b60008160001904831182151516156121ca576121ca61227c565b500290565b6000828210156121e1576121e161227c565b500390565b60005b838110156122015781810151838201526020016121e9565b83811115610fa75750506000910152565b600181811c9082168061222657607f821691505b6020821081141561224757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156122615761226161227c565b5060010190565b60008261227757612277612292565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a3957600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa264697066735822122053c9812e7a968fb16504671d1449b2cf0189bddc23ebcb0868ca0ef20a99658b64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUrl (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44728:4156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26943:305;;;;;;;;;;-1:-1:-1;26943:305:0;;;;;:::i;:::-;;:::i;:::-;;;7728:14:1;;7721:22;7703:41;;7691:2;7676:18;26943:305:0;;;;;;;;30056:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31559:204::-;;;;;;;;;;-1:-1:-1;31559:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7026:32:1;;;7008:51;;6996:2;6981:18;31559:204:0;6862:203:1;31122:371:0;;;;;;;;;;-1:-1:-1;31122:371:0;;;;;:::i;:::-;;:::i;:::-;;45040:32;;;;;;;;;;;;;;;;;;;12048:25:1;;;12036:2;12021:18;45040:32:0;11902:177:1;26192:303:0;;;;;;;;;;-1:-1:-1;26049:1:0;26446:12;26236:7;26430:13;:28;-1:-1:-1;;26430:46:0;26192:303;;32424:170;;;;;;;;;;-1:-1:-1;32424:170:0;;;;;:::i;:::-;;:::i;48401:480::-;;;:::i;32665:185::-;;;;;;;;;;-1:-1:-1;32665:185:0;;;;;:::i;:::-;;:::i;47603:94::-;;;;;;;;;;-1:-1:-1;47603:94:0;;;;;:::i;:::-;;:::i;47277:86::-;;;;;;;;;;-1:-1:-1;47277:86:0;;;;;:::i;:::-;;:::i;48074:108::-;;;;;;;;;;-1:-1:-1;48074:108:0;;;;;:::i;:::-;;:::i;45096:25::-;;;;;;;;;;-1:-1:-1;45096:25:0;;;;;;;;29864:125;;;;;;;;;;-1:-1:-1;29864:125:0;;;;;:::i;:::-;;:::i;47972:94::-;;;;;;;;;;-1:-1:-1;47972:94:0;;;;;:::i;:::-;;:::i;27312:206::-;;;;;;;;;;-1:-1:-1;27312:206:0;;;;;:::i;:::-;;:::i;4675:103::-;;;;;;;;;;;;;:::i;46420:234::-;;;;;;;;;;-1:-1:-1;46420:234:0;;;;;:::i;:::-;;:::i;4024:87::-;;;;;;;;;;-1:-1:-1;4097:6:0;;-1:-1:-1;;;;;4097:6:0;4024:87;;30225:104;;;;;;;;;;;;;:::i;45386:907::-;;;;;;:::i;:::-;;:::i;31835:287::-;;;;;;;;;;-1:-1:-1;31835:287:0;;;;;:::i;:::-;;:::i;44804:25::-;;;;;;;;;;;;;:::i;32921:369::-;;;;;;;;;;-1:-1:-1;32921:369:0;;;;;:::i;:::-;;:::i;44866:46::-;;;;;;;;;;-1:-1:-1;44866:46:0;;;;;;;;;;;11883:6:1;11871:19;;;11853:38;;11841:2;11826:18;44866:46:0;11709:188:1;44919:41:0;;;;;;;;;;-1:-1:-1;44919:41:0;;;;;;;;;;;48190:75;;;;;;;;;;;;;:::i;46782:487::-;;;;;;;;;;-1:-1:-1;46782:487:0;;;;;:::i;:::-;;:::i;46301:111::-;;;;;;;;;;-1:-1:-1;46301:111:0;;;;;:::i;:::-;;:::i;47845:119::-;;;;;;;;;;-1:-1:-1;47845:119:0;;;;;:::i;:::-;;:::i;44986:31::-;;;;;;;;;;;;;;;;45250:113;;;;;;;;;;-1:-1:-1;45250:113:0;;;;;:::i;:::-;;:::i;47394:201::-;;;;;;;;;;-1:-1:-1;47394:201:0;;;;;:::i;:::-;;:::i;47708:129::-;;;;;;;;;;-1:-1:-1;47708:129:0;;;;;:::i;:::-;;:::i;32193:164::-;;;;;;;;;;-1:-1:-1;32193:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32314:25:0;;;32290:4;32314:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32193:164;4933:201;;;;;;;;;;-1:-1:-1;4933:201:0;;;;;:::i;:::-;;:::i;26943:305::-;27045:4;-1:-1:-1;;;;;;27082:40:0;;-1:-1:-1;;;27082:40:0;;:105;;-1:-1:-1;;;;;;;27139:48:0;;-1:-1:-1;;;27139:48:0;27082:105;:158;;;-1:-1:-1;;;;;;;;;;16917:40:0;;;27204:36;27062:178;26943:305;-1:-1:-1;;26943:305:0:o;30056:100::-;30110:13;30143:5;30136:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30056:100;:::o;31559:204::-;31627:7;31652:16;31660:7;31652;:16::i;:::-;31647:64;;31677:34;;-1:-1:-1;;;31677:34:0;;;;;;;;;;;31647:64;-1:-1:-1;31731:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31731:24:0;;31559:204::o;31122:371::-;31195:13;31211:24;31227:7;31211:15;:24::i;:::-;31195:40;;31256:5;-1:-1:-1;;;;;31250:11:0;:2;-1:-1:-1;;;;;31250:11:0;;31246:48;;;31270:24;;-1:-1:-1;;;31270:24:0;;;;;;;;;;;31246:48;2828:10;-1:-1:-1;;;;;31311:21:0;;;;;;:63;;-1:-1:-1;31337:37:0;31354:5;2828:10;32193:164;:::i;31337:37::-;31336:38;31311:63;31307:138;;;31398:35;;-1:-1:-1;;;31398:35:0;;;;;;;;;;;31307:138;31457:28;31466:2;31470:7;31479:5;31457:8;:28::i;:::-;31184:309;31122:371;;:::o;32424:170::-;32558:28;32568:4;32574:2;32578:7;32558:9;:28::i;48401:480::-;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;;;;;;;;;48460:7:::1;48481:42;48565:3;48537:25;:21;48561:1;48537:25;:::i;:::-;:31;;;;:::i;:::-;48473:100;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48459:114;;;48592:2;48584:11;;;::::0;::::1;;48609:7;48630:42;48714:3;48686:25;:21;48710:1;48686:25;:::i;:::-;:31;;;;:::i;:::-;48622:100;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48608:114;;;48741:2;48733:11;;;::::0;::::1;;48776:49;::::0;48758:12:::1;::::0;48776:10:::1;::::0;48799:21:::1;::::0;48758:12;48776:49;48758:12;48776:49;48799:21;48776:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48757:68;;;48844:7;48836:35;;;::::0;-1:-1:-1;;;48836:35:0;;8935:2:1;48836:35:0::1;::::0;::::1;8917:21:1::0;8974:2;8954:18;;;8947:30;-1:-1:-1;;;8993:18:1;;;8986:45;9048:18;;48836:35:0::1;8733:339:1::0;32665:185:0;32803:39;32820:4;32826:2;32830:7;32803:39;;;;;;;;;;;;:16;:39::i;47603:94::-;47664:25;47670:12;47684:4;47664:5;:25::i;:::-;47603:94;:::o;47277:86::-;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;47340:4:::1;:15:::0;47277:86::o;48074:108::-;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;48149:25;;::::1;::::0;:11:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48074:108:::0;:::o;29864:125::-;29928:7;29955:21;29968:7;29955:12;:21::i;:::-;:26;;29864:125;-1:-1:-1;;29864:125:0:o;47972:94::-;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;48039:9:::1;:19:::0;47972:94::o;27312:206::-;27376:7;-1:-1:-1;;;;;27400:19:0;;27396:60;;27428:28;;-1:-1:-1;;;27428:28:0;;;;;;;;;;;27396:60;-1:-1:-1;;;;;;27482:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27482:27:0;;27312:206::o;4675:103::-;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;4740:30:::1;4767:1;4740:18;:30::i;:::-;4675:103::o:0;46420:234::-;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;46506:9:::1;46501:146;46525:17;:24;46521:1;:28;46501:146;;;46571:10;46584:17;46602:1;46584:20;;;;;;;;:::i;:::-;;;;;;;46571:33;;46619:16;46629:2;46633:1;46619:9;:16::i;:::-;-1:-1:-1::0;46551:3:0;::::1;::::0;::::1;:::i;:::-;;;;46501:146;;30225:104:::0;30281:13;30314:7;30307:14;;;;;:::i;45386:907::-;4097:6;;-1:-1:-1;;;;;4097:6:0;45451:10;:21;45447:794;;45489:23;45515:21;45525:10;45515:9;:21::i;:::-;45562:6;;45489:47;;-1:-1:-1;45562:6:0;;45561:7;45553:35;;;;-1:-1:-1;;;45553:35:0;;11214:2:1;45553:35:0;;;11196:21:1;11253:2;11233:18;;;11226:30;-1:-1:-1;;;11272:18:1;;;11265:45;11327:18;;45553:35:0;11012:339:1;45553:35:0;45625:1;45611:11;:15;45603:64;;;;-1:-1:-1;;;45603:64:0;;10809:2:1;45603:64:0;;;10791:21:1;10848:2;10828:18;;;10821:30;10887:34;10867:18;;;10860:62;-1:-1:-1;;;10938:18:1;;;10931:34;10982:19;;45603:64:0;10607:400:1;45603:64:0;45723:27;;;;45708:42;;;45682:143;;;;-1:-1:-1;;;45682:143:0;;9624:2:1;45682:143:0;;;9606:21:1;9663:2;9643:18;;;9636:30;9702:34;9682:18;;;9675:62;-1:-1:-1;;;9753:18:1;;;9746:37;9800:19;;45682:143:0;9422:403:1;45682:143:0;45897:9;;26049:1;26446:12;26236:7;26430:13;45882:11;;26430:28;;-1:-1:-1;;26430:46:0;45866:27;;;;:::i;:::-;:40;;45840:120;;;;-1:-1:-1;;;45840:120:0;;8181:2:1;45840:120:0;;;8163:21:1;8220:2;8200:18;;;8193:30;-1:-1:-1;;;8239:18:1;;;8232:48;8297:18;;45840:120:0;7979:342:1;45840:120:0;46036:22;;;;;;;46002:29;46020:11;46002:15;:29;:::i;:::-;46001:57;;45975:143;;;;-1:-1:-1;;;45975:143:0;;11558:2:1;45975:143:0;;;11540:21:1;11597:2;11577:18;;;11570:30;11636:26;11616:18;;;11609:54;11680:18;;45975:143:0;11356:348:1;45975:143:0;46179:11;46172:4;;:18;;;;:::i;:::-;46159:9;:31;;46133:96;;;;-1:-1:-1;;;46133:96:0;;9279:2:1;46133:96:0;;;9261:21:1;9318:2;9298:18;;;9291:30;-1:-1:-1;;;9337:18:1;;;9330:46;9393:18;;46133:96:0;9077:340:1;46133:96:0;45474:767;45447:794;46251:34;46261:10;46273:11;46251:9;:34::i;31835:287::-;-1:-1:-1;;;;;31934:24:0;;2828:10;31934:24;31930:54;;;31967:17;;-1:-1:-1;;;31967:17:0;;;;;;;;;;;31930:54;2828:10;31997:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31997:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31997:53:0;;;;;;;;;;32066:48;;7703:41:1;;;31997:42:0;;2828:10;32066:48;;7676:18:1;32066:48:0;;;;;;;31835:287;;:::o;44804:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32921:369::-;33088:28;33098:4;33104:2;33108:7;33088:9;:28::i;:::-;-1:-1:-1;;;;;33131:13:0;;7020:19;:23;;33131:76;;;;;33151:56;33182:4;33188:2;33192:7;33201:5;33151:30;:56::i;:::-;33150:57;33131:76;33127:156;;;33231:40;;-1:-1:-1;;;33231:40:0;;;;;;;;;;;33127:156;32921:369;;;;:::o;48190:75::-;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;48251:6:::1;::::0;;-1:-1:-1;;48241:16:0;::::1;48251:6;::::0;;::::1;48250:7;48241:16;::::0;;48190:75::o;46782:487::-;46900:13;46953:16;46961:7;46953;:16::i;:::-;46931:113;;;;-1:-1:-1;;;46931:113:0;;10393:2:1;46931:113:0;;;10375:21:1;10432:2;10412:18;;;10405:30;10471:34;10451:18;;;10444:62;-1:-1:-1;;;10522:18:1;;;10515:45;10577:19;;46931:113:0;10191:411:1;46931:113:0;47055:28;47086:10;:8;:10::i;:::-;47055:41;;47158:1;47133:14;47127:28;:32;:134;;;;;;;;;;;;;;;;;47203:14;47219:18;:7;:16;:18::i;:::-;47186:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47127:134;47107:154;46782:487;-1:-1:-1;;;46782:487:0:o;46301:111::-;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;46377:27:::1;46387:3;46392:11;46377:9;:27::i;47845:119::-:0;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;47924:22:::1;:32:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;47924:32:0;;::::1;::::0;;;::::1;::::0;;47845:119::o;45250:113::-;-1:-1:-1;;;;;27696:19:0;;45308:7;27696:19;;;:12;:19;;;;;:32;-1:-1:-1;;;27696:32:0;;-1:-1:-1;;;;;27696:32:0;45335:20;27600:137;47394:201;47479:9;47475:113;47498:13;:20;47494:1;:24;47475:113;;;47543:29;47549:13;47563:1;47549:16;;;;;;;;:::i;:::-;;;;;;;47567:4;47543:5;:29::i;:::-;47520:3;;;;:::i;:::-;;;;47475:113;;47708:129;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;47792:27:::1;:37:::0;;-1:-1:-1;;47792:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47708:129::o;4933:201::-;4097:6;;-1:-1:-1;;;;;4097:6:0;2828:10;4244:23;4236:68;;;;-1:-1:-1;;;4236:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5022:22:0;::::1;5014:73;;;::::0;-1:-1:-1;;;5014:73:0;;8528:2:1;5014: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;;5014:73:0::1;8326:402:1::0;5014:73:0::1;5098:28;5117:8;5098:18;:28::i;33545:187::-:0;33602:4;33645:7;26049:1;33626:26;;:53;;;;;33666:13;;33656:7;:23;33626:53;:98;;;;-1:-1:-1;;33697:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33697:27:0;;;;33696:28;;33545:187::o;41715:196::-;41830:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41830:29:0;-1:-1:-1;;;;;41830:29:0;;;;;;;;;41875:28;;41830:24;;41875:28;;;;;;;41715:196;;;:::o;36658:2130::-;36773:35;36811:21;36824:7;36811:12;:21::i;:::-;36773:59;;36871:4;-1:-1:-1;;;;;36849:26:0;:13;:18;;;-1:-1:-1;;;;;36849:26:0;;36845:67;;36884:28;;-1:-1:-1;;;36884:28:0;;;;;;;;;;;36845:67;36925:22;2828:10;-1:-1:-1;;;;;36951:20:0;;;;:73;;-1:-1:-1;36988:36:0;37005:4;2828:10;32193:164;:::i;36988:36::-;36951:126;;;-1:-1:-1;2828:10:0;37041:20;37053:7;37041:11;:20::i;:::-;-1:-1:-1;;;;;37041:36:0;;36951:126;36925:153;;37096:17;37091:66;;37122:35;;-1:-1:-1;;;37122:35:0;;;;;;;;;;;37091:66;-1:-1:-1;;;;;37172:16:0;;37168:52;;37197:23;;-1:-1:-1;;;37197:23:0;;;;;;;;;;;37168:52;37341:35;37358:1;37362:7;37371:4;37341:8;:35::i;:::-;-1:-1:-1;;;;;37672:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37672:31:0;;;-1:-1:-1;;;;;37672:31:0;;;-1:-1:-1;;37672:31:0;;;;;;;37718:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37718:29:0;;;;;;;;;;;37798:20;;;:11;:20;;;;;;37833:18;;-1:-1:-1;;;;;;37866:49:0;;;;-1:-1:-1;;;37899:15:0;37866:49;;;;;;;;;;38189:11;;38249:24;;;;;38292:13;;37798:20;;38249:24;;38292:13;38288:384;;38502:13;;38487:11;:28;38483:174;;38540:20;;38609:28;;;;-1:-1:-1;;;;;38583:54:0;-1:-1:-1;;;38583:54:0;-1:-1:-1;;;;;;38583:54:0;;;-1:-1:-1;;;;;38540:20:0;;38583:54;;;;38483:174;37647:1036;;;38719:7;38715:2;-1:-1:-1;;;;;38700:27:0;38709:4;-1:-1:-1;;;;;38700:27:0;-1:-1:-1;;;;;;;;;;;38700:27:0;;;;;;;;;38738:42;36762:2026;;36658:2130;;;:::o;39189:2408::-;39269:35;39307:21;39320:7;39307:12;:21::i;:::-;39356:18;;39269:59;;-1:-1:-1;39387:290:0;;;;39421:22;2828:10;-1:-1:-1;;;;;39447:20:0;;;;:77;;-1:-1:-1;39488:36:0;39505:4;2828:10;32193:164;:::i;39488:36::-;39447:134;;;-1:-1:-1;2828:10:0;39545:20;39557:7;39545:11;:20::i;:::-;-1:-1:-1;;;;;39545:36:0;;39447:134;39421:161;;39604:17;39599:66;;39630:35;;-1:-1:-1;;;39630:35:0;;;;;;;;;;;39599:66;39406:271;39387:290;39805:35;39822:1;39826:7;39835:4;39805:8;:35::i;:::-;-1:-1:-1;;;;;40170:18:0;;;40136:31;40170:18;;;:12;:18;;;;;;;;40203:24;;-1:-1:-1;;;;;;;;;;40203:24:0;;;;;;;;;-1:-1:-1;;40203:24:0;;;;40242:29;;;;;40226:1;40242:29;;;;;;;;-1:-1:-1;;40242:29:0;;;;;;;;;;40404:20;;;:11;:20;;;;;;40439;;-1:-1:-1;;;;40507:15:0;40474:49;;;-1:-1:-1;;;40474:49:0;-1:-1:-1;;;;;;40474:49:0;;;;;;;;;;40538:22;-1:-1:-1;;;40538:22:0;;;40830:11;;;40890:24;;;;;40933:13;;40170:18;;40890:24;;40933:13;40929:384;;41143:13;;41128:11;:28;41124:174;;41181:20;;41250:28;;;;-1:-1:-1;;;;;41224:54:0;-1:-1:-1;;;41224:54:0;-1:-1:-1;;;;;;41224:54:0;;;-1:-1:-1;;;;;41181:20:0;;41224:54;;;;41124:174;-1:-1:-1;;41341:35:0;;41368:7;;-1:-1:-1;41364:1:0;;-1:-1:-1;;;;;;41341:35:0;;;-1:-1:-1;;;;;;;;;;;41341:35:0;41364:1;;41341:35;-1:-1:-1;;41564:12:0;:14;;;;;;-1:-1:-1;;39189:2408:0:o;28693:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28804:7:0;;26049:1;28853:23;;:47;;;;;28887:13;;28880:4;:20;28853:47;28849:886;;;28921:31;28955:17;;;:11;:17;;;;;;;;;28921:51;;;;;;;;;-1:-1:-1;;;;;28921:51:0;;;;-1:-1:-1;;;28921:51:0;;-1:-1:-1;;;;;28921:51:0;;;;;;;;-1:-1:-1;;;28921:51:0;;;;;;;;;;;;;;28991:729;;29041:14;;-1:-1:-1;;;;;29041:28:0;;29037:101;;29105:9;28693:1109;-1:-1:-1;;;28693:1109:0:o;29037:101::-;-1:-1:-1;;;29480:6:0;29525:17;;;;:11;:17;;;;;;;;;29513:29;;;;;;;;;-1:-1:-1;;;;;29513:29:0;;;;;-1:-1:-1;;;29513:29:0;;-1:-1:-1;;;;;29513:29:0;;;;;;;;-1:-1:-1;;;29513:29:0;;;;;;;;;;;;;29573:28;29569:109;;29641:9;28693:1109;-1:-1:-1;;;28693:1109:0:o;29569:109::-;29440:261;;;28902:833;28849:886;29763:31;;-1:-1:-1;;;29763:31:0;;;;;;;;;;;5294:191;5387:6;;;-1:-1:-1;;;;;5404:17:0;;;-1:-1:-1;;;;;;5404:17:0;;;;;;;5437:40;;5387:6;;;5404:17;5387:6;;5437:40;;5368:16;;5437:40;5357:128;5294:191;:::o;48273:120::-;48352:33;48362:9;48373:11;48352:9;:33::i;42403:667::-;42587:72;;-1:-1:-1;;;42587:72:0;;42566:4;;-1:-1:-1;;;;;42587:36:0;;;;;:72;;2828:10;;42638:4;;42644:7;;42653:5;;42587:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42587:72:0;;;;;;;;-1:-1:-1;;42587:72:0;;;;;;;;;;;;:::i;:::-;;;42583:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42821:13:0;;42817:235;;42867:40;;-1:-1:-1;;;42867:40:0;;;;;;;;;;;42817:235;43010:6;43004:13;42995:6;42991:2;42987:15;42980:38;42583:480;-1:-1:-1;;;;;;42706:55:0;-1:-1:-1;;;42706:55:0;;-1:-1:-1;42583:480:0;42403:667;;;;;;:::o;46662:112::-;46722:13;46755:11;46748:18;;;;;:::i;310:723::-;366:13;587:10;583:53;;-1:-1:-1;;614:10:0;;;;;;;;;;;;-1:-1:-1;;;614:10:0;;;;;310:723::o;583:53::-;661:5;646:12;702:78;709:9;;702:78;;735:8;;;;:::i;:::-;;-1:-1:-1;758:10:0;;-1:-1:-1;766:2:0;758:10;;:::i;:::-;;;702:78;;;790:19;822:6;-1:-1:-1;;;;;812:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;812:17:0;;790:39;;840:154;847:10;;840:154;;874:11;884:1;874:11;;:::i;:::-;;-1:-1:-1;943:10:0;951:2;943:5;:10;:::i;:::-;930:24;;:2;:24;:::i;:::-;917:39;;900:6;907;900:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;900:56:0;;;;;;;;-1:-1:-1;971:11:0;980:2;971:11;;:::i;:::-;;;840:154;;33740:104;33809:27;33819:2;33823:8;33809:27;;;;;;;;;;;;34330:32;34336:2;34340:8;34350:5;34357:4;34768:20;34791:13;-1:-1:-1;;;;;34819:16:0;;34815:48;;34844:19;;-1:-1:-1;;;34844:19:0;;;;;;;;;;;34815:48;34878:13;34874:44;;34900:18;;-1:-1:-1;;;34900:18:0;;;;;;;;;;;34874:44;-1:-1:-1;;;;;35269:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35328:49:0;;-1:-1:-1;;;;;35269:44:0;;;;;;;35328:49;;;-1:-1:-1;;;;;35269:44:0;;;;;;35328:49;;;;;;;;;;;;;;;;35394:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35444:66:0;;;;-1:-1:-1;;;35494:15:0;35444:66;;;;;;;;;;35394:25;35591:23;;;35635:4;:23;;;;-1:-1:-1;;;;;;35643:13:0;;7020:19;:23;;35643:15;35631:641;;;35679:314;35710:38;;35735:12;;-1:-1:-1;;;;;35710:38:0;;;35727:1;;-1:-1:-1;;;;;;;;;;;35710:38:0;35727:1;;35710:38;35776:69;35815:1;35819:2;35823:14;;;;;;35839:5;35776:30;:69::i;:::-;35771:174;;35881:40;;-1:-1:-1;;;35881:40:0;;;;;;;;;;;35771:174;35988:3;35972:12;:19;;35679:314;;36074:12;36057:13;;:29;36053:43;;36088:8;;;36053:43;35631:641;;;36137:120;36168:40;;36193:14;;;;;-1:-1:-1;;;;;36168:40:0;;;36185:1;;-1:-1:-1;;;;;;;;;;;36168:40:0;36185:1;;36168:40;36252:3;36236:12;:19;;36137:120;;35631:641;-1:-1:-1;36286:13:0;:28;36336:60;32921:369;-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;9830:356::-;10032:2;10014:21;;;10051:18;;;10044:30;10110:34;10105:2;10090:18;;10083:62;10177:2;10162:18;;9830:356::o;12084:275::-;12155:2;12149:9;12220:2;12201:13;;-1:-1:-1;;12197:27:1;12185:40;;-1:-1:-1;;;;;12240:34:1;;12276:22;;;12237:62;12234:88;;;12302:18;;:::i;:::-;12338:2;12331:22;12084:275;;-1:-1:-1;12084:275:1:o;12364:183::-;12424:4;-1:-1:-1;;;;;12449:6:1;12446:30;12443:56;;;12479:18;;:::i;:::-;-1:-1:-1;12524:1:1;12520:14;12536:4;12516:25;;12364:183::o;12552:128::-;12592:3;12623:1;12619:6;12616:1;12613:13;12610:39;;;12629:18;;:::i;:::-;-1:-1:-1;12665:9:1;;12552:128::o;12685:120::-;12725:1;12751;12741:35;;12756:18;;:::i;:::-;-1:-1:-1;12790:9:1;;12685:120::o;12810:168::-;12850:7;12916:1;12912;12908:6;12904:14;12901:1;12898:21;12893:1;12886:9;12879:17;12875:45;12872:71;;;12923:18;;:::i;:::-;-1:-1:-1;12963:9:1;;12810:168::o;12983:125::-;13023:4;13051:1;13048;13045:8;13042:34;;;13056:18;;:::i;:::-;-1:-1:-1;13093:9:1;;12983:125::o;13113:258::-;13185:1;13195:113;13209:6;13206:1;13203:13;13195:113;;;13285:11;;;13279:18;13266:11;;;13259:39;13231:2;13224:10;13195:113;;;13326:6;13323:1;13320:13;13317:48;;;-1:-1:-1;;13361:1:1;13343:16;;13336:27;13113:258::o;13376:380::-;13455:1;13451:12;;;;13498;;;13519:61;;13573:4;13565:6;13561:17;13551:27;;13519:61;13626:2;13618:6;13615:14;13595:18;13592:38;13589:161;;;13672:10;13667:3;13663:20;13660:1;13653:31;13707:4;13704:1;13697:15;13735:4;13732:1;13725:15;13589:161;;13376:380;;;:::o;13761:135::-;13800:3;-1:-1:-1;;13821:17:1;;13818:43;;;13841:18;;:::i;:::-;-1:-1:-1;13888:1:1;13877:13;;13761:135::o;13901:112::-;13933:1;13959;13949:35;;13964:18;;:::i;:::-;-1:-1:-1;13998:9:1;;13901:112::o;14018:127::-;14079:10;14074:3;14070:20;14067:1;14060:31;14110:4;14107:1;14100:15;14134:4;14131:1;14124:15;14150:127;14211:10;14206:3;14202:20;14199:1;14192:31;14242:4;14239:1;14232:15;14266:4;14263:1;14256:15;14282:127;14343:10;14338:3;14334:20;14331:1;14324:31;14374:4;14371:1;14364:15;14398:4;14395:1;14388:15;14414:127;14475:10;14470:3;14466:20;14463:1;14456:31;14506:4;14503:1;14496:15;14530:4;14527:1;14520:15;14546:131;-1:-1:-1;;;;;;14620:32:1;;14610:43;;14600:71;;14667:1;14664;14657:12

Swarm Source

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