ETH Price: $3,312.80 (-3.53%)
Gas: 16 Gwei

Token

Pixel Okay Bears (PIXELOKAYBEARS)
 

Overview

Max Total Supply

3,000 PIXELOKAYBEARS

Holders

344

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
amson.eth
Balance
5 PIXELOKAYBEARS
0xcc0a2ff2ab93e9ef8692306c80953bee36284ad0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PixelOkayBears

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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: @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: 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: @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: contracts/PixelOkayBears.sol

//SPDX-License-Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;




//   __         __
//  /  \.-"""-./  \
//  \    -   -    /
//   |   o   o   |
//   \  .-'''-.  /
//    '-\__Y__/-'
//       `---`
//  PIXEL OKAY BEARS

contract PixelOkayBears is ERC721A, Ownable {

  /** ERRORS */
  error ExceedsMaxSupply();
  error InvalidAmount();
  error FreeMintOver();
  error ExceedsWalletLimit();
  error InsufficientValue();
  error TokenNotFound();
  error ContractMint();
  error SaleInactive();

  using Strings for uint256;

  uint256 public cost = 0.0069 ether;
  uint256 public maxSupply = 3000;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public freeMaxMintPerWallet = 5;

  uint256 public FREE_MINT_MAX = 1000;
  
  bool public saleActive;
  
  mapping(address => uint256) public freeWallets;

  string _baseTokenURI;

  constructor() ERC721A("Pixel Okay Bears", "PIXELOKAYBEARS") payable {}

  modifier mintCompliance(uint256 _mintAmount) {
    if (!saleActive) revert SaleInactive();
    if (msg.sender != tx.origin) revert ContractMint();
    if (totalSupply() + _mintAmount > maxSupply) revert ExceedsMaxSupply();
    if (_mintAmount < 1 || _mintAmount > maxMintAmountPerTx) revert InvalidAmount();
    _;
  }

  function freeMint(uint256 _mintAmount) public mintCompliance(_mintAmount) {
    if (!isFreeMint()) revert FreeMintOver();
    if (freeWallets[msg.sender] + _mintAmount > freeMaxMintPerWallet) revert ExceedsWalletLimit();
    unchecked { freeWallets[msg.sender] += _mintAmount; }

    _safeMint(msg.sender, _mintAmount);
  }

  function paidMint(uint256 _mintAmount)
    external
    payable
    mintCompliance(_mintAmount)
  {
    if (msg.value < (cost * _mintAmount)) revert InsufficientValue();
    _safeMint(msg.sender, _mintAmount);
  }

  function isFreeMint() public view returns (bool) {
    return totalSupply() < FREE_MINT_MAX;
  }

  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }
 
  function setMaxSupply(uint256 _maxSupply) external onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }
  
  function toggleSaleState() public onlyOwner {
    saleActive = !saleActive;
  }

  function setMaxFreeMint(uint256 _max) public onlyOwner {
    FREE_MINT_MAX = _max;
  }

  function withdraw() public onlyOwner {
    payable(owner()).transfer(address(this).balance);
  }

  /** METADATA */
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    if (!_exists(_tokenId)) revert TokenNotFound();

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"ContractMint","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"FreeMintOver","type":"error"},{"inputs":[],"name":"InsufficientValue","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"SaleInactive","type":"error"},{"inputs":[],"name":"TokenNotFound","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":"FREE_MINT_MAX","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","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":"saleActive","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":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6618838370f34000600955610bb8600a556014600b556005600c556103e8600d55601060808181526f506978656c204f6b617920426561727360801b60a0908152610100604052600e60c09081526d504958454c4f4b4159424541525360901b60e05291926200007291600291620000f2565b50805162000088906003906020840190620000f2565b505060008055506200009a33620000a0565b620001d5565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001009062000198565b90600052602060002090601f0160209004810192826200012457600085556200016f565b82601f106200013f57805160ff19168380011785556200016f565b828001600101855582156200016f579182015b828111156200016f57825182559160200191906001019062000152565b506200017d92915062000181565b5090565b5b808211156200017d576000815560010162000182565b600181811c90821680620001ad57607f821691505b60208210811415620001cf57634e487b7160e01b600052602260045260246000fd5b50919050565b61209880620001e56000396000f3fe6080604052600436106102345760003560e01c80636f8b44b011610138578063b071401b116100b0578063d5abeb011161007f578063e985e9c511610064578063e985e9c514610600578063efbd73f414610649578063f2fde38b1461066957600080fd5b8063d5abeb01146105d5578063daaeec86146105eb57600080fd5b8063b071401b14610560578063b88d4fde14610580578063c2d05a6e146105a0578063c87b56dd146105b557600080fd5b80637c928fe91161010757806394354fd0116100ec57806394354fd01461051557806395d89b411461052b578063a22cb4651461054057600080fd5b80637c928fe9146104d75780638da5cb5b146104f757600080fd5b80636f8b44b01461046257806370a0823114610482578063715018a6146104a2578063742a4c9b146104b757600080fd5b80633bc4b025116101cb57806355f804b31161019a57806365cde7331161017f57806365cde7331461041f57806366112b6b1461043257806368428a1b1461044857600080fd5b806355f804b3146103df5780636352211e146103ff57600080fd5b80633bc4b025146103745780633ccfd60b1461038a57806342842e0e1461039f57806344a0d68a146103bf57600080fd5b8063095ea7b311610207578063095ea7b31461030357806313faede61461032557806318160ddd1461033b57806323b872dd1461035457600080fd5b806301ffc9a71461023957806306bb99e21461026e57806306fdde03146102a9578063081812fc146102cb575b600080fd5b34801561024557600080fd5b50610259610254366004611d42565b610689565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b5061029b610289366004611b6f565b600f6020526000908152604090205481565b604051908152602001610265565b3480156102b557600080fd5b506102be610726565b6040516102659190611ee9565b3480156102d757600080fd5b506102eb6102e6366004611dee565b6107b8565b6040516001600160a01b039091168152602001610265565b34801561030f57600080fd5b5061032361031e366004611d18565b610815565b005b34801561033157600080fd5b5061029b60095481565b34801561034757600080fd5b506001546000540361029b565b34801561036057600080fd5b5061032361036f366004611bc4565b6108ce565b34801561038057600080fd5b5061029b600d5481565b34801561039657600080fd5b506103236108d9565b3480156103ab57600080fd5b506103236103ba366004611bc4565b610974565b3480156103cb57600080fd5b506103236103da366004611dee565b61098f565b3480156103eb57600080fd5b506103236103fa366004611d7c565b6109ee565b34801561040b57600080fd5b506102eb61041a366004611dee565b610a54565b61032361042d366004611dee565b610a66565b34801561043e57600080fd5b5061029b600c5481565b34801561045457600080fd5b50600e546102599060ff1681565b34801561046e57600080fd5b5061032361047d366004611dee565b610b68565b34801561048e57600080fd5b5061029b61049d366004611b6f565b610bc7565b3480156104ae57600080fd5b50610323610c2f565b3480156104c357600080fd5b506103236104d2366004611dee565b610c95565b3480156104e357600080fd5b506103236104f2366004611dee565b610cf4565b34801561050357600080fd5b506008546001600160a01b03166102eb565b34801561052157600080fd5b5061029b600b5481565b34801561053757600080fd5b506102be610e54565b34801561054c57600080fd5b5061032361055b366004611cdc565b610e63565b34801561056c57600080fd5b5061032361057b366004611dee565b610f12565b34801561058c57600080fd5b5061032361059b366004611c00565b610f71565b3480156105ac57600080fd5b50610259610fbb565b3480156105c157600080fd5b506102be6105d0366004611dee565b610fd3565b3480156105e157600080fd5b5061029b600a5481565b3480156105f757600080fd5b5061032361104c565b34801561060c57600080fd5b5061025961061b366004611b91565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065557600080fd5b50610323610664366004611e07565b6110ba565b34801561067557600080fd5b50610323610684366004611b6f565b61111e565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106ec57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061072057507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461073590611f8a565b80601f016020809104026020016040519081016040528092919081815260200182805461076190611f8a565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b5050505050905090565b60006107c3826111fd565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061082082610a54565b9050806001600160a01b0316836001600160a01b0316141561086e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108be57610888813361061b565b6108be576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108c9838383611228565b505050565b6108c9838383611291565b6008546001600160a01b031633146109385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610971573d6000803e3d6000fd5b50565b6108c983838360405180602001604052806000815250610f71565b6008546001600160a01b031633146109e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b600955565b6008546001600160a01b03163314610a485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b6108c960108383611aba565b6000610a5f826114cc565b5192915050565b600e54819060ff16610a8b57604051630fe219dd60e21b815260040160405180910390fd5b333214610aab576040516372f67c2360e01b815260040160405180910390fd5b600a5481610abc6001546000540390565b610ac69190611efc565b1115610ae55760405163c30436e960e01b815260040160405180910390fd5b6001811080610af55750600b5481115b15610b135760405163162908e360e11b815260040160405180910390fd5b81600954610b219190611f28565b341015610b5a576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b643383611601565b5050565b6008546001600160a01b03163314610bc25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b600a55565b60006001600160a01b038216610c09576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b610c93600061161b565b565b6008546001600160a01b03163314610cef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b600d55565b600e54819060ff16610d1957604051630fe219dd60e21b815260040160405180910390fd5b333214610d39576040516372f67c2360e01b815260040160405180910390fd5b600a5481610d4a6001546000540390565b610d549190611efc565b1115610d735760405163c30436e960e01b815260040160405180910390fd5b6001811080610d835750600b5481115b15610da15760405163162908e360e11b815260040160405180910390fd5b610da9610fbb565b610ddf576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54336000908152600f6020526040902054610dfd908490611efc565b1115610e35576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600f60205260409020805484019055610b649083611601565b60606003805461073590611f8a565b6001600160a01b038216331415610ea6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b600b55565b610f7c848484611291565b6001600160a01b0383163b15610fb557610f988484848461167a565b610fb5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000600d54610fcd6001546000540390565b10905090565b6060610fde826111fd565b611014576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61101c611772565b61102583611781565b604051602001611036929190611e56565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146110a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b600e805460ff19811660ff90911615179055565b6008546001600160a01b031633146111145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b610b648183611601565b6008546001600160a01b031633146111785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b6001600160a01b0381166111f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161092f565b6109718161161b565b6000805482108015610720575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061129c826114cc565b9050836001600160a01b031681600001516001600160a01b0316146112ed576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061130b575061130b853361061b565b8061132657503361131b846107b8565b6001600160a01b0316145b90508061135f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661139f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113ab60008487611228565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156115cf57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115cd5780516001600160a01b031615611563579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115c8579392505050565b611563565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b648282604051806020016040528060008152506118b3565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116af903390899088908890600401611ead565b602060405180830381600087803b1580156116c957600080fd5b505af19250505080156116f9575060408051601f3d908101601f191682019092526116f691810190611d5f565b60015b611754573d808015611727576040519150601f19603f3d011682016040523d82523d6000602084013e61172c565b606091505b50805161174c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606010805461073590611f8a565b6060816117c157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156117eb57806117d581611fc5565b91506117e49050600a83611f14565b91506117c5565b60008167ffffffffffffffff81111561180657611806612036565b6040519080825280601f01601f191660200182016040528015611830576020820181803683370190505b5090505b841561176a57611845600183611f47565b9150611852600a86611fe0565b61185d906030611efc565b60f81b81838151811061187257611872612020565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118ac600a86611f14565b9450611834565b6000546001600160a01b0384166118f6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8261192d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611a65575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a2e600087848060010195508761167a565b611a4b576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119e3578260005414611a6057600080fd5b611aaa565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a66575b506000908155610fb59085838684565b828054611ac690611f8a565b90600052602060002090601f016020900481019282611ae85760008555611b2e565b82601f10611b015782800160ff19823516178555611b2e565b82800160010185558215611b2e579182015b82811115611b2e578235825591602001919060010190611b13565b50611b3a929150611b3e565b5090565b5b80821115611b3a5760008155600101611b3f565b80356001600160a01b0381168114611b6a57600080fd5b919050565b600060208284031215611b8157600080fd5b611b8a82611b53565b9392505050565b60008060408385031215611ba457600080fd5b611bad83611b53565b9150611bbb60208401611b53565b90509250929050565b600080600060608486031215611bd957600080fd5b611be284611b53565b9250611bf060208501611b53565b9150604084013590509250925092565b60008060008060808587031215611c1657600080fd5b611c1f85611b53565b9350611c2d60208601611b53565b925060408501359150606085013567ffffffffffffffff80821115611c5157600080fd5b818701915087601f830112611c6557600080fd5b813581811115611c7757611c77612036565b604051601f8201601f19908116603f01168101908382118183101715611c9f57611c9f612036565b816040528281528a6020848701011115611cb857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611cef57600080fd5b611cf883611b53565b915060208301358015158114611d0d57600080fd5b809150509250929050565b60008060408385031215611d2b57600080fd5b611d3483611b53565b946020939093013593505050565b600060208284031215611d5457600080fd5b8135611b8a8161204c565b600060208284031215611d7157600080fd5b8151611b8a8161204c565b60008060208385031215611d8f57600080fd5b823567ffffffffffffffff80821115611da757600080fd5b818501915085601f830112611dbb57600080fd5b813581811115611dca57600080fd5b866020828501011115611ddc57600080fd5b60209290920196919550909350505050565b600060208284031215611e0057600080fd5b5035919050565b60008060408385031215611e1a57600080fd5b82359150611bbb60208401611b53565b60008151808452611e42816020860160208601611f5e565b601f01601f19169290920160200192915050565b60008351611e68818460208801611f5e565b835190830190611e7c818360208801611f5e565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611edf6080830184611e2a565b9695505050505050565b602081526000611b8a6020830184611e2a565b60008219821115611f0f57611f0f611ff4565b500190565b600082611f2357611f2361200a565b500490565b6000816000190483118215151615611f4257611f42611ff4565b500290565b600082821015611f5957611f59611ff4565b500390565b60005b83811015611f79578181015183820152602001611f61565b83811115610fb55750506000910152565b600181811c90821680611f9e57607f821691505b60208210811415611fbf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fd957611fd9611ff4565b5060010190565b600082611fef57611fef61200a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097157600080fdfea26469706673582212209e7850f90243acabf1d3a60ba9d44c9a4dbd2c914098aa44cc63ec74baa0b65c64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102345760003560e01c80636f8b44b011610138578063b071401b116100b0578063d5abeb011161007f578063e985e9c511610064578063e985e9c514610600578063efbd73f414610649578063f2fde38b1461066957600080fd5b8063d5abeb01146105d5578063daaeec86146105eb57600080fd5b8063b071401b14610560578063b88d4fde14610580578063c2d05a6e146105a0578063c87b56dd146105b557600080fd5b80637c928fe91161010757806394354fd0116100ec57806394354fd01461051557806395d89b411461052b578063a22cb4651461054057600080fd5b80637c928fe9146104d75780638da5cb5b146104f757600080fd5b80636f8b44b01461046257806370a0823114610482578063715018a6146104a2578063742a4c9b146104b757600080fd5b80633bc4b025116101cb57806355f804b31161019a57806365cde7331161017f57806365cde7331461041f57806366112b6b1461043257806368428a1b1461044857600080fd5b806355f804b3146103df5780636352211e146103ff57600080fd5b80633bc4b025146103745780633ccfd60b1461038a57806342842e0e1461039f57806344a0d68a146103bf57600080fd5b8063095ea7b311610207578063095ea7b31461030357806313faede61461032557806318160ddd1461033b57806323b872dd1461035457600080fd5b806301ffc9a71461023957806306bb99e21461026e57806306fdde03146102a9578063081812fc146102cb575b600080fd5b34801561024557600080fd5b50610259610254366004611d42565b610689565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b5061029b610289366004611b6f565b600f6020526000908152604090205481565b604051908152602001610265565b3480156102b557600080fd5b506102be610726565b6040516102659190611ee9565b3480156102d757600080fd5b506102eb6102e6366004611dee565b6107b8565b6040516001600160a01b039091168152602001610265565b34801561030f57600080fd5b5061032361031e366004611d18565b610815565b005b34801561033157600080fd5b5061029b60095481565b34801561034757600080fd5b506001546000540361029b565b34801561036057600080fd5b5061032361036f366004611bc4565b6108ce565b34801561038057600080fd5b5061029b600d5481565b34801561039657600080fd5b506103236108d9565b3480156103ab57600080fd5b506103236103ba366004611bc4565b610974565b3480156103cb57600080fd5b506103236103da366004611dee565b61098f565b3480156103eb57600080fd5b506103236103fa366004611d7c565b6109ee565b34801561040b57600080fd5b506102eb61041a366004611dee565b610a54565b61032361042d366004611dee565b610a66565b34801561043e57600080fd5b5061029b600c5481565b34801561045457600080fd5b50600e546102599060ff1681565b34801561046e57600080fd5b5061032361047d366004611dee565b610b68565b34801561048e57600080fd5b5061029b61049d366004611b6f565b610bc7565b3480156104ae57600080fd5b50610323610c2f565b3480156104c357600080fd5b506103236104d2366004611dee565b610c95565b3480156104e357600080fd5b506103236104f2366004611dee565b610cf4565b34801561050357600080fd5b506008546001600160a01b03166102eb565b34801561052157600080fd5b5061029b600b5481565b34801561053757600080fd5b506102be610e54565b34801561054c57600080fd5b5061032361055b366004611cdc565b610e63565b34801561056c57600080fd5b5061032361057b366004611dee565b610f12565b34801561058c57600080fd5b5061032361059b366004611c00565b610f71565b3480156105ac57600080fd5b50610259610fbb565b3480156105c157600080fd5b506102be6105d0366004611dee565b610fd3565b3480156105e157600080fd5b5061029b600a5481565b3480156105f757600080fd5b5061032361104c565b34801561060c57600080fd5b5061025961061b366004611b91565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561065557600080fd5b50610323610664366004611e07565b6110ba565b34801561067557600080fd5b50610323610684366004611b6f565b61111e565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106ec57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061072057507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461073590611f8a565b80601f016020809104026020016040519081016040528092919081815260200182805461076190611f8a565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b5050505050905090565b60006107c3826111fd565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061082082610a54565b9050806001600160a01b0316836001600160a01b0316141561086e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108be57610888813361061b565b6108be576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108c9838383611228565b505050565b6108c9838383611291565b6008546001600160a01b031633146109385760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610971573d6000803e3d6000fd5b50565b6108c983838360405180602001604052806000815250610f71565b6008546001600160a01b031633146109e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b600955565b6008546001600160a01b03163314610a485760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b6108c960108383611aba565b6000610a5f826114cc565b5192915050565b600e54819060ff16610a8b57604051630fe219dd60e21b815260040160405180910390fd5b333214610aab576040516372f67c2360e01b815260040160405180910390fd5b600a5481610abc6001546000540390565b610ac69190611efc565b1115610ae55760405163c30436e960e01b815260040160405180910390fd5b6001811080610af55750600b5481115b15610b135760405163162908e360e11b815260040160405180910390fd5b81600954610b219190611f28565b341015610b5a576040517f1101129400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b643383611601565b5050565b6008546001600160a01b03163314610bc25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b600a55565b60006001600160a01b038216610c09576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b610c93600061161b565b565b6008546001600160a01b03163314610cef5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b600d55565b600e54819060ff16610d1957604051630fe219dd60e21b815260040160405180910390fd5b333214610d39576040516372f67c2360e01b815260040160405180910390fd5b600a5481610d4a6001546000540390565b610d549190611efc565b1115610d735760405163c30436e960e01b815260040160405180910390fd5b6001811080610d835750600b5481115b15610da15760405163162908e360e11b815260040160405180910390fd5b610da9610fbb565b610ddf576040517ff1e7b06c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54336000908152600f6020526040902054610dfd908490611efc565b1115610e35576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000818152600f60205260409020805484019055610b649083611601565b60606003805461073590611f8a565b6001600160a01b038216331415610ea6576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610f6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b600b55565b610f7c848484611291565b6001600160a01b0383163b15610fb557610f988484848461167a565b610fb5576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000600d54610fcd6001546000540390565b10905090565b6060610fde826111fd565b611014576040517fcbdb7b3000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61101c611772565b61102583611781565b604051602001611036929190611e56565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146110a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b600e805460ff19811660ff90911615179055565b6008546001600160a01b031633146111145760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b610b648183611601565b6008546001600160a01b031633146111785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092f565b6001600160a01b0381166111f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161092f565b6109718161161b565b6000805482108015610720575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061129c826114cc565b9050836001600160a01b031681600001516001600160a01b0316146112ed576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061130b575061130b853361061b565b8061132657503361131b846107b8565b6001600160a01b0316145b90508061135f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661139f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113ab60008487611228565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611481576000548214611481578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156115cf57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115cd5780516001600160a01b031615611563579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115c8579392505050565b611563565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b648282604051806020016040528060008152506118b3565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906116af903390899088908890600401611ead565b602060405180830381600087803b1580156116c957600080fd5b505af19250505080156116f9575060408051601f3d908101601f191682019092526116f691810190611d5f565b60015b611754573d808015611727576040519150601f19603f3d011682016040523d82523d6000602084013e61172c565b606091505b50805161174c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606010805461073590611f8a565b6060816117c157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156117eb57806117d581611fc5565b91506117e49050600a83611f14565b91506117c5565b60008167ffffffffffffffff81111561180657611806612036565b6040519080825280601f01601f191660200182016040528015611830576020820181803683370190505b5090505b841561176a57611845600183611f47565b9150611852600a86611fe0565b61185d906030611efc565b60f81b81838151811061187257611872612020565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118ac600a86611f14565b9450611834565b6000546001600160a01b0384166118f6576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8261192d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611a65575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a2e600087848060010195508761167a565b611a4b576040516368d2bf6b60e11b815260040160405180910390fd5b8082106119e3578260005414611a6057600080fd5b611aaa565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a66575b506000908155610fb59085838684565b828054611ac690611f8a565b90600052602060002090601f016020900481019282611ae85760008555611b2e565b82601f10611b015782800160ff19823516178555611b2e565b82800160010185558215611b2e579182015b82811115611b2e578235825591602001919060010190611b13565b50611b3a929150611b3e565b5090565b5b80821115611b3a5760008155600101611b3f565b80356001600160a01b0381168114611b6a57600080fd5b919050565b600060208284031215611b8157600080fd5b611b8a82611b53565b9392505050565b60008060408385031215611ba457600080fd5b611bad83611b53565b9150611bbb60208401611b53565b90509250929050565b600080600060608486031215611bd957600080fd5b611be284611b53565b9250611bf060208501611b53565b9150604084013590509250925092565b60008060008060808587031215611c1657600080fd5b611c1f85611b53565b9350611c2d60208601611b53565b925060408501359150606085013567ffffffffffffffff80821115611c5157600080fd5b818701915087601f830112611c6557600080fd5b813581811115611c7757611c77612036565b604051601f8201601f19908116603f01168101908382118183101715611c9f57611c9f612036565b816040528281528a6020848701011115611cb857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611cef57600080fd5b611cf883611b53565b915060208301358015158114611d0d57600080fd5b809150509250929050565b60008060408385031215611d2b57600080fd5b611d3483611b53565b946020939093013593505050565b600060208284031215611d5457600080fd5b8135611b8a8161204c565b600060208284031215611d7157600080fd5b8151611b8a8161204c565b60008060208385031215611d8f57600080fd5b823567ffffffffffffffff80821115611da757600080fd5b818501915085601f830112611dbb57600080fd5b813581811115611dca57600080fd5b866020828501011115611ddc57600080fd5b60209290920196919550909350505050565b600060208284031215611e0057600080fd5b5035919050565b60008060408385031215611e1a57600080fd5b82359150611bbb60208401611b53565b60008151808452611e42816020860160208601611f5e565b601f01601f19169290920160200192915050565b60008351611e68818460208801611f5e565b835190830190611e7c818360208801611f5e565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611edf6080830184611e2a565b9695505050505050565b602081526000611b8a6020830184611e2a565b60008219821115611f0f57611f0f611ff4565b500190565b600082611f2357611f2361200a565b500490565b6000816000190483118215151615611f4257611f42611ff4565b500290565b600082821015611f5957611f59611ff4565b500390565b60005b83811015611f79578181015183820152602001611f61565b83811115610fb55750506000910152565b600181811c90821680611f9e57607f821691505b60208210811415611fbf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fd957611fd9611ff4565b5060010190565b600082611fef57611fef61200a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461097157600080fdfea26469706673582212209e7850f90243acabf1d3a60ba9d44c9a4dbd2c914098aa44cc63ec74baa0b65c64736f6c63430008070033

Deployed Bytecode Sourcemap

47636:2950:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26015:305;;;;;;;;;;-1:-1:-1;26015:305:0;;;;;:::i;:::-;;:::i;:::-;;;6119:14:1;;6112:22;6094:41;;6082:2;6067:18;26015:305:0;;;;;;;;48194:46;;;;;;;;;;-1:-1:-1;48194:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;7284:25:1;;;7272:2;7257:18;48194:46:0;7138:177:1;29130:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30634:204::-;;;;;;;;;;-1:-1:-1;30634:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5371:55:1;;;5353:74;;5341:2;5326:18;30634:204:0;5207:226:1;30196:372:0;;;;;;;;;;-1:-1:-1;30196:372:0;;;;;:::i;:::-;;:::i;:::-;;47955:34;;;;;;;;;;;;;;;;25255:312;;;;;;;;;;-1:-1:-1;25518:12:0;;25308:7;25502:13;:28;25255:312;;31499:170;;;;;;;;;;-1:-1:-1;31499:170:0;;;;;:::i;:::-;;:::i;48119:35::-;;;;;;;;;;;;;;;;49980:98;;;;;;;;;;;;;:::i;31740:185::-;;;;;;;;;;-1:-1:-1;31740:185:0;;;;;:::i;:::-;;:::i;49478:74::-;;;;;;;;;;-1:-1:-1;49478:74:0;;;;;:::i;:::-;;:::i;50217:100::-;;;;;;;;;;-1:-1:-1;50217:100:0;;;;;:::i;:::-;;:::i;28938:125::-;;;;;;;;;;-1:-1:-1;28938:125:0;;;;;:::i;:::-;;:::i;49015:220::-;;;;;;:::i;:::-;;:::i;48073:39::-;;;;;;;;;;;;;;;;48163:22;;;;;;;;;;-1:-1:-1;48163:22:0;;;;;;;;49559:96;;;;;;;;;;-1:-1:-1;49559:96:0;;;;;:::i;:::-;;:::i;26384:206::-;;;;;;;;;;-1:-1:-1;26384:206:0;;;;;:::i;:::-;;:::i;46542:103::-;;;;;;;;;;;;;:::i;49886:88::-;;;;;;;;;;-1:-1:-1;49886:88:0;;;;;:::i;:::-;;:::i;48680:329::-;;;;;;;;;;-1:-1:-1;48680:329:0;;;;;:::i;:::-;;:::i;45891:87::-;;;;;;;;;;-1:-1:-1;45964:6:0;;-1:-1:-1;;;;;45964:6:0;45891:87;;48030:38;;;;;;;;;;;;;;;;29299:104;;;;;;;;;;;;;:::i;30910:287::-;;;;;;;;;;-1:-1:-1;30910:287:0;;;;;:::i;:::-;;:::i;49661:130::-;;;;;;;;;;-1:-1:-1;49661:130:0;;;;;:::i;:::-;;:::i;31996:370::-;;;;;;;;;;-1:-1:-1;31996:370:0;;;;;:::i;:::-;;:::i;49241:98::-;;;;;;;;;;;;;:::i;50323:258::-;;;;;;;;;;-1:-1:-1;50323:258:0;;;;;:::i;:::-;;:::i;47994:31::-;;;;;;;;;;;;;;;;49799:81;;;;;;;;;;;;;:::i;31268:164::-;;;;;;;;;;-1:-1:-1;31268:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31389:25:0;;;31365:4;31389:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31268:164;49345:127;;;;;;;;;;-1:-1:-1;49345:127:0;;;;;:::i;:::-;;:::i;46800:201::-;;;;;;;;;;-1:-1:-1;46800:201:0;;;;;:::i;:::-;;:::i;26015:305::-;26117:4;-1:-1:-1;;;;;;26154:40:0;;26169:25;26154:40;;:105;;-1:-1:-1;;;;;;;26211:48:0;;26226:33;26211:48;26154:105;:158;;;-1:-1:-1;11463:25:0;-1:-1:-1;;;;;;11448:40:0;;;26276:36;26134:178;26015:305;-1:-1:-1;;26015:305:0:o;29130:100::-;29184:13;29217:5;29210:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29130:100;:::o;30634:204::-;30702:7;30727:16;30735:7;30727;:16::i;:::-;30722:64;;30752:34;;;;;;;;;;;;;;30722:64;-1:-1:-1;30806:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30806:24:0;;30634:204::o;30196:372::-;30269:13;30285:24;30301:7;30285:15;:24::i;:::-;30269:40;;30330:5;-1:-1:-1;;;;;30324:11:0;:2;-1:-1:-1;;;;;30324:11:0;;30320:48;;;30344:24;;;;;;;;;;;;;;30320:48;23032:10;-1:-1:-1;;;;;30385:21:0;;;30381:139;;30412:37;30429:5;23032:10;31268:164;:::i;30412:37::-;30408:112;;30473:35;;;;;;;;;;;;;;30408:112;30532:28;30541:2;30545:7;30554:5;30532:8;:28::i;:::-;30258:310;30196:372;;:::o;31499:170::-;31633:28;31643:4;31649:2;31653:7;31633:9;:28::i;49980:98::-;45964:6;;-1:-1:-1;;;;;45964:6:0;23032:10;46111:23;46103:68;;;;-1:-1:-1;;;46103:68:0;;6979:2:1;46103:68:0;;;6961:21:1;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;46103:68:0;;;;;;;;;45964:6;;50024:48:::1;::::0;-1:-1:-1;;;;;45964:6:0;;;;50050:21:::1;50024:48:::0;::::1;;;::::0;::::1;::::0;;;50050:21;45964:6;50024:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49980:98::o:0;31740:185::-;31878:39;31895:4;31901:2;31905:7;31878:39;;;;;;;;;;;;:16;:39::i;49478:74::-;45964:6;;-1:-1:-1;;;;;45964:6:0;23032:10;46111:23;46103:68;;;;-1:-1:-1;;;46103:68:0;;6979:2:1;46103:68:0;;;6961:21:1;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;46103:68:0;6777:356:1;46103:68:0;49534:4:::1;:12:::0;49478:74::o;50217:100::-;45964:6;;-1:-1:-1;;;;;45964:6:0;23032:10;46111:23;46103:68;;;;-1:-1:-1;;;46103:68:0;;6979:2:1;46103:68:0;;;6961:21:1;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;46103:68:0;6777:356:1;46103:68:0;50288:23:::1;:13;50304:7:::0;;50288:23:::1;:::i;28938:125::-:0;29002:7;29029:21;29042:7;29029:12;:21::i;:::-;:26;;28938:125;-1:-1:-1;;28938:125:0:o;49015:220::-;48407:10;;49101:11;;48407:10;;48402:38;;48426:14;;-1:-1:-1;;;48426:14:0;;;;;;;;;;;48402:38;48451:10;48465:9;48451:23;48447:50;;48483:14;;-1:-1:-1;;;48483:14:0;;;;;;;;;;;48447:50;48538:9;;48524:11;48508:13;25518:12;;25308:7;25502:13;:28;;25255:312;48508:13;:27;;;;:::i;:::-;:39;48504:70;;;48556:18;;-1:-1:-1;;;48556:18:0;;;;;;;;;;;48504:70;48599:1;48585:11;:15;:51;;;;48618:18;;48604:11;:32;48585:51;48581:79;;;48645:15;;-1:-1:-1;;;48645:15:0;;;;;;;;;;;48581:79;49148:11:::1;49141:4;;:18;;;;:::i;:::-;49128:9;:32;49124:64;;;49169:19;;;;;;;;;;;;;;49124:64;49195:34;49205:10;49217:11;49195:9;:34::i;:::-;49015:220:::0;;:::o;49559:96::-;45964:6;;-1:-1:-1;;;;;45964:6:0;23032:10;46111:23;46103:68;;;;-1:-1:-1;;;46103:68:0;;6979:2:1;46103:68:0;;;6961:21:1;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;46103:68:0;6777:356:1;46103:68:0;49627:9:::1;:22:::0;49559:96::o;26384:206::-;26448:7;-1:-1:-1;;;;;26472:19:0;;26468:60;;26500:28;;;;;;;;;;;;;;26468:60;-1:-1:-1;;;;;;26554:19:0;;;;;:12;:19;;;;;:27;;;;26384:206::o;46542:103::-;45964:6;;-1:-1:-1;;;;;45964:6:0;23032:10;46111:23;46103:68;;;;-1:-1:-1;;;46103:68:0;;6979:2:1;46103:68:0;;;6961:21:1;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;46103:68:0;6777:356:1;46103:68:0;46607:30:::1;46634:1;46607:18;:30::i;:::-;46542:103::o:0;49886:88::-;45964:6;;-1:-1:-1;;;;;45964:6:0;23032:10;46111:23;46103:68;;;;-1:-1:-1;;;46103:68:0;;6979:2:1;46103:68:0;;;6961:21:1;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;46103:68:0;6777:356:1;46103:68:0;49948:13:::1;:20:::0;49886:88::o;48680:329::-;48407:10;;48741:11;;48407:10;;48402:38;;48426:14;;-1:-1:-1;;;48426:14:0;;;;;;;;;;;48402:38;48451:10;48465:9;48451:23;48447:50;;48483:14;;-1:-1:-1;;;48483:14:0;;;;;;;;;;;48447:50;48538:9;;48524:11;48508:13;25518:12;;25308:7;25502:13;:28;;25255:312;48508:13;:27;;;;:::i;:::-;:39;48504:70;;;48556:18;;-1:-1:-1;;;48556:18:0;;;;;;;;;;;48504:70;48599:1;48585:11;:15;:51;;;;48618:18;;48604:11;:32;48585:51;48581:79;;;48645:15;;-1:-1:-1;;;48645:15:0;;;;;;;;;;;48581:79;48766:12:::1;:10;:12::i;:::-;48761:40;;48787:14;;;;;;;;;;;;;;48761:40;48852:20;::::0;48824:10:::1;48812:23;::::0;;;:11:::1;:23;::::0;;;;;:37:::1;::::0;48838:11;;48812:37:::1;:::i;:::-;:60;48808:93;;;48881:20;;;;;;;;;;;;;;48808:93;48932:10;48920:23;::::0;;;:11:::1;:23;::::0;;;;:38;;;::::1;::::0;;48969:34:::1;::::0;48947:11;48969:9:::1;:34::i;29299:104::-:0;29355:13;29388:7;29381:14;;;;;:::i;30910:287::-;-1:-1:-1;;;;;31009:24:0;;23032:10;31009:24;31005:54;;;31042:17;;;;;;;;;;;;;;31005:54;23032:10;31072:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31072:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31072:53:0;;;;;;;;;;31141:48;;6094:41:1;;;31072:42:0;;23032:10;31141:48;;6067:18:1;31141:48:0;;;;;;;30910:287;;:::o;49661:130::-;45964:6;;-1:-1:-1;;;;;45964:6:0;23032:10;46111:23;46103:68;;;;-1:-1:-1;;;46103:68:0;;6979:2:1;46103:68:0;;;6961:21:1;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;46103:68:0;6777:356:1;46103:68:0;49745:18:::1;:40:::0;49661:130::o;31996:370::-;32163:28;32173:4;32179:2;32183:7;32163:9;:28::i;:::-;-1:-1:-1;;;;;32206:13:0;;1528:19;:23;32202:157;;32227:56;32258:4;32264:2;32268:7;32277:5;32227:30;:56::i;:::-;32223:136;;32307:40;;-1:-1:-1;;;32307:40:0;;;;;;;;;;;32223:136;31996:370;;;;:::o;49241:98::-;49284:4;49320:13;;49304;25518:12;;25308:7;25502:13;:28;;25255:312;49304:13;:29;49297:36;;49241:98;:::o;50323:258::-;50422:13;50452:17;50460:8;50452:7;:17::i;:::-;50447:46;;50478:15;;;;;;;;;;;;;;50447:46;50533:10;:8;:10::i;:::-;50545:19;:8;:17;:19::i;:::-;50516:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50502:73;;50323:258;;;:::o;49799:81::-;45964:6;;-1:-1:-1;;;;;45964:6:0;23032:10;46111:23;46103:68;;;;-1:-1:-1;;;46103:68:0;;6979:2:1;46103:68:0;;;6961:21:1;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;46103:68:0;6777:356:1;46103:68:0;49864:10:::1;::::0;;-1:-1:-1;;49850:24:0;::::1;49864:10;::::0;;::::1;49863:11;49850:24;::::0;;49799:81::o;49345:127::-;45964:6;;-1:-1:-1;;;;;45964:6:0;23032:10;46111:23;46103:68;;;;-1:-1:-1;;;46103:68:0;;6979:2:1;46103:68:0;;;6961:21:1;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;46103:68:0;6777:356:1;46103:68:0;49433:33:::1;49443:9;49454:11;49433:9;:33::i;46800:201::-:0;45964:6;;-1:-1:-1;;;;;45964:6:0;23032:10;46111:23;46103:68;;;;-1:-1:-1;;;46103:68:0;;6979:2:1;46103:68:0;;;6961:21:1;;;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;7109:18;;46103:68:0;6777:356:1;46103:68:0;-1:-1:-1;;;;;46889:22:0;::::1;46881:73;;;::::0;-1:-1:-1;;;46881:73:0;;6572:2:1;46881:73:0::1;::::0;::::1;6554:21:1::0;6611:2;6591:18;;;6584:30;6650:34;6630:18;;;6623:62;6721:8;6701:18;;;6694:36;6747:19;;46881:73:0::1;6370:402:1::0;46881:73:0::1;46965:28;46984:8;46965:18;:28::i;32621:174::-:0;32678:4;32742:13;;32732:7;:23;32702:85;;;;-1:-1:-1;;32760:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32760:27:0;;;;32759:28;;32621:174::o;41843:196::-;41958:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;41958:29:0;-1:-1:-1;;;;;41958:29:0;;;;;;;;;42003:28;;41958:24;;42003:28;;;;;;;41843:196;;;:::o;36791:2130::-;36906:35;36944:21;36957:7;36944:12;:21::i;:::-;36906:59;;37004:4;-1:-1:-1;;;;;36982:26:0;:13;:18;;;-1:-1:-1;;;;;36982:26:0;;36978:67;;37017:28;;;;;;;;;;;;;;36978:67;37058:22;23032:10;-1:-1:-1;;;;;37084:20:0;;;;:73;;-1:-1:-1;37121:36:0;37138:4;23032:10;31268:164;:::i;37121:36::-;37084:126;;;-1:-1:-1;23032:10:0;37174:20;37186:7;37174:11;:20::i;:::-;-1:-1:-1;;;;;37174:36:0;;37084:126;37058:153;;37229:17;37224:66;;37255:35;;;;;;;;;;;;;;37224:66;-1:-1:-1;;;;;37305:16:0;;37301:52;;37330:23;;;;;;;;;;;;;;37301:52;37474:35;37491:1;37495:7;37504:4;37474:8;:35::i;:::-;-1:-1:-1;;;;;37805:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37805:31:0;;;;;;;-1:-1:-1;;37805:31:0;;;;;;;37851:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37851:29:0;;;;;;;;;;;37931:20;;;:11;:20;;;;;;37966:18;;-1:-1:-1;;;;;;37999:49:0;;;;-1:-1:-1;;;38032:15:0;37999:49;;;;;;;;;;38322:11;;38382:24;;;;;38425:13;;37931:20;;38382:24;;38425:13;38421:384;;38635:13;;38620:11;:28;38616:174;;38673:20;;38742:28;;;;38716:54;;-1:-1:-1;;;38716:54:0;-1:-1:-1;;;;;;38716:54:0;;;-1:-1:-1;;;;;38673:20:0;;38716:54;;;;38616:174;37780:1036;;;38852:7;38848:2;-1:-1:-1;;;;;38833:27:0;38842:4;-1:-1:-1;;;;;38833:27:0;;;;;;;;;;;36895:2026;;36791:2130;;;:::o;27765:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27876:7:0;27961:13;;27954:4;:20;27950:859;;;27995:31;28029:17;;;:11;:17;;;;;;;;;27995:51;;;;;;;;;-1:-1:-1;;;;;27995:51:0;;;;-1:-1:-1;;;27995:51:0;;;;;;;;;;;-1:-1:-1;;;27995:51:0;;;;;;;;;;;;;;28065:729;;28115:14;;-1:-1:-1;;;;;28115:28:0;;28111:101;;28179:9;27765:1111;-1:-1:-1;;;27765:1111:0:o;28111:101::-;-1:-1:-1;;;28554:6:0;28599:17;;;;:11;:17;;;;;;;;;28587:29;;;;;;;;;-1:-1:-1;;;;;28587:29:0;;;;;-1:-1:-1;;;28587:29:0;;;;;;;;;;;-1:-1:-1;;;28587:29:0;;;;;;;;;;;;;28647:28;28643:109;;28715:9;27765:1111;-1:-1:-1;;;27765:1111:0:o;28643:109::-;28514:261;;;27976:833;27950:859;28837:31;;;;;;;;;;;;;;32879:104;32948:27;32958:2;32962:8;32948:27;;;;;;;;;;;;:9;:27::i;47161:191::-;47254:6;;;-1:-1:-1;;;;;47271:17:0;;;-1:-1:-1;;47271:17:0;;;;;;;47304:40;;47254:6;;;47271:17;47254:6;;47304:40;;47235:16;;47304:40;47224:128;47161:191;:::o;42531:667::-;42715:72;;-1:-1:-1;;;42715:72:0;;42694:4;;-1:-1:-1;;;;;42715:36:0;;;;;:72;;23032:10;;42766:4;;42772:7;;42781:5;;42715:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42715:72:0;;;;;;;;-1:-1:-1;;42715:72:0;;;;;;;;;;;;:::i;:::-;;;42711:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42949:13:0;;42945:235;;42995:40;;-1:-1:-1;;;42995:40:0;;;;;;;;;;;42945:235;43138:6;43132:13;43123:6;43119:2;43115:15;43108:38;42711:480;-1:-1:-1;;;;;;42834:55:0;-1:-1:-1;;;42834:55:0;;-1:-1:-1;42711:480:0;42531:667;;;;;;:::o;50103:108::-;50163:13;50192;50185:20;;;;;:::i;20514:723::-;20570:13;20791:10;20787:53;;-1:-1:-1;;20818:10:0;;;;;;;;;;;;;;;;;;20514:723::o;20787:53::-;20865:5;20850:12;20906:78;20913:9;;20906:78;;20939:8;;;;:::i;:::-;;-1:-1:-1;20962:10:0;;-1:-1:-1;20970:2:0;20962:10;;:::i;:::-;;;20906:78;;;20994:19;21026:6;21016:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21016:17:0;;20994:39;;21044:154;21051:10;;21044:154;;21078:11;21088:1;21078:11;;:::i;:::-;;-1:-1:-1;21147:10:0;21155:2;21147:5;:10;:::i;:::-;21134:24;;:2;:24;:::i;:::-;21121:39;;21104:6;21111;21104:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;21175:11:0;21184:2;21175:11;;:::i;:::-;;;21044:154;;33356:1749;33479:20;33502:13;-1:-1:-1;;;;;33530:16:0;;33526:48;;33555:19;;;;;;;;;;;;;;33526:48;33589:13;33585:44;;33611:18;;;;;;;;;;;;;;33585:44;-1:-1:-1;;;;;33980:16:0;;;;;;:12;:16;;;;;;;;:44;;34039:49;;;33980:44;;;;;;;;34039:49;;;;-1:-1:-1;;33980:44:0;;;;;;34039:49;;;;;;;;;;;;;;;;34105:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34155:66:0;;;-1:-1:-1;;;34205:15:0;34155:66;;;;;;;;;;;;;34105:25;;34302:23;;;;1528:19;:23;34342:631;;34382:313;34413:38;;34438:12;;-1:-1:-1;;;;;34413:38:0;;;34430:1;;34413:38;;34430:1;;34413:38;34479:69;34518:1;34522:2;34526:14;;;;;;34542:5;34479:30;:69::i;:::-;34474:174;;34584:40;;-1:-1:-1;;;34584:40:0;;;;;;;;;;;34474:174;34690:3;34675:12;:18;34382:313;;34776:12;34759:13;;:29;34755:43;;34790:8;;;34755:43;34342:631;;;34839:119;34870:40;;34895:14;;;;;-1:-1:-1;;;;;34870:40:0;;;34887:1;;34870:40;;34887:1;;34870:40;34953:3;34938:12;:18;34839:119;;34342:631;-1:-1:-1;34987:13:0;:28;;;35037:60;;35070:2;35074:12;35088:8;35037:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:1:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:1138::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:53;;;1193:1;1190;1183:12;1144:53;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:34;;;1484:1;1481;1474:12;1454:34;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:55;;1589:1;1586;1579:12;1538:55;1625:2;1612:16;1647:2;1643;1640:10;1637:36;;;1653:18;;:::i;:::-;1728:2;1722:9;1696:2;1782:13;;-1:-1:-1;;1778:22:1;;;1802:2;1774:31;1770:40;1758:53;;;1826:18;;;1846:22;;;1823:46;1820:72;;;1872:18;;:::i;:::-;1912:10;1908:2;1901:22;1947:2;1939:6;1932:18;1987:7;1982:2;1977;1973;1969:11;1965:20;1962:33;1959:53;;;2008:1;2005;1998:12;1959:53;2064:2;2059;2055;2051:11;2046:2;2038:6;2034:15;2021:46;2109:1;2104:2;2099;2091:6;2087:15;2083:24;2076:35;2130:6;2120:16;;;;;;;1004:1138;;;;;;;:::o;2147:347::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2312:29;2331:9;2312:29;:::i;:::-;2302:39;;2391:2;2380:9;2376:18;2363:32;2438:5;2431:13;2424:21;2417:5;2414:32;2404:60;;2460:1;2457;2450:12;2404:60;2483:5;2473:15;;;2147:347;;;;;:::o;2499:254::-;2567:6;2575;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2667:29;2686:9;2667:29;:::i;:::-;2657:39;2743:2;2728:18;;;;2715:32;;-1:-1:-1;;;2499:254:1:o;2758:245::-;2816:6;2869:2;2857:9;2848:7;2844:23;2840:32;2837:52;;;2885:1;2882;2875:12;2837:52;2924:9;2911:23;2943:30;2967:5;2943:30;:::i;3008:249::-;3077:6;3130:2;3118:9;3109:7;3105:23;3101:32;3098:52;;;3146:1;3143;3136:12;3098:52;3178:9;3172:16;3197:30;3221:5;3197:30;:::i;3262:592::-;3333:6;3341;3394:2;3382:9;3373:7;3369:23;3365:32;3362:52;;;3410:1;3407;3400:12;3362:52;3450:9;3437:23;3479:18;3520:2;3512:6;3509:14;3506:34;;;3536:1;3533;3526:12;3506:34;3574:6;3563:9;3559:22;3549:32;;3619:7;3612:4;3608:2;3604:13;3600:27;3590:55;;3641:1;3638;3631:12;3590:55;3681:2;3668:16;3707:2;3699:6;3696:14;3693:34;;;3723:1;3720;3713:12;3693:34;3768:7;3763:2;3754:6;3750:2;3746:15;3742:24;3739:37;3736:57;;;3789:1;3786;3779:12;3736:57;3820:2;3812:11;;;;;3842:6;;-1:-1:-1;3262:592:1;;-1:-1:-1;;;;3262:592:1:o;3859:180::-;3918:6;3971:2;3959:9;3950:7;3946:23;3942:32;3939:52;;;3987:1;3984;3977:12;3939:52;-1:-1:-1;4010:23:1;;3859:180;-1:-1:-1;3859:180:1:o;4044:254::-;4112:6;4120;4173:2;4161:9;4152:7;4148:23;4144:32;4141:52;;;4189:1;4186;4179:12;4141:52;4225:9;4212:23;4202:33;;4254:38;4288:2;4277:9;4273:18;4254:38;:::i;4303:257::-;4344:3;4382:5;4376:12;4409:6;4404:3;4397:19;4425:63;4481:6;4474:4;4469:3;4465:14;4458:4;4451:5;4447:16;4425:63;:::i;:::-;4542:2;4521:15;-1:-1:-1;;4517:29:1;4508:39;;;;4549:4;4504:50;;4303:257;-1:-1:-1;;4303:257:1:o;4565:637::-;4845:3;4883:6;4877:13;4899:53;4945:6;4940:3;4933:4;4925:6;4921:17;4899:53;:::i;:::-;5015:13;;4974:16;;;;5037:57;5015:13;4974:16;5071:4;5059:17;;5037:57;:::i;:::-;5159:7;5116:20;;5145:22;;;5194:1;5183:13;;4565:637;-1:-1:-1;;;;4565:637:1:o;5438:511::-;5632:4;-1:-1:-1;;;;;5742:2:1;5734:6;5730:15;5719:9;5712:34;5794:2;5786:6;5782:15;5777:2;5766:9;5762:18;5755:43;;5834:6;5829:2;5818:9;5814:18;5807:34;5877:3;5872:2;5861:9;5857:18;5850:31;5898:45;5938:3;5927:9;5923:19;5915:6;5898:45;:::i;:::-;5890:53;5438:511;-1:-1:-1;;;;;;5438:511:1:o;6146:219::-;6295:2;6284:9;6277:21;6258:4;6315:44;6355:2;6344:9;6340:18;6332:6;6315:44;:::i;7320:128::-;7360:3;7391:1;7387:6;7384:1;7381:13;7378:39;;;7397:18;;:::i;:::-;-1:-1:-1;7433:9:1;;7320:128::o;7453:120::-;7493:1;7519;7509:35;;7524:18;;:::i;:::-;-1:-1:-1;7558:9:1;;7453:120::o;7578:168::-;7618:7;7684:1;7680;7676:6;7672:14;7669:1;7666:21;7661:1;7654:9;7647:17;7643:45;7640:71;;;7691:18;;:::i;:::-;-1:-1:-1;7731:9:1;;7578:168::o;7751:125::-;7791:4;7819:1;7816;7813:8;7810:34;;;7824:18;;:::i;:::-;-1:-1:-1;7861:9:1;;7751:125::o;7881:258::-;7953:1;7963:113;7977:6;7974:1;7971:13;7963:113;;;8053:11;;;8047:18;8034:11;;;8027:39;7999:2;7992:10;7963:113;;;8094:6;8091:1;8088:13;8085:48;;;-1:-1:-1;;8129:1:1;8111:16;;8104:27;7881:258::o;8144:437::-;8223:1;8219:12;;;;8266;;;8287:61;;8341:4;8333:6;8329:17;8319:27;;8287:61;8394:2;8386:6;8383:14;8363:18;8360:38;8357:218;;;-1:-1:-1;;;8428:1:1;8421:88;8532:4;8529:1;8522:15;8560:4;8557:1;8550:15;8357:218;;8144:437;;;:::o;8586:135::-;8625:3;-1:-1:-1;;8646:17:1;;8643:43;;;8666:18;;:::i;:::-;-1:-1:-1;8713:1:1;8702:13;;8586:135::o;8726:112::-;8758:1;8784;8774:35;;8789:18;;:::i;:::-;-1:-1:-1;8823:9:1;;8726:112::o;8843:184::-;-1:-1:-1;;;8892:1:1;8885:88;8992:4;8989:1;8982:15;9016:4;9013:1;9006:15;9032:184;-1:-1:-1;;;9081:1:1;9074:88;9181:4;9178:1;9171:15;9205:4;9202:1;9195:15;9221:184;-1:-1:-1;;;9270:1:1;9263:88;9370:4;9367:1;9360:15;9394:4;9391:1;9384:15;9410:184;-1:-1:-1;;;9459:1:1;9452:88;9559:4;9556:1;9549:15;9583:4;9580:1;9573:15;9599:177;-1:-1:-1;;;;;;9677:5:1;9673:78;9666:5;9663:89;9653:117;;9766:1;9763;9756:12

Swarm Source

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