ETH Price: $2,517.62 (+3.14%)

Token

Okay Paint Bears (OKPB)
 

Overview

Max Total Supply

667 OKPB

Holders

113

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OKPB
0x6aeef79942c292551f47c88e24bcb7b3deed7726
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

555 Happy Little Painted Bears, designed by Bear Ross in MS Paint

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
okay_paint_bears

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-19
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;







/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

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

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override 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) if (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) if(!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()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _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 (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 Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _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;

            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 Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

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

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

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

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

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

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

// File: okaypaintbears_flat.sol



pragma solidity ^0.8.4;




contract okay_paint_bears is ERC721A, Ownable {
    uint256 public MAX_MINTS = 21;
    uint256 public MAX_PER_TX = 6;
    uint256 public MAX_SUPPLY;
    uint256 public mintRate = 0.0069 ether;
    bool    public saleIsActive = true;
    using Strings for uint256;
    string public baseURI;

    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI_,
        uint256 maxSupply_
    ) ERC721A(name, symbol) {
        require(maxSupply_ > 0, "INVALID_SUPPLY");
        baseURI = baseTokenURI_;
        MAX_SUPPLY = maxSupply_;
    }

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(saleIsActive, "Sale must be active to mint");
        require(quantity < MAX_PER_TX, "Exceeded the TX limit");
        require(quantity + _numberMinted(msg.sender) < MAX_MINTS, "Exceeded the wallet limit");
        require(totalSupply() + quantity < MAX_SUPPLY, "Not enough tokens left");
        require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        _safeMint(msg.sender, quantity);
    }

    function setWalletLimit(uint256 _newWalletLimit) public onlyOwner{
        MAX_MINTS = _newWalletLimit;
    }

    function setTXLimit(uint256 _newTXLimit) public onlyOwner{
        MAX_PER_TX = _newTXLimit;
    }

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }
    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "URI query for nonexistent token");

        return string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"));
    }

    function changeSupplyAmount (uint256 _amount) public onlyOwner () {
        MAX_SUPPLY = _amount;
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI_","type":"string"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"changeSupplyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTXLimit","type":"uint256"}],"name":"setTXLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletLimit","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260156009556006600a556618838370f34000600c556001600d60006101000a81548160ff0219169083151502179055503480156200004157600080fd5b5060405162003b4b38038062003b4b83398181016040528101906200006791906200034f565b838381600290805190602001906200008192919062000216565b5080600390805190602001906200009a92919062000216565b50620000ab6200014360201b60201c565b6000819055505050620000d3620000c76200014860201b60201c565b6200015060201b60201c565b6000811162000119576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000110906200042d565b60405180910390fd5b81600e90805190602001906200013192919062000216565b5080600b81905550505050506200061d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022490620004ff565b90600052602060002090601f01602090048101928262000248576000855562000294565b82601f106200026357805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029357825182559160200191906001019062000276565b5b509050620002a39190620002a7565b5090565b5b80821115620002c2576000816000905550600101620002a8565b5090565b6000620002dd620002d78462000478565b6200044f565b905082815260208101848484011115620002f657600080fd5b62000303848285620004c9565b509392505050565b600082601f8301126200031d57600080fd5b81516200032f848260208601620002c6565b91505092915050565b600081519050620003498162000603565b92915050565b600080600080608085870312156200036657600080fd5b600085015167ffffffffffffffff8111156200038157600080fd5b6200038f878288016200030b565b945050602085015167ffffffffffffffff811115620003ad57600080fd5b620003bb878288016200030b565b935050604085015167ffffffffffffffff811115620003d957600080fd5b620003e7878288016200030b565b9250506060620003fa8782880162000338565b91505092959194509250565b600062000415600e83620004ae565b91506200042282620005da565b602082019050919050565b60006020820190508181036000830152620004488162000406565b9050919050565b60006200045b6200046e565b905062000469828262000535565b919050565b6000604051905090565b600067ffffffffffffffff8211156200049657620004956200059a565b5b620004a182620005c9565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b83811015620004e9578082015181840152602081019050620004cc565b83811115620004f9576000848401525b50505050565b600060028204905060018216806200051857607f821691505b602082108114156200052f576200052e6200056b565b5b50919050565b6200054082620005c9565b810181811067ffffffffffffffff821117156200056257620005616200059a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f494e56414c49445f535550504c59000000000000000000000000000000000000600082015250565b6200060e81620004bf565b81146200061a57600080fd5b50565b61351e806200062d6000396000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063cce132d111610095578063eb8d244411610064578063eb8d244414610634578063f1d5f5171461065f578063f2fde38b14610688578063f43a22dc146106b1576101cd565b8063cce132d11461057a578063d1320f7b146105a5578063dbe2193f146105ce578063e985e9c5146105f7576101cd565b8063a22cb465116100d1578063a22cb465146104c0578063b88d4fde146104e9578063c87b56dd14610512578063ca0dcf161461054f576101cd565b80638da5cb5b1461044e57806395d89b4114610479578063a0712d68146104a4576101cd565b806332cb6b0c1161016f5780636352211e1161013e5780636352211e146103925780636c0360eb146103cf57806370a08231146103fa578063715018a614610437576101cd565b806332cb6b0c1461031d57806334918dfd146103485780633ccfd60b1461035f57806342842e0e14610369576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063076de9841461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612a73565b6106dc565b6040516102069190612d8f565b60405180910390f35b34801561021b57600080fd5b506102246107be565b6040516102319190612daa565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ac5565b610850565b005b34801561026f57600080fd5b5061028a60048036038101906102859190612ac5565b6108d6565b6040516102979190612d28565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612a37565b610952565b005b3480156102d557600080fd5b506102de610a57565b6040516102eb9190612ecc565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612931565b610a6e565b005b34801561032957600080fd5b50610332610a7e565b60405161033f9190612ecc565b60405180910390f35b34801561035457600080fd5b5061035d610a84565b005b610367610b2c565b005b34801561037557600080fd5b50610390600480360381019061038b9190612931565b610bf8565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612ac5565b610c18565b6040516103c69190612d28565b60405180910390f35b3480156103db57600080fd5b506103e4610c2e565b6040516103f19190612daa565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906128cc565b610cbc565b60405161042e9190612ecc565b60405180910390f35b34801561044357600080fd5b5061044c610d8c565b005b34801561045a57600080fd5b50610463610e14565b6040516104709190612d28565b60405180910390f35b34801561048557600080fd5b5061048e610e3e565b60405161049b9190612daa565b60405180910390f35b6104be60048036038101906104b99190612ac5565b610ed0565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906129fb565b61106d565b005b3480156104f557600080fd5b50610510600480360381019061050b9190612980565b6111e5565b005b34801561051e57600080fd5b5061053960048036038101906105349190612ac5565b61125d565b6040516105469190612daa565b60405180910390f35b34801561055b57600080fd5b506105646112df565b6040516105719190612ecc565b60405180910390f35b34801561058657600080fd5b5061058f6112e5565b60405161059c9190612ecc565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612ac5565b6112eb565b005b3480156105da57600080fd5b506105f560048036038101906105f09190612ac5565b611371565b005b34801561060357600080fd5b5061061e600480360381019061061991906128f5565b6113f7565b60405161062b9190612d8f565b60405180910390f35b34801561064057600080fd5b5061064961148b565b6040516106569190612d8f565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612ac5565b61149e565b005b34801561069457600080fd5b506106af60048036038101906106aa91906128cc565b611524565b005b3480156106bd57600080fd5b506106c661161c565b6040516106d39190612ecc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b757506107b682611622565b5b9050919050565b6060600280546107cd9061314b565b80601f01602080910402602001604051908101604052809291908181526020018280546107f99061314b565b80156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b61085861168c565b73ffffffffffffffffffffffffffffffffffffffff16610876610e14565b73ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390612e6c565b60405180910390fd5b80600b8190555050565b60006108e182611694565b610917576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095d82610c18565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e461168c565b73ffffffffffffffffffffffffffffffffffffffff1614610a4757610a1081610a0b61168c565b6113f7565b610a46576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610a528383836116e2565b505050565b6000610a61611794565b6001546000540303905090565b610a79838383611799565b505050565b600b5481565b610a8c61168c565b73ffffffffffffffffffffffffffffffffffffffff16610aaa610e14565b73ffffffffffffffffffffffffffffffffffffffff1614610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790612e6c565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610b3461168c565b73ffffffffffffffffffffffffffffffffffffffff16610b52610e14565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90612e6c565b60405180910390fd5b610bb0610e14565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bf5573d6000803e3d6000fd5b50565b610c13838383604051806020016040528060008152506111e5565b505050565b6000610c2382611c4f565b600001519050919050565b600e8054610c3b9061314b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c679061314b565b8015610cb45780601f10610c8957610100808354040283529160200191610cb4565b820191906000526020600020905b815481529060010190602001808311610c9757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d24576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610d9461168c565b73ffffffffffffffffffffffffffffffffffffffff16610db2610e14565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90612e6c565b60405180910390fd5b610e126000611eda565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e4d9061314b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e799061314b565b8015610ec65780601f10610e9b57610100808354040283529160200191610ec6565b820191906000526020600020905b815481529060010190602001808311610ea957829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690612e0c565b60405180910390fd5b600a548110610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90612eac565b60405180910390fd5b600954610f6f33611fa0565b82610f7a9190612f80565b10610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190612e2c565b60405180910390fd5b600b5481610fc6610a57565b610fd09190612f80565b10611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790612e4c565b60405180910390fd5b80600c5461101e9190613007565b341015611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790612e8c565b60405180910390fd5b61106a338261200a565b50565b61107561168c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110da576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110e761168c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661119461168c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d99190612d8f565b60405180910390a35050565b6111f0848484611799565b61120f8373ffffffffffffffffffffffffffffffffffffffff16612028565b15611257576112208484848461204b565b611256576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061126882611694565b6112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90612dcc565b60405180910390fd5b6112af6121ab565b6112b88361223d565b6040516020016112c9929190612cf9565b6040516020818303038152906040529050919050565b600c5481565b60095481565b6112f361168c565b73ffffffffffffffffffffffffffffffffffffffff16611311610e14565b73ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90612e6c565b60405180910390fd5b80600a8190555050565b61137961168c565b73ffffffffffffffffffffffffffffffffffffffff16611397610e14565b73ffffffffffffffffffffffffffffffffffffffff16146113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e490612e6c565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b6114a661168c565b73ffffffffffffffffffffffffffffffffffffffff166114c4610e14565b73ffffffffffffffffffffffffffffffffffffffff161461151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190612e6c565b60405180910390fd5b8060098190555050565b61152c61168c565b73ffffffffffffffffffffffffffffffffffffffff1661154a610e14565b73ffffffffffffffffffffffffffffffffffffffff16146115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790612e6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790612dec565b60405180910390fd5b61161981611eda565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161169f611794565b111580156116ae575060005482105b80156116db575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006117a482611c4f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461180f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661183061168c565b73ffffffffffffffffffffffffffffffffffffffff16148061185f575061185e8561185961168c565b6113f7565b5b806118a4575061186d61168c565b73ffffffffffffffffffffffffffffffffffffffff1661188c846108d6565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118dd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611944576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61195185858560016123ea565b61195d600084876116e2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bdd576000548214611bdc57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c4885858560016123f0565b5050505050565b611c576127b8565b600082905080611c65611794565b11611ea357600054811015611ea2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ea057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d84578092505050611ed5565b5b600115611e9f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e9a578092505050611ed5565b611d85565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6120248282604051806020016040528060008152506123f6565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261207161168c565b8786866040518563ffffffff1660e01b81526004016120939493929190612d43565b602060405180830381600087803b1580156120ad57600080fd5b505af19250505080156120de57506040513d601f19601f820116820180604052508101906120db9190612a9c565b60015b612158573d806000811461210e576040519150601f19603f3d011682016040523d82523d6000602084013e612113565b606091505b50600081511415612150576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546121ba9061314b565b80601f01602080910402602001604051908101604052809291908181526020018280546121e69061314b565b80156122335780601f1061220857610100808354040283529160200191612233565b820191906000526020600020905b81548152906001019060200180831161221657829003601f168201915b5050505050905090565b60606000821415612285576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123e5565b600082905060005b600082146122b75780806122a0906131ae565b915050600a826122b09190612fd6565b915061228d565b60008167ffffffffffffffff8111156122f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561232b5781602001600182028036833780820191505090505b5090505b600085146123de576001826123449190613061565b9150600a8561235391906131f7565b603061235f9190612f80565b60f81b81838151811061239b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123d79190612fd6565b945061232f565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612463576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561249e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ab60008583866123ea565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061266c8673ffffffffffffffffffffffffffffffffffffffff16612028565b15612731575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126e1600087848060010195508761204b565b612717576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061267257826000541461272c57600080fd5b61279c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612732575b8160008190555050506127b260008583866123f0565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b600061280e61280984612f0c565b612ee7565b90508281526020810184848401111561282657600080fd5b612831848285613109565b509392505050565b6000813590506128488161348c565b92915050565b60008135905061285d816134a3565b92915050565b600081359050612872816134ba565b92915050565b600081519050612887816134ba565b92915050565b600082601f83011261289e57600080fd5b81356128ae8482602086016127fb565b91505092915050565b6000813590506128c6816134d1565b92915050565b6000602082840312156128de57600080fd5b60006128ec84828501612839565b91505092915050565b6000806040838503121561290857600080fd5b600061291685828601612839565b925050602061292785828601612839565b9150509250929050565b60008060006060848603121561294657600080fd5b600061295486828701612839565b935050602061296586828701612839565b9250506040612976868287016128b7565b9150509250925092565b6000806000806080858703121561299657600080fd5b60006129a487828801612839565b94505060206129b587828801612839565b93505060406129c6878288016128b7565b925050606085013567ffffffffffffffff8111156129e357600080fd5b6129ef8782880161288d565b91505092959194509250565b60008060408385031215612a0e57600080fd5b6000612a1c85828601612839565b9250506020612a2d8582860161284e565b9150509250929050565b60008060408385031215612a4a57600080fd5b6000612a5885828601612839565b9250506020612a69858286016128b7565b9150509250929050565b600060208284031215612a8557600080fd5b6000612a9384828501612863565b91505092915050565b600060208284031215612aae57600080fd5b6000612abc84828501612878565b91505092915050565b600060208284031215612ad757600080fd5b6000612ae5848285016128b7565b91505092915050565b612af781613095565b82525050565b612b06816130a7565b82525050565b6000612b1782612f3d565b612b218185612f53565b9350612b31818560208601613118565b612b3a816132e4565b840191505092915050565b6000612b5082612f48565b612b5a8185612f64565b9350612b6a818560208601613118565b612b73816132e4565b840191505092915050565b6000612b8982612f48565b612b938185612f75565b9350612ba3818560208601613118565b80840191505092915050565b6000612bbc601f83612f64565b9150612bc7826132f5565b602082019050919050565b6000612bdf602683612f64565b9150612bea8261331e565b604082019050919050565b6000612c02601b83612f64565b9150612c0d8261336d565b602082019050919050565b6000612c25601983612f64565b9150612c3082613396565b602082019050919050565b6000612c48601683612f64565b9150612c53826133bf565b602082019050919050565b6000612c6b600583612f75565b9150612c76826133e8565b600582019050919050565b6000612c8e602083612f64565b9150612c9982613411565b602082019050919050565b6000612cb1601583612f64565b9150612cbc8261343a565b602082019050919050565b6000612cd4601583612f64565b9150612cdf82613463565b602082019050919050565b612cf3816130ff565b82525050565b6000612d058285612b7e565b9150612d118284612b7e565b9150612d1c82612c5e565b91508190509392505050565b6000602082019050612d3d6000830184612aee565b92915050565b6000608082019050612d586000830187612aee565b612d656020830186612aee565b612d726040830185612cea565b8181036060830152612d848184612b0c565b905095945050505050565b6000602082019050612da46000830184612afd565b92915050565b60006020820190508181036000830152612dc48184612b45565b905092915050565b60006020820190508181036000830152612de581612baf565b9050919050565b60006020820190508181036000830152612e0581612bd2565b9050919050565b60006020820190508181036000830152612e2581612bf5565b9050919050565b60006020820190508181036000830152612e4581612c18565b9050919050565b60006020820190508181036000830152612e6581612c3b565b9050919050565b60006020820190508181036000830152612e8581612c81565b9050919050565b60006020820190508181036000830152612ea581612ca4565b9050919050565b60006020820190508181036000830152612ec581612cc7565b9050919050565b6000602082019050612ee16000830184612cea565b92915050565b6000612ef1612f02565b9050612efd828261317d565b919050565b6000604051905090565b600067ffffffffffffffff821115612f2757612f266132b5565b5b612f30826132e4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f8b826130ff565b9150612f96836130ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fcb57612fca613228565b5b828201905092915050565b6000612fe1826130ff565b9150612fec836130ff565b925082612ffc57612ffb613257565b5b828204905092915050565b6000613012826130ff565b915061301d836130ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561305657613055613228565b5b828202905092915050565b600061306c826130ff565b9150613077836130ff565b92508282101561308a57613089613228565b5b828203905092915050565b60006130a0826130df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561313657808201518184015260208101905061311b565b83811115613145576000848401525b50505050565b6000600282049050600182168061316357607f821691505b6020821081141561317757613176613286565b5b50919050565b613186826132e4565b810181811067ffffffffffffffff821117156131a5576131a46132b5565b5b80604052505050565b60006131b9826130ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131ec576131eb613228565b5b600182019050919050565b6000613202826130ff565b915061320d836130ff565b92508261321d5761321c613257565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f4578636565646564207468652077616c6c6574206c696d697400000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f457863656564656420746865205458206c696d69740000000000000000000000600082015250565b61349581613095565b81146134a057600080fd5b50565b6134ac816130a7565b81146134b757600080fd5b50565b6134c3816130b3565b81146134ce57600080fd5b50565b6134da816130ff565b81146134e557600080fd5b5056fea26469706673582212207dab831cf8bfd8e719ce6928e55023fc82e27ea13a2c32183118ce7511bf1c9164736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000006f100000000000000000000000000000000000000000000000000000000000000104f6b6179205061696e742042656172730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f4b5042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d627a35653538717777646e64336b6f6b754b6741514665445755444c796d55464244507237513645437759742f00000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063cce132d111610095578063eb8d244411610064578063eb8d244414610634578063f1d5f5171461065f578063f2fde38b14610688578063f43a22dc146106b1576101cd565b8063cce132d11461057a578063d1320f7b146105a5578063dbe2193f146105ce578063e985e9c5146105f7576101cd565b8063a22cb465116100d1578063a22cb465146104c0578063b88d4fde146104e9578063c87b56dd14610512578063ca0dcf161461054f576101cd565b80638da5cb5b1461044e57806395d89b4114610479578063a0712d68146104a4576101cd565b806332cb6b0c1161016f5780636352211e1161013e5780636352211e146103925780636c0360eb146103cf57806370a08231146103fa578063715018a614610437576101cd565b806332cb6b0c1461031d57806334918dfd146103485780633ccfd60b1461035f57806342842e0e14610369576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063076de9841461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612a73565b6106dc565b6040516102069190612d8f565b60405180910390f35b34801561021b57600080fd5b506102246107be565b6040516102319190612daa565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612ac5565b610850565b005b34801561026f57600080fd5b5061028a60048036038101906102859190612ac5565b6108d6565b6040516102979190612d28565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612a37565b610952565b005b3480156102d557600080fd5b506102de610a57565b6040516102eb9190612ecc565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612931565b610a6e565b005b34801561032957600080fd5b50610332610a7e565b60405161033f9190612ecc565b60405180910390f35b34801561035457600080fd5b5061035d610a84565b005b610367610b2c565b005b34801561037557600080fd5b50610390600480360381019061038b9190612931565b610bf8565b005b34801561039e57600080fd5b506103b960048036038101906103b49190612ac5565b610c18565b6040516103c69190612d28565b60405180910390f35b3480156103db57600080fd5b506103e4610c2e565b6040516103f19190612daa565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906128cc565b610cbc565b60405161042e9190612ecc565b60405180910390f35b34801561044357600080fd5b5061044c610d8c565b005b34801561045a57600080fd5b50610463610e14565b6040516104709190612d28565b60405180910390f35b34801561048557600080fd5b5061048e610e3e565b60405161049b9190612daa565b60405180910390f35b6104be60048036038101906104b99190612ac5565b610ed0565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906129fb565b61106d565b005b3480156104f557600080fd5b50610510600480360381019061050b9190612980565b6111e5565b005b34801561051e57600080fd5b5061053960048036038101906105349190612ac5565b61125d565b6040516105469190612daa565b60405180910390f35b34801561055b57600080fd5b506105646112df565b6040516105719190612ecc565b60405180910390f35b34801561058657600080fd5b5061058f6112e5565b60405161059c9190612ecc565b60405180910390f35b3480156105b157600080fd5b506105cc60048036038101906105c79190612ac5565b6112eb565b005b3480156105da57600080fd5b506105f560048036038101906105f09190612ac5565b611371565b005b34801561060357600080fd5b5061061e600480360381019061061991906128f5565b6113f7565b60405161062b9190612d8f565b60405180910390f35b34801561064057600080fd5b5061064961148b565b6040516106569190612d8f565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612ac5565b61149e565b005b34801561069457600080fd5b506106af60048036038101906106aa91906128cc565b611524565b005b3480156106bd57600080fd5b506106c661161c565b6040516106d39190612ecc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b757506107b682611622565b5b9050919050565b6060600280546107cd9061314b565b80601f01602080910402602001604051908101604052809291908181526020018280546107f99061314b565b80156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b61085861168c565b73ffffffffffffffffffffffffffffffffffffffff16610876610e14565b73ffffffffffffffffffffffffffffffffffffffff16146108cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c390612e6c565b60405180910390fd5b80600b8190555050565b60006108e182611694565b610917576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095d82610c18565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e461168c565b73ffffffffffffffffffffffffffffffffffffffff1614610a4757610a1081610a0b61168c565b6113f7565b610a46576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610a528383836116e2565b505050565b6000610a61611794565b6001546000540303905090565b610a79838383611799565b505050565b600b5481565b610a8c61168c565b73ffffffffffffffffffffffffffffffffffffffff16610aaa610e14565b73ffffffffffffffffffffffffffffffffffffffff1614610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af790612e6c565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610b3461168c565b73ffffffffffffffffffffffffffffffffffffffff16610b52610e14565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90612e6c565b60405180910390fd5b610bb0610e14565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bf5573d6000803e3d6000fd5b50565b610c13838383604051806020016040528060008152506111e5565b505050565b6000610c2382611c4f565b600001519050919050565b600e8054610c3b9061314b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c679061314b565b8015610cb45780601f10610c8957610100808354040283529160200191610cb4565b820191906000526020600020905b815481529060010190602001808311610c9757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d24576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610d9461168c565b73ffffffffffffffffffffffffffffffffffffffff16610db2610e14565b73ffffffffffffffffffffffffffffffffffffffff1614610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff90612e6c565b60405180910390fd5b610e126000611eda565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e4d9061314b565b80601f0160208091040260200160405190810160405280929190818152602001828054610e799061314b565b8015610ec65780601f10610e9b57610100808354040283529160200191610ec6565b820191906000526020600020905b815481529060010190602001808311610ea957829003601f168201915b5050505050905090565b600d60009054906101000a900460ff16610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1690612e0c565b60405180910390fd5b600a548110610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90612eac565b60405180910390fd5b600954610f6f33611fa0565b82610f7a9190612f80565b10610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190612e2c565b60405180910390fd5b600b5481610fc6610a57565b610fd09190612f80565b10611010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100790612e4c565b60405180910390fd5b80600c5461101e9190613007565b341015611060576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105790612e8c565b60405180910390fd5b61106a338261200a565b50565b61107561168c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110da576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006110e761168c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661119461168c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111d99190612d8f565b60405180910390a35050565b6111f0848484611799565b61120f8373ffffffffffffffffffffffffffffffffffffffff16612028565b15611257576112208484848461204b565b611256576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061126882611694565b6112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90612dcc565b60405180910390fd5b6112af6121ab565b6112b88361223d565b6040516020016112c9929190612cf9565b6040516020818303038152906040529050919050565b600c5481565b60095481565b6112f361168c565b73ffffffffffffffffffffffffffffffffffffffff16611311610e14565b73ffffffffffffffffffffffffffffffffffffffff1614611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e90612e6c565b60405180910390fd5b80600a8190555050565b61137961168c565b73ffffffffffffffffffffffffffffffffffffffff16611397610e14565b73ffffffffffffffffffffffffffffffffffffffff16146113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e490612e6c565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900460ff1681565b6114a661168c565b73ffffffffffffffffffffffffffffffffffffffff166114c4610e14565b73ffffffffffffffffffffffffffffffffffffffff161461151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190612e6c565b60405180910390fd5b8060098190555050565b61152c61168c565b73ffffffffffffffffffffffffffffffffffffffff1661154a610e14565b73ffffffffffffffffffffffffffffffffffffffff16146115a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159790612e6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790612dec565b60405180910390fd5b61161981611eda565b50565b600a5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161169f611794565b111580156116ae575060005482105b80156116db575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006117a482611c4f565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461180f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661183061168c565b73ffffffffffffffffffffffffffffffffffffffff16148061185f575061185e8561185961168c565b6113f7565b5b806118a4575061186d61168c565b73ffffffffffffffffffffffffffffffffffffffff1661188c846108d6565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806118dd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611944576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61195185858560016123ea565b61195d600084876116e2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bdd576000548214611bdc57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c4885858560016123f0565b5050505050565b611c576127b8565b600082905080611c65611794565b11611ea357600054811015611ea2576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611ea057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d84578092505050611ed5565b5b600115611e9f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e9a578092505050611ed5565b611d85565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6120248282604051806020016040528060008152506123f6565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261207161168c565b8786866040518563ffffffff1660e01b81526004016120939493929190612d43565b602060405180830381600087803b1580156120ad57600080fd5b505af19250505080156120de57506040513d601f19601f820116820180604052508101906120db9190612a9c565b60015b612158573d806000811461210e576040519150601f19603f3d011682016040523d82523d6000602084013e612113565b606091505b50600081511415612150576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546121ba9061314b565b80601f01602080910402602001604051908101604052809291908181526020018280546121e69061314b565b80156122335780601f1061220857610100808354040283529160200191612233565b820191906000526020600020905b81548152906001019060200180831161221657829003601f168201915b5050505050905090565b60606000821415612285576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123e5565b600082905060005b600082146122b75780806122a0906131ae565b915050600a826122b09190612fd6565b915061228d565b60008167ffffffffffffffff8111156122f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561232b5781602001600182028036833780820191505090505b5090505b600085146123de576001826123449190613061565b9150600a8561235391906131f7565b603061235f9190612f80565b60f81b81838151811061239b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123d79190612fd6565b945061232f565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612463576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561249e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124ab60008583866123ea565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061266c8673ffffffffffffffffffffffffffffffffffffffff16612028565b15612731575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126e1600087848060010195508761204b565b612717576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061267257826000541461272c57600080fd5b61279c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612732575b8160008190555050506127b260008583866123f0565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b600061280e61280984612f0c565b612ee7565b90508281526020810184848401111561282657600080fd5b612831848285613109565b509392505050565b6000813590506128488161348c565b92915050565b60008135905061285d816134a3565b92915050565b600081359050612872816134ba565b92915050565b600081519050612887816134ba565b92915050565b600082601f83011261289e57600080fd5b81356128ae8482602086016127fb565b91505092915050565b6000813590506128c6816134d1565b92915050565b6000602082840312156128de57600080fd5b60006128ec84828501612839565b91505092915050565b6000806040838503121561290857600080fd5b600061291685828601612839565b925050602061292785828601612839565b9150509250929050565b60008060006060848603121561294657600080fd5b600061295486828701612839565b935050602061296586828701612839565b9250506040612976868287016128b7565b9150509250925092565b6000806000806080858703121561299657600080fd5b60006129a487828801612839565b94505060206129b587828801612839565b93505060406129c6878288016128b7565b925050606085013567ffffffffffffffff8111156129e357600080fd5b6129ef8782880161288d565b91505092959194509250565b60008060408385031215612a0e57600080fd5b6000612a1c85828601612839565b9250506020612a2d8582860161284e565b9150509250929050565b60008060408385031215612a4a57600080fd5b6000612a5885828601612839565b9250506020612a69858286016128b7565b9150509250929050565b600060208284031215612a8557600080fd5b6000612a9384828501612863565b91505092915050565b600060208284031215612aae57600080fd5b6000612abc84828501612878565b91505092915050565b600060208284031215612ad757600080fd5b6000612ae5848285016128b7565b91505092915050565b612af781613095565b82525050565b612b06816130a7565b82525050565b6000612b1782612f3d565b612b218185612f53565b9350612b31818560208601613118565b612b3a816132e4565b840191505092915050565b6000612b5082612f48565b612b5a8185612f64565b9350612b6a818560208601613118565b612b73816132e4565b840191505092915050565b6000612b8982612f48565b612b938185612f75565b9350612ba3818560208601613118565b80840191505092915050565b6000612bbc601f83612f64565b9150612bc7826132f5565b602082019050919050565b6000612bdf602683612f64565b9150612bea8261331e565b604082019050919050565b6000612c02601b83612f64565b9150612c0d8261336d565b602082019050919050565b6000612c25601983612f64565b9150612c3082613396565b602082019050919050565b6000612c48601683612f64565b9150612c53826133bf565b602082019050919050565b6000612c6b600583612f75565b9150612c76826133e8565b600582019050919050565b6000612c8e602083612f64565b9150612c9982613411565b602082019050919050565b6000612cb1601583612f64565b9150612cbc8261343a565b602082019050919050565b6000612cd4601583612f64565b9150612cdf82613463565b602082019050919050565b612cf3816130ff565b82525050565b6000612d058285612b7e565b9150612d118284612b7e565b9150612d1c82612c5e565b91508190509392505050565b6000602082019050612d3d6000830184612aee565b92915050565b6000608082019050612d586000830187612aee565b612d656020830186612aee565b612d726040830185612cea565b8181036060830152612d848184612b0c565b905095945050505050565b6000602082019050612da46000830184612afd565b92915050565b60006020820190508181036000830152612dc48184612b45565b905092915050565b60006020820190508181036000830152612de581612baf565b9050919050565b60006020820190508181036000830152612e0581612bd2565b9050919050565b60006020820190508181036000830152612e2581612bf5565b9050919050565b60006020820190508181036000830152612e4581612c18565b9050919050565b60006020820190508181036000830152612e6581612c3b565b9050919050565b60006020820190508181036000830152612e8581612c81565b9050919050565b60006020820190508181036000830152612ea581612ca4565b9050919050565b60006020820190508181036000830152612ec581612cc7565b9050919050565b6000602082019050612ee16000830184612cea565b92915050565b6000612ef1612f02565b9050612efd828261317d565b919050565b6000604051905090565b600067ffffffffffffffff821115612f2757612f266132b5565b5b612f30826132e4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f8b826130ff565b9150612f96836130ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fcb57612fca613228565b5b828201905092915050565b6000612fe1826130ff565b9150612fec836130ff565b925082612ffc57612ffb613257565b5b828204905092915050565b6000613012826130ff565b915061301d836130ff565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561305657613055613228565b5b828202905092915050565b600061306c826130ff565b9150613077836130ff565b92508282101561308a57613089613228565b5b828203905092915050565b60006130a0826130df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561313657808201518184015260208101905061311b565b83811115613145576000848401525b50505050565b6000600282049050600182168061316357607f821691505b6020821081141561317757613176613286565b5b50919050565b613186826132e4565b810181811067ffffffffffffffff821117156131a5576131a46132b5565b5b80604052505050565b60006131b9826130ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156131ec576131eb613228565b5b600182019050919050565b6000613202826130ff565b915061320d836130ff565b92508261321d5761321c613257565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e740000000000600082015250565b7f4578636565646564207468652077616c6c6574206c696d697400000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f457863656564656420746865205458206c696d69740000000000000000000000600082015250565b61349581613095565b81146134a057600080fd5b50565b6134ac816130a7565b81146134b757600080fd5b50565b6134c3816130b3565b81146134ce57600080fd5b50565b6134da816130ff565b81146134e557600080fd5b5056fea26469706673582212207dab831cf8bfd8e719ce6928e55023fc82e27ea13a2c32183118ce7511bf1c9164736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000006f100000000000000000000000000000000000000000000000000000000000000104f6b6179205061696e742042656172730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f4b5042000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d627a35653538717777646e64336b6f6b754b6741514665445755444c796d55464244507237513645437759742f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Okay Paint Bears
Arg [1] : symbol (string): OKPB
Arg [2] : baseTokenURI_ (string): ipfs://Qmbz5e58qwwdnd3kokuKgAQFeDWUDLymUFBDPr7Q6ECwYt/
Arg [3] : maxSupply_ (uint256): 1777

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000000000000000000000000000000000000000006f1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [5] : 4f6b6179205061696e7420426561727300000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4f4b504200000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d627a35653538717777646e64336b6f6b754b6741514665
Arg [10] : 445755444c796d55464244507237513645437759742f00000000000000000000


Deployed Bytecode Sourcemap

47465:2210:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28578:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31693:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49468:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33197:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32759:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27818:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34062:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47590:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49581:89;;;;;;;;;;;;;:::i;:::-;;48978:114;;;:::i;:::-;;34303:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31501:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47740:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28947:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:103;;;;;;;;;;;;;:::i;:::-;;4112:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31862:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48074:567;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33473:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34559:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49208:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47622:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47518:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48768:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48876:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33831:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47667:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48649:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5021:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47554:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28578:305;28680:4;28732:25;28717:40;;;:11;:40;;;;:105;;;;28789:33;28774:48;;;:11;:48;;;;28717:105;:158;;;;28839:36;28863:11;28839:23;:36::i;:::-;28717:158;28697:178;;28578:305;;;:::o;31693:100::-;31747:13;31780:5;31773:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31693:100;:::o;49468:105::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49558:7:::1;49545:10;:20;;;;49468:105:::0;:::o;33197:204::-;33265:7;33290:16;33298:7;33290;:16::i;:::-;33285:64;;33315:34;;;;;;;;;;;;;;33285:64;33369:15;:24;33385:7;33369:24;;;;;;;;;;;;;;;;;;;;;33362:31;;33197:204;;;:::o;32759:372::-;32832:13;32848:24;32864:7;32848:15;:24::i;:::-;32832:40;;32893:5;32887:11;;:2;:11;;;32883:48;;;32907:24;;;;;;;;;;;;;;32883:48;32964:5;32948:21;;:12;:10;:12::i;:::-;:21;;;32944:139;;32975:37;32992:5;32999:12;:10;:12::i;:::-;32975:16;:37::i;:::-;32971:112;;33036:35;;;;;;;;;;;;;;32971:112;32944:139;33095:28;33104:2;33108:7;33117:5;33095:8;:28::i;:::-;32759:372;;;:::o;27818:312::-;27871:7;28096:15;:13;:15::i;:::-;28081:12;;28065:13;;:28;:46;28058:53;;27818:312;:::o;34062:170::-;34196:28;34206:4;34212:2;34216:7;34196:9;:28::i;:::-;34062:170;;;:::o;47590:25::-;;;;:::o;49581:89::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49650:12:::1;;;;;;;;;;;49649:13;49634:12;;:28;;;;;;;;;;;;;;;;;;49581:89::o:0;48978:114::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49044:7:::1;:5;:7::i;:::-;49036:25;;:48;49062:21;49036:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48978:114::o:0;34303:185::-;34441:39;34458:4;34464:2;34468:7;34441:39;;;;;;;;;;;;:16;:39::i;:::-;34303:185;;;:::o;31501:125::-;31565:7;31592:21;31605:7;31592:12;:21::i;:::-;:26;;;31585:33;;31501:125;;;:::o;47740:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28947:206::-;29011:7;29052:1;29035:19;;:5;:19;;;29031:60;;;29063:28;;;;;;;;;;;;;;29031:60;29117:12;:19;29130:5;29117:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29109:36;;29102:43;;28947:206;;;:::o;4763:103::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;4112:87::-;4158:7;4185:6;;;;;;;;;;;4178:13;;4112:87;:::o;31862:104::-;31918:13;31951:7;31944:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31862:104;:::o;48074:567::-;48222:12;;;;;;;;;;;48214:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;48296:10;;48285:8;:21;48277:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;48390:9;;48362:25;48376:10;48362:13;:25::i;:::-;48351:8;:36;;;;:::i;:::-;:48;48343:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;48475:10;;48464:8;48448:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;48440:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;48556:8;48545;;:19;;;;:::i;:::-;48531:9;:34;;48523:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48602:31;48612:10;48624:8;48602:9;:31::i;:::-;48074:567;:::o;33473:287::-;33584:12;:10;:12::i;:::-;33572:24;;:8;:24;;;33568:54;;;33605:17;;;;;;;;;;;;;;33568:54;33680:8;33635:18;:32;33654:12;:10;:12::i;:::-;33635:32;;;;;;;;;;;;;;;:42;33668:8;33635:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33733:8;33704:48;;33719:12;:10;:12::i;:::-;33704:48;;;33743:8;33704:48;;;;;;:::i;:::-;;;;;;;;33473:287;;:::o;34559:370::-;34726:28;34736:4;34742:2;34746:7;34726:9;:28::i;:::-;34769:15;:2;:13;;;:15::i;:::-;34765:157;;;34790:56;34821:4;34827:2;34831:7;34840:5;34790:30;:56::i;:::-;34786:136;;34870:40;;;;;;;;;;;;;;34786:136;34765:157;34559:370;;;;:::o;49208:252::-;49281:13;49315:16;49323:7;49315;:16::i;:::-;49307:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;49411:10;:8;:10::i;:::-;49423:18;:7;:16;:18::i;:::-;49394:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49380:72;;49208:252;;;:::o;47622:38::-;;;;:::o;47518:29::-;;;;:::o;48768:100::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48849:11:::1;48836:10;:24;;;;48768:100:::0;:::o;48876:96::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48955:9:::1;48944:8;:20;;;;48876:96:::0;:::o;33831:164::-;33928:4;33952:18;:25;33971:5;33952:25;;;;;;;;;;;;;;;:35;33978:8;33952:35;;;;;;;;;;;;;;;;;;;;;;;;;33945:42;;33831:164;;;;:::o;47667:34::-;;;;;;;;;;;;;:::o;48649:111::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48737:15:::1;48725:9;:27;;;;48649:111:::0;:::o;5021:201::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5130:1:::1;5110:22;;:8;:22;;;;5102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;47554:29::-;;;;:::o;16919:157::-;17004:4;17043:25;17028:40;;;:11;:40;;;;17021:47;;16919:157;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;35184:174::-;35241:4;35284:7;35265:15;:13;:15::i;:::-;:26;;:53;;;;;35305:13;;35295:7;:23;35265:53;:85;;;;;35323:11;:20;35335:7;35323:20;;;;;;;;;;;:27;;;;;;;;;;;;35322:28;35265:85;35258:92;;35184:174;;;:::o;44406:196::-;44548:2;44521:15;:24;44537:7;44521:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44586:7;44582:2;44566:28;;44575:5;44566:28;;;;;;;;;;;;44406:196;;;:::o;27592:92::-;27648:7;27592:92;:::o;39354:2130::-;39469:35;39507:21;39520:7;39507:12;:21::i;:::-;39469:59;;39567:4;39545:26;;:13;:18;;;:26;;;39541:67;;39580:28;;;;;;;;;;;;;;39541:67;39621:22;39663:4;39647:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39684:36;39701:4;39707:12;:10;:12::i;:::-;39684:16;:36::i;:::-;39647:73;:126;;;;39761:12;:10;:12::i;:::-;39737:36;;:20;39749:7;39737:11;:20::i;:::-;:36;;;39647:126;39621:153;;39792:17;39787:66;;39818:35;;;;;;;;;;;;;;39787:66;39882:1;39868:16;;:2;:16;;;39864:52;;;39893:23;;;;;;;;;;;;;;39864:52;39929:43;39951:4;39957:2;39961:7;39970:1;39929:21;:43::i;:::-;40037:35;40054:1;40058:7;40067:4;40037:8;:35::i;:::-;40398:1;40368:12;:18;40381:4;40368:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40442:1;40414:12;:16;40427:2;40414:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40460:31;40494:11;:20;40506:7;40494:20;;;;;;;;;;;40460:54;;40545:2;40529:8;:13;;;:18;;;;;;;;;;;;;;;;;;40595:15;40562:8;:23;;;:49;;;;;;;;;;;;;;;;;;40863:19;40895:1;40885:7;:11;40863:33;;40911:31;40945:11;:24;40957:11;40945:24;;;;;;;;;;;40911:58;;41013:1;40988:27;;:8;:13;;;;;;;;;;;;:27;;;40984:384;;;41198:13;;41183:11;:28;41179:174;;41252:4;41236:8;:13;;;:20;;;;;;;;;;;;;;;;;;41305:13;:28;;;41279:8;:23;;;:54;;;;;;;;;;;;;;;;;;41179:174;40984:384;39354:2130;;;41415:7;41411:2;41396:27;;41405:4;41396:27;;;;;;;;;;;;41434:42;41455:4;41461:2;41465:7;41474:1;41434:20;:42::i;:::-;39354:2130;;;;;:::o;30328:1111::-;30390:21;;:::i;:::-;30424:12;30439:7;30424:22;;30507:4;30488:15;:13;:15::i;:::-;:23;30484:888;;30524:13;;30517:4;:20;30513:859;;;30558:31;30592:11;:17;30604:4;30592:17;;;;;;;;;;;30558:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30633:9;:16;;;30628:729;;30704:1;30678:28;;:9;:14;;;:28;;;30674:101;;30742:9;30735:16;;;;;;30674:101;31077:261;31084:4;31077:261;;;31117:6;;;;;;;;31162:11;:17;31174:4;31162:17;;;;;;;;;;;31150:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31236:1;31210:28;;:9;:14;;;:28;;;31206:109;;31278:9;31271:16;;;;;;31206:109;31077:261;;;30628:729;30513:859;;30484:888;31400:31;;;;;;;;;;;;;;30328:1111;;;;:::o;5382:191::-;5456:16;5475:6;;;;;;;;;;;5456:25;;5501:8;5492:6;;:17;;;;;;;;;;;;;;;;;;5556:8;5525:40;;5546:8;5525:40;;;;;;;;;;;;5382:191;;:::o;29235:137::-;29296:7;29331:12;:19;29344:5;29331:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29323:41;;29316:48;;29235:137;;;:::o;35442:104::-;35511:27;35521:2;35525:8;35511:27;;;;;;;;;;;;:9;:27::i;:::-;35442:104;;:::o;6813:326::-;6873:4;7130:1;7108:7;:19;;;:23;7101:30;;6813:326;;;:::o;45094:667::-;45257:4;45294:2;45278:36;;;45315:12;:10;:12::i;:::-;45329:4;45335:7;45344:5;45278:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45274:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45529:1;45512:6;:13;:18;45508:235;;;45558:40;;;;;;;;;;;;;;45508:235;45701:6;45695:13;45686:6;45682:2;45678:15;45671:38;45274:480;45407:45;;;45397:55;;;:6;:55;;;;45390:62;;;45094:667;;;;;;:::o;49100:100::-;49152:13;49185:7;49178:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49100:100;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;46409:159::-;;;;;:::o;47227:158::-;;;;;:::o;35919:1749::-;36042:20;36065:13;;36042:36;;36107:1;36093:16;;:2;:16;;;36089:48;;;36118:19;;;;;;;;;;;;;;36089:48;36164:1;36152:8;:13;36148:44;;;36174:18;;;;;;;;;;;;;;36148:44;36205:61;36235:1;36239:2;36243:12;36257:8;36205:21;:61::i;:::-;36578:8;36543:12;:16;36556:2;36543:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36642:8;36602:12;:16;36615:2;36602:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36701:2;36668:11;:25;36680:12;36668:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36768:15;36718:11;:25;36730:12;36718:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36801:20;36824:12;36801:35;;36851:11;36880:8;36865:12;:23;36851:37;;36909:15;:2;:13;;;:15::i;:::-;36905:631;;;36945:313;37001:12;36997:2;36976:38;;36993:1;36976:38;;;;;;;;;;;;37042:69;37081:1;37085:2;37089:14;;;;;;37105:5;37042:30;:69::i;:::-;37037:174;;37147:40;;;;;;;;;;;;;;37037:174;37253:3;37238:12;:18;36945:313;;37339:12;37322:13;;:29;37318:43;;37353:8;;;37318:43;36905:631;;;37402:119;37458:14;;;;;;37454:2;37433:40;;37450:1;37433:40;;;;;;;;;;;;37516:3;37501:12;:18;37402:119;;36905:631;37566:12;37550:13;:28;;;;35919:1749;;37600:60;37629:1;37633:2;37637:12;37651:8;37600:20;:60::i;:::-;35919:1749;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;402:5;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;501:133::-;544:5;582:6;569:20;560:29;;598:30;622:5;598:30;:::i;:::-;550:84;;;;:::o;640:137::-;685:5;723:6;710:20;701:29;;739:32;765:5;739:32;:::i;:::-;691:86;;;;:::o;783:141::-;839:5;870:6;864:13;855:22;;886:32;912:5;886:32;:::i;:::-;845:79;;;;:::o;943:271::-;998:5;1047:3;1040:4;1032:6;1028:17;1024:27;1014:2;;1065:1;1062;1055:12;1014:2;1105:6;1092:20;1130:78;1204:3;1196:6;1189:4;1181:6;1177:17;1130:78;:::i;:::-;1121:87;;1004:210;;;;;:::o;1220:139::-;1266:5;1304:6;1291:20;1282:29;;1320:33;1347:5;1320:33;:::i;:::-;1272:87;;;;:::o;1365:262::-;1424:6;1473:2;1461:9;1452:7;1448:23;1444:32;1441:2;;;1489:1;1486;1479:12;1441:2;1532:1;1557:53;1602:7;1593:6;1582:9;1578:22;1557:53;:::i;:::-;1547:63;;1503:117;1431:196;;;;:::o;1633:407::-;1701:6;1709;1758:2;1746:9;1737:7;1733:23;1729:32;1726:2;;;1774:1;1771;1764:12;1726:2;1817:1;1842:53;1887:7;1878:6;1867:9;1863:22;1842:53;:::i;:::-;1832:63;;1788:117;1944:2;1970:53;2015:7;2006:6;1995:9;1991:22;1970:53;:::i;:::-;1960:63;;1915:118;1716:324;;;;;:::o;2046:552::-;2123:6;2131;2139;2188:2;2176:9;2167:7;2163:23;2159:32;2156:2;;;2204:1;2201;2194:12;2156:2;2247:1;2272:53;2317:7;2308:6;2297:9;2293:22;2272:53;:::i;:::-;2262:63;;2218:117;2374:2;2400:53;2445:7;2436:6;2425:9;2421:22;2400:53;:::i;:::-;2390:63;;2345:118;2502:2;2528:53;2573:7;2564:6;2553:9;2549:22;2528:53;:::i;:::-;2518:63;;2473:118;2146:452;;;;;:::o;2604:809::-;2699:6;2707;2715;2723;2772:3;2760:9;2751:7;2747:23;2743:33;2740:2;;;2789:1;2786;2779:12;2740:2;2832:1;2857:53;2902:7;2893:6;2882:9;2878:22;2857:53;:::i;:::-;2847:63;;2803:117;2959:2;2985:53;3030:7;3021:6;3010:9;3006:22;2985:53;:::i;:::-;2975:63;;2930:118;3087:2;3113:53;3158:7;3149:6;3138:9;3134:22;3113:53;:::i;:::-;3103:63;;3058:118;3243:2;3232:9;3228:18;3215:32;3274:18;3266:6;3263:30;3260:2;;;3306:1;3303;3296:12;3260:2;3334:62;3388:7;3379:6;3368:9;3364:22;3334:62;:::i;:::-;3324:72;;3186:220;2730:683;;;;;;;:::o;3419:401::-;3484:6;3492;3541:2;3529:9;3520:7;3516:23;3512:32;3509:2;;;3557:1;3554;3547:12;3509:2;3600:1;3625:53;3670:7;3661:6;3650:9;3646:22;3625:53;:::i;:::-;3615:63;;3571:117;3727:2;3753:50;3795:7;3786:6;3775:9;3771:22;3753:50;:::i;:::-;3743:60;;3698:115;3499:321;;;;;:::o;3826:407::-;3894:6;3902;3951:2;3939:9;3930:7;3926:23;3922:32;3919:2;;;3967:1;3964;3957:12;3919:2;4010:1;4035:53;4080:7;4071:6;4060:9;4056:22;4035:53;:::i;:::-;4025:63;;3981:117;4137:2;4163:53;4208:7;4199:6;4188:9;4184:22;4163:53;:::i;:::-;4153:63;;4108:118;3909:324;;;;;:::o;4239:260::-;4297:6;4346:2;4334:9;4325:7;4321:23;4317:32;4314:2;;;4362:1;4359;4352:12;4314:2;4405:1;4430:52;4474:7;4465:6;4454:9;4450:22;4430:52;:::i;:::-;4420:62;;4376:116;4304:195;;;;:::o;4505:282::-;4574:6;4623:2;4611:9;4602:7;4598:23;4594:32;4591:2;;;4639:1;4636;4629:12;4591:2;4682:1;4707:63;4762:7;4753:6;4742:9;4738:22;4707:63;:::i;:::-;4697:73;;4653:127;4581:206;;;;:::o;4793:262::-;4852:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:2;;;4917:1;4914;4907:12;4869:2;4960:1;4985:53;5030:7;5021:6;5010:9;5006:22;4985:53;:::i;:::-;4975:63;;4931:117;4859:196;;;;:::o;5061:118::-;5148:24;5166:5;5148:24;:::i;:::-;5143:3;5136:37;5126:53;;:::o;5185:109::-;5266:21;5281:5;5266:21;:::i;:::-;5261:3;5254:34;5244:50;;:::o;5300:360::-;5386:3;5414:38;5446:5;5414:38;:::i;:::-;5468:70;5531:6;5526:3;5468:70;:::i;:::-;5461:77;;5547:52;5592:6;5587:3;5580:4;5573:5;5569:16;5547:52;:::i;:::-;5624:29;5646:6;5624:29;:::i;:::-;5619:3;5615:39;5608:46;;5390:270;;;;;:::o;5666:364::-;5754:3;5782:39;5815:5;5782:39;:::i;:::-;5837:71;5901:6;5896:3;5837:71;:::i;:::-;5830:78;;5917:52;5962:6;5957:3;5950:4;5943:5;5939:16;5917:52;:::i;:::-;5994:29;6016:6;5994:29;:::i;:::-;5989:3;5985:39;5978:46;;5758:272;;;;;:::o;6036:377::-;6142:3;6170:39;6203:5;6170:39;:::i;:::-;6225:89;6307:6;6302:3;6225:89;:::i;:::-;6218:96;;6323:52;6368:6;6363:3;6356:4;6349:5;6345:16;6323:52;:::i;:::-;6400:6;6395:3;6391:16;6384:23;;6146:267;;;;;:::o;6419:366::-;6561:3;6582:67;6646:2;6641:3;6582:67;:::i;:::-;6575:74;;6658:93;6747:3;6658:93;:::i;:::-;6776:2;6771:3;6767:12;6760:19;;6565:220;;;:::o;6791:366::-;6933:3;6954:67;7018:2;7013:3;6954:67;:::i;:::-;6947:74;;7030:93;7119:3;7030:93;:::i;:::-;7148:2;7143:3;7139:12;7132:19;;6937:220;;;:::o;7163:366::-;7305:3;7326:67;7390:2;7385:3;7326:67;:::i;:::-;7319:74;;7402:93;7491:3;7402:93;:::i;:::-;7520:2;7515:3;7511:12;7504:19;;7309:220;;;:::o;7535:366::-;7677:3;7698:67;7762:2;7757:3;7698:67;:::i;:::-;7691:74;;7774:93;7863:3;7774:93;:::i;:::-;7892:2;7887:3;7883:12;7876:19;;7681:220;;;:::o;7907:366::-;8049:3;8070:67;8134:2;8129:3;8070:67;:::i;:::-;8063:74;;8146:93;8235:3;8146:93;:::i;:::-;8264:2;8259:3;8255:12;8248:19;;8053:220;;;:::o;8279:400::-;8439:3;8460:84;8542:1;8537:3;8460:84;:::i;:::-;8453:91;;8553:93;8642:3;8553:93;:::i;:::-;8671:1;8666:3;8662:11;8655:18;;8443:236;;;:::o;8685:366::-;8827:3;8848:67;8912:2;8907:3;8848:67;:::i;:::-;8841:74;;8924:93;9013:3;8924:93;:::i;:::-;9042:2;9037:3;9033:12;9026:19;;8831:220;;;:::o;9057:366::-;9199:3;9220:67;9284:2;9279:3;9220:67;:::i;:::-;9213:74;;9296:93;9385:3;9296:93;:::i;:::-;9414:2;9409:3;9405:12;9398:19;;9203:220;;;:::o;9429:366::-;9571:3;9592:67;9656:2;9651:3;9592:67;:::i;:::-;9585:74;;9668:93;9757:3;9668:93;:::i;:::-;9786:2;9781:3;9777:12;9770:19;;9575:220;;;:::o;9801:118::-;9888:24;9906:5;9888:24;:::i;:::-;9883:3;9876:37;9866:53;;:::o;9925:701::-;10206:3;10228:95;10319:3;10310:6;10228:95;:::i;:::-;10221:102;;10340:95;10431:3;10422:6;10340:95;:::i;:::-;10333:102;;10452:148;10596:3;10452:148;:::i;:::-;10445:155;;10617:3;10610:10;;10210:416;;;;;:::o;10632:222::-;10725:4;10763:2;10752:9;10748:18;10740:26;;10776:71;10844:1;10833:9;10829:17;10820:6;10776:71;:::i;:::-;10730:124;;;;:::o;10860:640::-;11055:4;11093:3;11082:9;11078:19;11070:27;;11107:71;11175:1;11164:9;11160:17;11151:6;11107:71;:::i;:::-;11188:72;11256:2;11245:9;11241:18;11232:6;11188:72;:::i;:::-;11270;11338:2;11327:9;11323:18;11314:6;11270:72;:::i;:::-;11389:9;11383:4;11379:20;11374:2;11363:9;11359:18;11352:48;11417:76;11488:4;11479:6;11417:76;:::i;:::-;11409:84;;11060:440;;;;;;;:::o;11506:210::-;11593:4;11631:2;11620:9;11616:18;11608:26;;11644:65;11706:1;11695:9;11691:17;11682:6;11644:65;:::i;:::-;11598:118;;;;:::o;11722:313::-;11835:4;11873:2;11862:9;11858:18;11850:26;;11922:9;11916:4;11912:20;11908:1;11897:9;11893:17;11886:47;11950:78;12023:4;12014:6;11950:78;:::i;:::-;11942:86;;11840:195;;;;:::o;12041:419::-;12207:4;12245:2;12234:9;12230:18;12222:26;;12294:9;12288:4;12284:20;12280:1;12269:9;12265:17;12258:47;12322:131;12448:4;12322:131;:::i;:::-;12314:139;;12212:248;;;:::o;12466:419::-;12632:4;12670:2;12659:9;12655:18;12647:26;;12719:9;12713:4;12709:20;12705:1;12694:9;12690:17;12683:47;12747:131;12873:4;12747:131;:::i;:::-;12739:139;;12637:248;;;:::o;12891:419::-;13057:4;13095:2;13084:9;13080:18;13072:26;;13144:9;13138:4;13134:20;13130:1;13119:9;13115:17;13108:47;13172:131;13298:4;13172:131;:::i;:::-;13164:139;;13062:248;;;:::o;13316:419::-;13482:4;13520:2;13509:9;13505:18;13497:26;;13569:9;13563:4;13559:20;13555:1;13544:9;13540:17;13533:47;13597:131;13723:4;13597:131;:::i;:::-;13589:139;;13487:248;;;:::o;13741:419::-;13907:4;13945:2;13934:9;13930:18;13922:26;;13994:9;13988:4;13984:20;13980:1;13969:9;13965:17;13958:47;14022:131;14148:4;14022:131;:::i;:::-;14014:139;;13912:248;;;:::o;14166:419::-;14332:4;14370:2;14359:9;14355:18;14347:26;;14419:9;14413:4;14409:20;14405:1;14394:9;14390:17;14383:47;14447:131;14573:4;14447:131;:::i;:::-;14439:139;;14337:248;;;:::o;14591:419::-;14757:4;14795:2;14784:9;14780:18;14772:26;;14844:9;14838:4;14834:20;14830:1;14819:9;14815:17;14808:47;14872:131;14998:4;14872:131;:::i;:::-;14864:139;;14762:248;;;:::o;15016:419::-;15182:4;15220:2;15209:9;15205:18;15197:26;;15269:9;15263:4;15259:20;15255:1;15244:9;15240:17;15233:47;15297:131;15423:4;15297:131;:::i;:::-;15289:139;;15187:248;;;:::o;15441:222::-;15534:4;15572:2;15561:9;15557:18;15549:26;;15585:71;15653:1;15642:9;15638:17;15629:6;15585:71;:::i;:::-;15539:124;;;;:::o;15669:129::-;15703:6;15730:20;;:::i;:::-;15720:30;;15759:33;15787:4;15779:6;15759:33;:::i;:::-;15710:88;;;:::o;15804:75::-;15837:6;15870:2;15864:9;15854:19;;15844:35;:::o;15885:307::-;15946:4;16036:18;16028:6;16025:30;16022:2;;;16058:18;;:::i;:::-;16022:2;16096:29;16118:6;16096:29;:::i;:::-;16088:37;;16180:4;16174;16170:15;16162:23;;15951:241;;;:::o;16198:98::-;16249:6;16283:5;16277:12;16267:22;;16256:40;;;:::o;16302:99::-;16354:6;16388:5;16382:12;16372:22;;16361:40;;;:::o;16407:168::-;16490:11;16524:6;16519:3;16512:19;16564:4;16559:3;16555:14;16540:29;;16502:73;;;;:::o;16581:169::-;16665:11;16699:6;16694:3;16687:19;16739:4;16734:3;16730:14;16715:29;;16677:73;;;;:::o;16756:148::-;16858:11;16895:3;16880:18;;16870:34;;;;:::o;16910:305::-;16950:3;16969:20;16987:1;16969:20;:::i;:::-;16964:25;;17003:20;17021:1;17003:20;:::i;:::-;16998:25;;17157:1;17089:66;17085:74;17082:1;17079:81;17076:2;;;17163:18;;:::i;:::-;17076:2;17207:1;17204;17200:9;17193:16;;16954:261;;;;:::o;17221:185::-;17261:1;17278:20;17296:1;17278:20;:::i;:::-;17273:25;;17312:20;17330:1;17312:20;:::i;:::-;17307:25;;17351:1;17341:2;;17356:18;;:::i;:::-;17341:2;17398:1;17395;17391:9;17386:14;;17263:143;;;;:::o;17412:348::-;17452:7;17475:20;17493:1;17475:20;:::i;:::-;17470:25;;17509:20;17527:1;17509:20;:::i;:::-;17504:25;;17697:1;17629:66;17625:74;17622:1;17619:81;17614:1;17607:9;17600:17;17596:105;17593:2;;;17704:18;;:::i;:::-;17593:2;17752:1;17749;17745:9;17734:20;;17460:300;;;;:::o;17766:191::-;17806:4;17826:20;17844:1;17826:20;:::i;:::-;17821:25;;17860:20;17878:1;17860:20;:::i;:::-;17855:25;;17899:1;17896;17893:8;17890:2;;;17904:18;;:::i;:::-;17890:2;17949:1;17946;17942:9;17934:17;;17811:146;;;;:::o;17963:96::-;18000:7;18029:24;18047:5;18029:24;:::i;:::-;18018:35;;18008:51;;;:::o;18065:90::-;18099:7;18142:5;18135:13;18128:21;18117:32;;18107:48;;;:::o;18161:149::-;18197:7;18237:66;18230:5;18226:78;18215:89;;18205:105;;;:::o;18316:126::-;18353:7;18393:42;18386:5;18382:54;18371:65;;18361:81;;;:::o;18448:77::-;18485:7;18514:5;18503:16;;18493:32;;;:::o;18531:154::-;18615:6;18610:3;18605;18592:30;18677:1;18668:6;18663:3;18659:16;18652:27;18582:103;;;:::o;18691:307::-;18759:1;18769:113;18783:6;18780:1;18777:13;18769:113;;;18868:1;18863:3;18859:11;18853:18;18849:1;18844:3;18840:11;18833:39;18805:2;18802:1;18798:10;18793:15;;18769:113;;;18900:6;18897:1;18894:13;18891:2;;;18980:1;18971:6;18966:3;18962:16;18955:27;18891:2;18740:258;;;;:::o;19004:320::-;19048:6;19085:1;19079:4;19075:12;19065:22;;19132:1;19126:4;19122:12;19153:18;19143:2;;19209:4;19201:6;19197:17;19187:27;;19143:2;19271;19263:6;19260:14;19240:18;19237:38;19234:2;;;19290:18;;:::i;:::-;19234:2;19055:269;;;;:::o;19330:281::-;19413:27;19435:4;19413:27;:::i;:::-;19405:6;19401:40;19543:6;19531:10;19528:22;19507:18;19495:10;19492:34;19489:62;19486:2;;;19554:18;;:::i;:::-;19486:2;19594:10;19590:2;19583:22;19373:238;;;:::o;19617:233::-;19656:3;19679:24;19697:5;19679:24;:::i;:::-;19670:33;;19725:66;19718:5;19715:77;19712:2;;;19795:18;;:::i;:::-;19712:2;19842:1;19835:5;19831:13;19824:20;;19660:190;;;:::o;19856:176::-;19888:1;19905:20;19923:1;19905:20;:::i;:::-;19900:25;;19939:20;19957:1;19939:20;:::i;:::-;19934:25;;19978:1;19968:2;;19983:18;;:::i;:::-;19968:2;20024:1;20021;20017:9;20012:14;;19890:142;;;;:::o;20038:180::-;20086:77;20083:1;20076:88;20183:4;20180:1;20173:15;20207:4;20204:1;20197:15;20224:180;20272:77;20269:1;20262:88;20369:4;20366:1;20359:15;20393:4;20390:1;20383:15;20410:180;20458:77;20455:1;20448:88;20555:4;20552:1;20545:15;20579:4;20576:1;20569:15;20596:180;20644:77;20641:1;20634:88;20741:4;20738:1;20731:15;20765:4;20762:1;20755:15;20782:102;20823:6;20874:2;20870:7;20865:2;20858:5;20854:14;20850:28;20840:38;;20830:54;;;:::o;20890:181::-;21030:33;21026:1;21018:6;21014:14;21007:57;20996:75;:::o;21077:225::-;21217:34;21213:1;21205:6;21201:14;21194:58;21286:8;21281:2;21273:6;21269:15;21262:33;21183:119;:::o;21308:177::-;21448:29;21444:1;21436:6;21432:14;21425:53;21414:71;:::o;21491:175::-;21631:27;21627:1;21619:6;21615:14;21608:51;21597:69;:::o;21672:172::-;21812:24;21808:1;21800:6;21796:14;21789:48;21778:66;:::o;21850:155::-;21990:7;21986:1;21978:6;21974:14;21967:31;21956:49;:::o;22011:182::-;22151:34;22147:1;22139:6;22135:14;22128:58;22117:76;:::o;22199:171::-;22339:23;22335:1;22327:6;22323:14;22316:47;22305:65;:::o;22376:171::-;22516:23;22512:1;22504:6;22500:14;22493:47;22482:65;:::o;22553:122::-;22626:24;22644:5;22626:24;:::i;:::-;22619:5;22616:35;22606:2;;22665:1;22662;22655:12;22606:2;22596:79;:::o;22681:116::-;22751:21;22766:5;22751:21;:::i;:::-;22744:5;22741:32;22731:2;;22787:1;22784;22777:12;22731:2;22721:76;:::o;22803:120::-;22875:23;22892:5;22875:23;:::i;:::-;22868:5;22865:34;22855:2;;22913:1;22910;22903:12;22855:2;22845:78;:::o;22929:122::-;23002:24;23020:5;23002:24;:::i;:::-;22995:5;22992:35;22982:2;;23041:1;23038;23031:12;22982:2;22972:79;:::o

Swarm Source

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