ETH Price: $3,267.35 (+0.22%)
Gas: 2 Gwei

Token

Owlabama (OWL)
 

Overview

Max Total Supply

924 OWL

Holders

666

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 OWL
0x7a1e15388929a1e2f49b01efff032658101c2516
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:
Owlabama

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-03
*/

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
/**
Where am i?.......                                   
                                                                           
*/

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/new.sol




pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

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/IOperatorFilterRegistry.sol


    pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}
// File: contracts/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}
// File: contracts/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}



    pragma solidity ^0.8.13;
    
    contract Owlabama is ERC721A, Ownable, ReentrancyGuard, DefaultOperatorFilterer {
    using Strings for uint256;


  string private uriPrefix ="ipfs://bafybeibxqm36pxd5l5fnhrrpvnntgkra3grasxrujq4ug23ilxd3pxnhl4/";
  string private uriSuffix = ".json";
  string public hiddenURL;

  
  

  uint256 public cost = 0.003 ether;
 
  

  uint16 public maxSupply = 8888;
  uint8 public maxMintAmountPerTx = 5;
   uint8 public maxMintAmountPerWallet = 10;
    uint8 public maxFreeMintAmountPerWallet = 1;
    uint256 public freeNFTAlreadyMinted = 0;
     uint256 public  NUM_FREE_MINTS = 8888;
                                                             
 
  bool public paused = true;
  bool public reveal = true;

   mapping (address => uint8) public NFTPerPublicAddress;

 
  
  
 
  

    constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    
  }

   modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
  
 
 
  function mint(uint256 _mintAmount)
      external
      payable
      callerIsUser
  {
    require(!paused, "The contract is paused!");
    require(totalSupply() + _mintAmount < maxSupply + 1, "No more");
     require (balanceOf(msg.sender) + _mintAmount <= maxMintAmountPerWallet, "max NFT per address exceeded");
    

    if(freeNFTAlreadyMinted + _mintAmount > NUM_FREE_MINTS){
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
    }
     else {
        if (balanceOf(msg.sender) + _mintAmount > maxFreeMintAmountPerWallet) {
        require(
            (cost * _mintAmount) <= msg.value,
            "Incorrect ETH value sent"
        );
        require(
            _mintAmount <= maxMintAmountPerTx,
            "Max mints per transaction exceeded"
        );
        } else {
            require(
                _mintAmount <= maxFreeMintAmountPerWallet,
                "Max mints per transaction exceeded"
            );
            freeNFTAlreadyMinted += _mintAmount;
        }
    }
    _safeMint(msg.sender, _mintAmount);
  }

  function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
     _safeMint(_receiver , _mintAmount);
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
  }

  function Airdrop(uint8 _amountPerAddress, address[] calldata addresses) external onlyOwner {
     uint16 totalSupply = uint16(totalSupply());
     uint totalAmount =   _amountPerAddress * addresses.length;
    require(totalSupply + totalAmount <= maxSupply, "Excedes max supply.");
     for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], _amountPerAddress);
        }

     delete _amountPerAddress;
     delete totalSupply;
  }

 

  function setMaxSupply(uint16 _maxSupply) external onlyOwner {
      maxSupply = _maxSupply;
  }



   
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
  
if ( reveal == false)
{
    return hiddenURL;
}
    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
        : "";
  }


 function setFreeMaxLimitPerAddress(uint8 _limit) external onlyOwner{
    maxFreeMintAmountPerWallet = _limit;
   delete _limit;

}

    
   function seturiSuffix(string memory _uriSuffix) external onlyOwner {
    uriSuffix = _uriSuffix;
  }


  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }
   function setHiddenUri(string memory _uriPrefix) external onlyOwner {
    hiddenURL = _uriPrefix;
  }
function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      NUM_FREE_MINTS = _numfreemints;
  }

  function setPaused() external onlyOwner {
    paused = !paused;

  }

  function setCost(uint _cost) external onlyOwner{
      cost = _cost;

  }

 function setRevealed() external onlyOwner{
     reveal = !reveal;
 }

  function setMaxMintAmountPerTx(uint8 _maxtx) external onlyOwner{
      maxMintAmountPerTx = _maxtx;

  }

 

  function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    // =============================================================================
  }


  function _baseURI() internal view  override returns (string memory) {
    return uriPrefix;
  }
    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.transferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
    ERC721A.safeTransferFrom(from, to, tokenId);
  }

  function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
    public
    override
    onlyAllowedOperator(from)
  {
    ERC721A.safeTransferFrom(from, to, tokenId, data);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_amountPerAddress","type":"uint8"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerPublicAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","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":[],"name":"hiddenURL","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxFreeMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setFreeMaxLimitPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_maxSupply","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"seturiSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610100604052604360808181529062002f3760a039600a906200002390826200034f565b50604080518082019091526005815264173539b7b760d91b6020820152600b906200004f90826200034f565b50660aa87bee538000600d55600e805464ffffffffff191664010a0522b81790556000600f556122b86010556011805461ffff19166101011790553480156200009757600080fd5b5060405162002f7a38038062002f7a833981016040819052620000ba91620004d2565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600184846002620000e183826200034f565b506003620000f082826200034f565b5050600160005550620001033362000258565b60016009556daaeb6d7670e522a718067333cd4e3b156200024d5780156200019b57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017c57600080fd5b505af115801562000191573d6000803e3d6000fd5b505050506200024d565b6001600160a01b03821615620001ec5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000161565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200023357600080fd5b505af115801562000248573d6000803e3d6000fd5b505050505b505050505062000563565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002d557607f821691505b602082108103620002f657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034a57600081815260208120601f850160051c81016020861015620003255750805b601f850160051c820191505b81811015620003465782815560010162000331565b5050505b505050565b81516001600160401b038111156200036b576200036b620002aa565b62000383816200037c8454620002c0565b84620002fc565b602080601f831160018114620003bb5760008415620003a25750858301515b600019600386901b1c1916600185901b17855562000346565b600085815260208120601f198616915b82811015620003ec57888601518255948401946001909101908401620003cb565b50858210156200040b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200042d57600080fd5b81516001600160401b03808211156200044a576200044a620002aa565b604051601f8301601f19908116603f01168101908282118183101715620004755762000475620002aa565b816040528381526020925086838588010111156200049257600080fd5b600091505b83821015620004b6578582018301518183018401529082019062000497565b83821115620004c85760008385830101525b9695505050505050565b600080600060608486031215620004e857600080fd5b83516001600160401b03808211156200050057600080fd5b6200050e878388016200041b565b945060208601519150808211156200052557600080fd5b62000533878388016200041b565b935060408601519150808211156200054a57600080fd5b5062000559868287016200041b565b9150509250925092565b6129c480620005736000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063aa062290116100b6578063d5abeb011161007a578063d5abeb01146106bb578063e94053c7146106e9578063e985e9c514610719578063eef440af14610762578063f2fde38b14610777578063f8bf51721461079757600080fd5b8063aa0622901461061a578063b88d4fde1461063a578063bc951b911461065a578063c87b56dd1461067b578063cffb6e201461069b57600080fd5b806395d89b41116100fd57806395d89b411461059d578063982d669e146105b2578063a0712d68146105c8578063a22cb465146105db578063a475b5dd146105fb57600080fd5b806370a08231146104f8578063715018a6146105185780637ec4a6591461052d5780638da5cb5b1461054d57806394354fd01461056b57600080fd5b806323b872dd116101d25780633ccfd60b116101965780633ccfd60b1461044957806342842e0e1461045e57806344a0d68a1461047e5780634d9c18481461049e5780635c975abb146104be5780636352211e146104d857600080fd5b806323b872dd146103bf5780632f6f98e1146103df578063305ae775146103ff57806337a66d851461041f5780633bd649681461043457600080fd5b80630a00ae83116102195780630a00ae83146103275780631067fcc71461034757806313faede61461036757806318160ddd1461038b578063193ad7b4146103a957600080fd5b806301ffc9a71461025657806306421c2f1461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b506102766102713660046121c7565b6107b9565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046121fb565b61080b565b005b3480156102b957600080fd5b506102c2610856565b604051610282919061226e565b3480156102db57600080fd5b506102ef6102ea366004612281565b6108e8565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab6103223660046122b1565b61092c565b34801561033357600080fd5b506102ab610342366004612281565b6109b9565b34801561035357600080fd5b506102ab610362366004612367565b6109e8565b34801561037357600080fd5b5061037d600d5481565b604051908152602001610282565b34801561039757600080fd5b5061037d600154600054036000190190565b3480156103b557600080fd5b5061037d600f5481565b3480156103cb57600080fd5b506102ab6103da3660046123b0565b610a22565b3480156103eb57600080fd5b506102ab6103fa3660046123ec565b610b7e565b34801561040b57600080fd5b506102ab61041a366004612367565b610c25565b34801561042b57600080fd5b506102ab610c5b565b34801561044057600080fd5b506102ab610c99565b34801561045557600080fd5b506102ab610ce0565b34801561046a57600080fd5b506102ab6104793660046123b0565b610dda565b34801561048a57600080fd5b506102ab610499366004612281565b610f2b565b3480156104aa57600080fd5b506102ab6104b9366004612430565b610f5a565b3480156104ca57600080fd5b506011546102769060ff1681565b3480156104e457600080fd5b506102ef6104f3366004612281565b610fa6565b34801561050457600080fd5b5061037d61051336600461244b565b610fb8565b34801561052457600080fd5b506102ab611007565b34801561053957600080fd5b506102ab610548366004612367565b61103d565b34801561055957600080fd5b506008546001600160a01b03166102ef565b34801561057757600080fd5b50600e5461058b9062010000900460ff1681565b60405160ff9091168152602001610282565b3480156105a957600080fd5b506102c2611073565b3480156105be57600080fd5b5061037d60105481565b6102ab6105d6366004612281565b611082565b3480156105e757600080fd5b506102ab6105f6366004612474565b61136d565b34801561060757600080fd5b5060115461027690610100900460ff1681565b34801561062657600080fd5b506102ab610635366004612430565b611402565b34801561064657600080fd5b506102ab6106553660046124ab565b61144a565b34801561066657600080fd5b50600e5461058b906301000000900460ff1681565b34801561068757600080fd5b506102c2610696366004612281565b6115a9565b3480156106a757600080fd5b506102ab6106b6366004612527565b61171d565b3480156106c757600080fd5b50600e546106d69061ffff1681565b60405161ffff9091168152602001610282565b3480156106f557600080fd5b5061058b61070436600461244b565b60126020526000908152604090205460ff1681565b34801561072557600080fd5b506102766107343660046125ad565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076e57600080fd5b506102c2611821565b34801561078357600080fd5b506102ab61079236600461244b565b6118af565b3480156107a357600080fd5b50600e5461058b90640100000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107ea57506001600160e01b03198216635b5e139f60e01b145b8061080557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461083e5760405162461bcd60e51b8152600401610835906125c9565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b606060028054610865906125fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610891906125fe565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b60006108f382611947565b610910576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093782610fa6565b9050806001600160a01b0316836001600160a01b03160361096b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061098b57506109898133610734565b155b156109a9576040516367d9dca160e11b815260040160405180910390fd5b6109b4838383611980565b505050565b6008546001600160a01b031633146109e35760405162461bcd60e51b8152600401610835906125c9565b601055565b6008546001600160a01b03163314610a125760405162461bcd60e51b8152600401610835906125c9565b600c610a1e828261267e565b5050565b826daaeb6d7670e522a718067333cd4e3b15610b6d57336001600160a01b03821603610a5857610a538484846119dc565b610b78565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acb919061273e565b8015610b4e5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4e919061273e565b610b6d57604051633b79c77360e21b8152336004820152602401610835565b610b788484846119dc565b50505050565b6008546001600160a01b03163314610ba85760405162461bcd60e51b8152600401610835906125c9565b6000610bbb600154600054036000190190565b600e5490915061ffff16610bcf8483612771565b61ffff161115610c175760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610835565b6109b4828461ffff166119e7565b6008546001600160a01b03163314610c4f5760405162461bcd60e51b8152600401610835906125c9565b600b610a1e828261267e565b6008546001600160a01b03163314610c855760405162461bcd60e51b8152600401610835906125c9565b6011805460ff19811660ff90911615179055565b6008546001600160a01b03163314610cc35760405162461bcd60e51b8152600401610835906125c9565b6011805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610d0a5760405162461bcd60e51b8152600401610835906125c9565b600260095403610d5c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610835565b60026009556000610d756008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610dbf576040519150601f19603f3d011682016040523d82523d6000602084013e610dc4565b606091505b5050905080610dd257600080fd5b506001600955565b826daaeb6d7670e522a718067333cd4e3b15610f2057336001600160a01b03821603610e0b57610a53848484611a01565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7e919061273e565b8015610f015750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610edd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f01919061273e565b610f2057604051633b79c77360e21b8152336004820152602401610835565b610b78848484611a01565b6008546001600160a01b03163314610f555760405162461bcd60e51b8152600401610835906125c9565b600d55565b6008546001600160a01b03163314610f845760405162461bcd60e51b8152600401610835906125c9565b600e805460ff9092166401000000000264ff0000000019909216919091179055565b6000610fb182611a1c565b5192915050565b60006001600160a01b038216610fe1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110315760405162461bcd60e51b8152600401610835906125c9565b61103b6000611b45565b565b6008546001600160a01b031633146110675760405162461bcd60e51b8152600401610835906125c9565b600a610a1e828261267e565b606060038054610865906125fe565b3233146110d15760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610835565b60115460ff16156111245760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610835565b600e546111369061ffff166001612771565b61ffff168161114c600154600054036000190190565b6111569190612797565b1061118d5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610835565b600e546301000000900460ff16816111a433610fb8565b6111ae9190612797565b11156111fc5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610835565b60105481600f5461120d9190612797565b1115611270573481600d5461122291906127af565b111561126b5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610835565b611360565b600e54640100000000900460ff168161128833610fb8565b6112929190612797565b111561131b573481600d546112a791906127af565b11156112f05760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610835565b600e5462010000900460ff1681111561126b5760405162461bcd60e51b8152600401610835906127ce565b600e54640100000000900460ff168111156113485760405162461bcd60e51b8152600401610835906127ce565b80600f600082825461135a9190612797565b90915550505b61136a33826119e7565b50565b336001600160a01b038316036113965760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461142c5760405162461bcd60e51b8152600401610835906125c9565b600e805460ff909216620100000262ff000019909216919091179055565b836daaeb6d7670e522a718067333cd4e3b1561159657336001600160a01b038216036114815761147c85858585611b97565b6115a2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f4919061273e565b80156115775750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611553573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611577919061273e565b61159657604051633b79c77360e21b8152336004820152602401610835565b6115a285858585611b97565b5050505050565b60606115b482611947565b6116185760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610835565b601154610100900460ff1615156000036116be57600c8054611639906125fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611665906125fe565b80156116b25780601f10611687576101008083540402835291602001916116b2565b820191906000526020600020905b81548152906001019060200180831161169557829003601f168201915b50505050509050919050565b60006116c8611be2565b905060008151116116e85760405180602001604052806000815250611716565b806116f284611bf1565b600b60405160200161170693929190612810565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117475760405162461bcd60e51b8152600401610835906125c9565b600061175a600154600054036000190190565b9050600061176b8360ff87166127af565b600e5490915061ffff908116906117859083908516612797565b11156117c95760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610835565b60005b83811015611819576118078585838181106117e9576117e96128b0565b90506020020160208101906117fe919061244b565b8760ff166119e7565b80611811816128c6565b9150506117cc565b505050505050565b600c805461182e906125fe565b80601f016020809104026020016040519081016040528092919081815260200182805461185a906125fe565b80156118a75780601f1061187c576101008083540402835291602001916118a7565b820191906000526020600020905b81548152906001019060200180831161188a57829003601f168201915b505050505081565b6008546001600160a01b031633146118d95760405162461bcd60e51b8152600401610835906125c9565b6001600160a01b03811661193e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610835565b61136a81611b45565b60008160011115801561195b575060005482105b8015610805575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109b4838383611cfa565b610a1e828260405180602001604052806000815250611ee7565b6109b48383836040518060200160405280600081525061144a565b60408051606081018252600080825260208201819052918101919091528180600111158015611a4c575060005481105b15611b2c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611b2a5780516001600160a01b031615611ac0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611b25579392505050565b611ac0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ba2848484611cfa565b6001600160a01b0383163b15158015611bc45750611bc284848484611ef4565b155b15610b78576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a8054610865906125fe565b606081600003611c185750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c425780611c2c816128c6565b9150611c3b9050600a836128f5565b9150611c1c565b60008167ffffffffffffffff811115611c5d57611c5d6122db565b6040519080825280601f01601f191660200182016040528015611c87576020820181803683370190505b5090505b8415611cf257611c9c600183612909565b9150611ca9600a86612920565b611cb4906030612797565b60f81b818381518110611cc957611cc96128b0565b60200101906001600160f81b031916908160001a905350611ceb600a866128f5565b9450611c8b565b949350505050565b6000611d0582611a1c565b9050836001600160a01b031681600001516001600160a01b031614611d3c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611d5a5750611d5a8533610734565b80611d75575033611d6a846108e8565b6001600160a01b0316145b905080611d9557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611dbc57604051633a954ecd60e21b815260040160405180910390fd5b611dc860008487611980565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611e9e576000548214611e9e578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115a2565b6109b48383836001611fdf565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f29903390899088908890600401612934565b6020604051808303816000875af1925050508015611f64575060408051601f3d908101601f19168201909252611f6191810190612971565b60015b611fc2573d808015611f92576040519150601f19603f3d011682016040523d82523d6000602084013e611f97565b606091505b508051600003611fba576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661200857604051622e076360e81b815260040160405180910390fd5b836000036120295760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156120db57506001600160a01b0387163b15155b15612163575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461212c6000888480600101955088611ef4565b612149576040516368d2bf6b60e11b815260040160405180910390fd5b8082036120e157826000541461215e57600080fd5b6121a8565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612164575b506000556115a2565b6001600160e01b03198116811461136a57600080fd5b6000602082840312156121d957600080fd5b8135611716816121b1565b803561ffff811681146121f657600080fd5b919050565b60006020828403121561220d57600080fd5b611716826121e4565b60005b83811015612231578181015183820152602001612219565b83811115610b785750506000910152565b6000815180845261225a816020860160208601612216565b601f01601f19169290920160200192915050565b6020815260006117166020830184612242565b60006020828403121561229357600080fd5b5035919050565b80356001600160a01b03811681146121f657600080fd5b600080604083850312156122c457600080fd5b6122cd8361229a565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561230c5761230c6122db565b604051601f8501601f19908116603f01168101908282118183101715612334576123346122db565b8160405280935085815286868601111561234d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561237957600080fd5b813567ffffffffffffffff81111561239057600080fd5b8201601f810184136123a157600080fd5b611cf2848235602084016122f1565b6000806000606084860312156123c557600080fd5b6123ce8461229a565b92506123dc6020850161229a565b9150604084013590509250925092565b600080604083850312156123ff57600080fd5b612408836121e4565b91506124166020840161229a565b90509250929050565b803560ff811681146121f657600080fd5b60006020828403121561244257600080fd5b6117168261241f565b60006020828403121561245d57600080fd5b6117168261229a565b801515811461136a57600080fd5b6000806040838503121561248757600080fd5b6124908361229a565b915060208301356124a081612466565b809150509250929050565b600080600080608085870312156124c157600080fd5b6124ca8561229a565b93506124d86020860161229a565b925060408501359150606085013567ffffffffffffffff8111156124fb57600080fd5b8501601f8101871361250c57600080fd5b61251b878235602084016122f1565b91505092959194509250565b60008060006040848603121561253c57600080fd5b6125458461241f565b9250602084013567ffffffffffffffff8082111561256257600080fd5b818601915086601f83011261257657600080fd5b81358181111561258557600080fd5b8760208260051b850101111561259a57600080fd5b6020830194508093505050509250925092565b600080604083850312156125c057600080fd5b6124088361229a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061261257607f821691505b60208210810361263257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109b457600081815260208120601f850160051c8101602086101561265f5750805b601f850160051c820191505b818110156118195782815560010161266b565b815167ffffffffffffffff811115612698576126986122db565b6126ac816126a684546125fe565b84612638565b602080601f8311600181146126e157600084156126c95750858301515b600019600386901b1c1916600185901b178555611819565b600085815260208120601f198616915b82811015612710578886015182559484019460019091019084016126f1565b508582101561272e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561275057600080fd5b815161171681612466565b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681851680830382111561278e5761278e61275b565b01949350505050565b600082198211156127aa576127aa61275b565b500190565b60008160001904831182151516156127c9576127c961275b565b500290565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6000845160206128238285838a01612216565b8551918401916128368184848a01612216565b8554920191600090612847816125fe565b6001828116801561285f5760018114612874576128a0565b60ff19841687528215158302870194506128a0565b896000528560002060005b848110156128985781548982015290830190870161287f565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016128d8576128d861275b565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612904576129046128df565b500490565b60008282101561291b5761291b61275b565b500390565b60008261292f5761292f6128df565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061296790830184612242565b9695505050505050565b60006020828403121561298357600080fd5b8151611716816121b156fea264697066735822122084ff1ec91337b78170ca59a74012c1bb6b6f8cca049cf6e141095b95eab20ae664736f6c634300080f0033697066733a2f2f626166796265696278716d3336707864356c35666e68727270766e6e74676b726133677261737872756a713475673233696c78643370786e686c342f000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000084f776c6162616d6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f574c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063aa062290116100b6578063d5abeb011161007a578063d5abeb01146106bb578063e94053c7146106e9578063e985e9c514610719578063eef440af14610762578063f2fde38b14610777578063f8bf51721461079757600080fd5b8063aa0622901461061a578063b88d4fde1461063a578063bc951b911461065a578063c87b56dd1461067b578063cffb6e201461069b57600080fd5b806395d89b41116100fd57806395d89b411461059d578063982d669e146105b2578063a0712d68146105c8578063a22cb465146105db578063a475b5dd146105fb57600080fd5b806370a08231146104f8578063715018a6146105185780637ec4a6591461052d5780638da5cb5b1461054d57806394354fd01461056b57600080fd5b806323b872dd116101d25780633ccfd60b116101965780633ccfd60b1461044957806342842e0e1461045e57806344a0d68a1461047e5780634d9c18481461049e5780635c975abb146104be5780636352211e146104d857600080fd5b806323b872dd146103bf5780632f6f98e1146103df578063305ae775146103ff57806337a66d851461041f5780633bd649681461043457600080fd5b80630a00ae83116102195780630a00ae83146103275780631067fcc71461034757806313faede61461036757806318160ddd1461038b578063193ad7b4146103a957600080fd5b806301ffc9a71461025657806306421c2f1461028b57806306fdde03146102ad578063081812fc146102cf578063095ea7b314610307575b600080fd5b34801561026257600080fd5b506102766102713660046121c7565b6107b9565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046121fb565b61080b565b005b3480156102b957600080fd5b506102c2610856565b604051610282919061226e565b3480156102db57600080fd5b506102ef6102ea366004612281565b6108e8565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab6103223660046122b1565b61092c565b34801561033357600080fd5b506102ab610342366004612281565b6109b9565b34801561035357600080fd5b506102ab610362366004612367565b6109e8565b34801561037357600080fd5b5061037d600d5481565b604051908152602001610282565b34801561039757600080fd5b5061037d600154600054036000190190565b3480156103b557600080fd5b5061037d600f5481565b3480156103cb57600080fd5b506102ab6103da3660046123b0565b610a22565b3480156103eb57600080fd5b506102ab6103fa3660046123ec565b610b7e565b34801561040b57600080fd5b506102ab61041a366004612367565b610c25565b34801561042b57600080fd5b506102ab610c5b565b34801561044057600080fd5b506102ab610c99565b34801561045557600080fd5b506102ab610ce0565b34801561046a57600080fd5b506102ab6104793660046123b0565b610dda565b34801561048a57600080fd5b506102ab610499366004612281565b610f2b565b3480156104aa57600080fd5b506102ab6104b9366004612430565b610f5a565b3480156104ca57600080fd5b506011546102769060ff1681565b3480156104e457600080fd5b506102ef6104f3366004612281565b610fa6565b34801561050457600080fd5b5061037d61051336600461244b565b610fb8565b34801561052457600080fd5b506102ab611007565b34801561053957600080fd5b506102ab610548366004612367565b61103d565b34801561055957600080fd5b506008546001600160a01b03166102ef565b34801561057757600080fd5b50600e5461058b9062010000900460ff1681565b60405160ff9091168152602001610282565b3480156105a957600080fd5b506102c2611073565b3480156105be57600080fd5b5061037d60105481565b6102ab6105d6366004612281565b611082565b3480156105e757600080fd5b506102ab6105f6366004612474565b61136d565b34801561060757600080fd5b5060115461027690610100900460ff1681565b34801561062657600080fd5b506102ab610635366004612430565b611402565b34801561064657600080fd5b506102ab6106553660046124ab565b61144a565b34801561066657600080fd5b50600e5461058b906301000000900460ff1681565b34801561068757600080fd5b506102c2610696366004612281565b6115a9565b3480156106a757600080fd5b506102ab6106b6366004612527565b61171d565b3480156106c757600080fd5b50600e546106d69061ffff1681565b60405161ffff9091168152602001610282565b3480156106f557600080fd5b5061058b61070436600461244b565b60126020526000908152604090205460ff1681565b34801561072557600080fd5b506102766107343660046125ad565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561076e57600080fd5b506102c2611821565b34801561078357600080fd5b506102ab61079236600461244b565b6118af565b3480156107a357600080fd5b50600e5461058b90640100000000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b14806107ea57506001600160e01b03198216635b5e139f60e01b145b8061080557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461083e5760405162461bcd60e51b8152600401610835906125c9565b60405180910390fd5b600e805461ffff191661ffff92909216919091179055565b606060028054610865906125fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610891906125fe565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b60006108f382611947565b610910576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093782610fa6565b9050806001600160a01b0316836001600160a01b03160361096b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061098b57506109898133610734565b155b156109a9576040516367d9dca160e11b815260040160405180910390fd5b6109b4838383611980565b505050565b6008546001600160a01b031633146109e35760405162461bcd60e51b8152600401610835906125c9565b601055565b6008546001600160a01b03163314610a125760405162461bcd60e51b8152600401610835906125c9565b600c610a1e828261267e565b5050565b826daaeb6d7670e522a718067333cd4e3b15610b6d57336001600160a01b03821603610a5857610a538484846119dc565b610b78565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acb919061273e565b8015610b4e5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4e919061273e565b610b6d57604051633b79c77360e21b8152336004820152602401610835565b610b788484846119dc565b50505050565b6008546001600160a01b03163314610ba85760405162461bcd60e51b8152600401610835906125c9565b6000610bbb600154600054036000190190565b600e5490915061ffff16610bcf8483612771565b61ffff161115610c175760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610835565b6109b4828461ffff166119e7565b6008546001600160a01b03163314610c4f5760405162461bcd60e51b8152600401610835906125c9565b600b610a1e828261267e565b6008546001600160a01b03163314610c855760405162461bcd60e51b8152600401610835906125c9565b6011805460ff19811660ff90911615179055565b6008546001600160a01b03163314610cc35760405162461bcd60e51b8152600401610835906125c9565b6011805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b03163314610d0a5760405162461bcd60e51b8152600401610835906125c9565b600260095403610d5c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610835565b60026009556000610d756008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610dbf576040519150601f19603f3d011682016040523d82523d6000602084013e610dc4565b606091505b5050905080610dd257600080fd5b506001600955565b826daaeb6d7670e522a718067333cd4e3b15610f2057336001600160a01b03821603610e0b57610a53848484611a01565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e5a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e7e919061273e565b8015610f015750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610edd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f01919061273e565b610f2057604051633b79c77360e21b8152336004820152602401610835565b610b78848484611a01565b6008546001600160a01b03163314610f555760405162461bcd60e51b8152600401610835906125c9565b600d55565b6008546001600160a01b03163314610f845760405162461bcd60e51b8152600401610835906125c9565b600e805460ff9092166401000000000264ff0000000019909216919091179055565b6000610fb182611a1c565b5192915050565b60006001600160a01b038216610fe1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146110315760405162461bcd60e51b8152600401610835906125c9565b61103b6000611b45565b565b6008546001600160a01b031633146110675760405162461bcd60e51b8152600401610835906125c9565b600a610a1e828261267e565b606060038054610865906125fe565b3233146110d15760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610835565b60115460ff16156111245760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610835565b600e546111369061ffff166001612771565b61ffff168161114c600154600054036000190190565b6111569190612797565b1061118d5760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610835565b600e546301000000900460ff16816111a433610fb8565b6111ae9190612797565b11156111fc5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610835565b60105481600f5461120d9190612797565b1115611270573481600d5461122291906127af565b111561126b5760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610835565b611360565b600e54640100000000900460ff168161128833610fb8565b6112929190612797565b111561131b573481600d546112a791906127af565b11156112f05760405162461bcd60e51b8152602060048201526018602482015277125b98dbdc9c9958dd08115512081d985b1d59481cd95b9d60421b6044820152606401610835565b600e5462010000900460ff1681111561126b5760405162461bcd60e51b8152600401610835906127ce565b600e54640100000000900460ff168111156113485760405162461bcd60e51b8152600401610835906127ce565b80600f600082825461135a9190612797565b90915550505b61136a33826119e7565b50565b336001600160a01b038316036113965760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461142c5760405162461bcd60e51b8152600401610835906125c9565b600e805460ff909216620100000262ff000019909216919091179055565b836daaeb6d7670e522a718067333cd4e3b1561159657336001600160a01b038216036114815761147c85858585611b97565b6115a2565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f4919061273e565b80156115775750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611553573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611577919061273e565b61159657604051633b79c77360e21b8152336004820152602401610835565b6115a285858585611b97565b5050505050565b60606115b482611947565b6116185760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610835565b601154610100900460ff1615156000036116be57600c8054611639906125fe565b80601f0160208091040260200160405190810160405280929190818152602001828054611665906125fe565b80156116b25780601f10611687576101008083540402835291602001916116b2565b820191906000526020600020905b81548152906001019060200180831161169557829003601f168201915b50505050509050919050565b60006116c8611be2565b905060008151116116e85760405180602001604052806000815250611716565b806116f284611bf1565b600b60405160200161170693929190612810565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146117475760405162461bcd60e51b8152600401610835906125c9565b600061175a600154600054036000190190565b9050600061176b8360ff87166127af565b600e5490915061ffff908116906117859083908516612797565b11156117c95760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610835565b60005b83811015611819576118078585838181106117e9576117e96128b0565b90506020020160208101906117fe919061244b565b8760ff166119e7565b80611811816128c6565b9150506117cc565b505050505050565b600c805461182e906125fe565b80601f016020809104026020016040519081016040528092919081815260200182805461185a906125fe565b80156118a75780601f1061187c576101008083540402835291602001916118a7565b820191906000526020600020905b81548152906001019060200180831161188a57829003601f168201915b505050505081565b6008546001600160a01b031633146118d95760405162461bcd60e51b8152600401610835906125c9565b6001600160a01b03811661193e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610835565b61136a81611b45565b60008160011115801561195b575060005482105b8015610805575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109b4838383611cfa565b610a1e828260405180602001604052806000815250611ee7565b6109b48383836040518060200160405280600081525061144a565b60408051606081018252600080825260208201819052918101919091528180600111158015611a4c575060005481105b15611b2c57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611b2a5780516001600160a01b031615611ac0579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611b25579392505050565b611ac0565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ba2848484611cfa565b6001600160a01b0383163b15158015611bc45750611bc284848484611ef4565b155b15610b78576040516368d2bf6b60e11b815260040160405180910390fd5b6060600a8054610865906125fe565b606081600003611c185750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c425780611c2c816128c6565b9150611c3b9050600a836128f5565b9150611c1c565b60008167ffffffffffffffff811115611c5d57611c5d6122db565b6040519080825280601f01601f191660200182016040528015611c87576020820181803683370190505b5090505b8415611cf257611c9c600183612909565b9150611ca9600a86612920565b611cb4906030612797565b60f81b818381518110611cc957611cc96128b0565b60200101906001600160f81b031916908160001a905350611ceb600a866128f5565b9450611c8b565b949350505050565b6000611d0582611a1c565b9050836001600160a01b031681600001516001600160a01b031614611d3c5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611d5a5750611d5a8533610734565b80611d75575033611d6a846108e8565b6001600160a01b0316145b905080611d9557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611dbc57604051633a954ecd60e21b815260040160405180910390fd5b611dc860008487611980565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611e9e576000548214611e9e578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115a2565b6109b48383836001611fdf565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f29903390899088908890600401612934565b6020604051808303816000875af1925050508015611f64575060408051601f3d908101601f19168201909252611f6191810190612971565b60015b611fc2573d808015611f92576040519150601f19603f3d011682016040523d82523d6000602084013e611f97565b606091505b508051600003611fba576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b03851661200857604051622e076360e81b815260040160405180910390fd5b836000036120295760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156120db57506001600160a01b0387163b15155b15612163575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461212c6000888480600101955088611ef4565b612149576040516368d2bf6b60e11b815260040160405180910390fd5b8082036120e157826000541461215e57600080fd5b6121a8565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203612164575b506000556115a2565b6001600160e01b03198116811461136a57600080fd5b6000602082840312156121d957600080fd5b8135611716816121b1565b803561ffff811681146121f657600080fd5b919050565b60006020828403121561220d57600080fd5b611716826121e4565b60005b83811015612231578181015183820152602001612219565b83811115610b785750506000910152565b6000815180845261225a816020860160208601612216565b601f01601f19169290920160200192915050565b6020815260006117166020830184612242565b60006020828403121561229357600080fd5b5035919050565b80356001600160a01b03811681146121f657600080fd5b600080604083850312156122c457600080fd5b6122cd8361229a565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561230c5761230c6122db565b604051601f8501601f19908116603f01168101908282118183101715612334576123346122db565b8160405280935085815286868601111561234d57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561237957600080fd5b813567ffffffffffffffff81111561239057600080fd5b8201601f810184136123a157600080fd5b611cf2848235602084016122f1565b6000806000606084860312156123c557600080fd5b6123ce8461229a565b92506123dc6020850161229a565b9150604084013590509250925092565b600080604083850312156123ff57600080fd5b612408836121e4565b91506124166020840161229a565b90509250929050565b803560ff811681146121f657600080fd5b60006020828403121561244257600080fd5b6117168261241f565b60006020828403121561245d57600080fd5b6117168261229a565b801515811461136a57600080fd5b6000806040838503121561248757600080fd5b6124908361229a565b915060208301356124a081612466565b809150509250929050565b600080600080608085870312156124c157600080fd5b6124ca8561229a565b93506124d86020860161229a565b925060408501359150606085013567ffffffffffffffff8111156124fb57600080fd5b8501601f8101871361250c57600080fd5b61251b878235602084016122f1565b91505092959194509250565b60008060006040848603121561253c57600080fd5b6125458461241f565b9250602084013567ffffffffffffffff8082111561256257600080fd5b818601915086601f83011261257657600080fd5b81358181111561258557600080fd5b8760208260051b850101111561259a57600080fd5b6020830194508093505050509250925092565b600080604083850312156125c057600080fd5b6124088361229a565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061261257607f821691505b60208210810361263257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156109b457600081815260208120601f850160051c8101602086101561265f5750805b601f850160051c820191505b818110156118195782815560010161266b565b815167ffffffffffffffff811115612698576126986122db565b6126ac816126a684546125fe565b84612638565b602080601f8311600181146126e157600084156126c95750858301515b600019600386901b1c1916600185901b178555611819565b600085815260208120601f198616915b82811015612710578886015182559484019460019091019084016126f1565b508582101561272e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561275057600080fd5b815161171681612466565b634e487b7160e01b600052601160045260246000fd5b600061ffff80831681851680830382111561278e5761278e61275b565b01949350505050565b600082198211156127aa576127aa61275b565b500190565b60008160001904831182151516156127c9576127c961275b565b500290565b60208082526022908201527f4d6178206d696e747320706572207472616e73616374696f6e20657863656564604082015261195960f21b606082015260800190565b6000845160206128238285838a01612216565b8551918401916128368184848a01612216565b8554920191600090612847816125fe565b6001828116801561285f5760018114612874576128a0565b60ff19841687528215158302870194506128a0565b896000528560002060005b848110156128985781548982015290830190870161287f565b505082870194505b50929a9950505050505050505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016128d8576128d861275b565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612904576129046128df565b500490565b60008282101561291b5761291b61275b565b500390565b60008261292f5761292f6128df565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061296790830184612242565b9695505050505050565b60006020828403121561298357600080fd5b8151611716816121b156fea264697066735822122084ff1ec91337b78170ca59a74012c1bb6b6f8cca049cf6e141095b95eab20ae664736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000084f776c6162616d6100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034f574c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Owlabama
Arg [1] : _tokenSymbol (string): OWL
Arg [2] : _hiddenMetadataUri (string): n

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4f776c6162616d61000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4f574c0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51679:5780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27410:305;;;;;;;;;;-1:-1:-1;27410:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27410:305:0;;;;;;;;54758:97;;;;;;;;;;-1:-1:-1;54758:97:0;;;;;:::i;:::-;;:::i;:::-;;30523:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32026:204::-;;;;;;;;;;-1:-1:-1;32026:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2045:32:1;;;2027:51;;2015:2;2000:18;32026:204:0;1881:203:1;31589:371:0;;;;;;;;;;-1:-1:-1;31589:371:0;;;;;:::i;:::-;;:::i;55835:129::-;;;;;;;;;;-1:-1:-1;55835:129:0;;;;;:::i;:::-;;:::i;55731:102::-;;;;;;;;;;-1:-1:-1;55731:102:0;;;;;:::i;:::-;;:::i;51979:33::-;;;;;;;;;;;;;;;;;;;3897:25:1;;;3885:2;3870:18;51979:33:0;3751:177:1;26659:303:0;;;;;;;;;;;;26516:1;26913:12;26703:7;26897:13;:28;-1:-1:-1;;26897:46:0;;26659:303;52199:39;;;;;;;;;;;;;;;;56908:159;;;;;;;;;;-1:-1:-1;56908:159:0;;;;;:::i;:::-;;:::i;53943:326::-;;;;;;;;;;-1:-1:-1;53943:326:0;;;;;:::i;:::-;;:::i;55514:102::-;;;;;;;;;;-1:-1:-1;55514:102:0;;;;;:::i;:::-;;:::i;55970:71::-;;;;;;;;;;;;;:::i;56128:70::-;;;;;;;;;;;;;:::i;56322:475::-;;;;;;;;;;;;;:::i;57073:167::-;;;;;;;;;;-1:-1:-1;57073:167:0;;;;;:::i;:::-;;:::i;56047:76::-;;;;;;;;;;-1:-1:-1;56047:76:0;;;;;:::i;:::-;;:::i;55367:134::-;;;;;;;;;;-1:-1:-1;55367:134:0;;;;;:::i;:::-;;:::i;52354:25::-;;;;;;;;;;-1:-1:-1;52354:25:0;;;;;;;;30331:125;;;;;;;;;;-1:-1:-1;30331:125:0;;;;;:::i;:::-;;:::i;27779:206::-;;;;;;;;;;-1:-1:-1;27779:206:0;;;;;:::i;:::-;;:::i;46232:103::-;;;;;;;;;;;;;:::i;55624:102::-;;;;;;;;;;-1:-1:-1;55624:102:0;;;;;:::i;:::-;;:::i;45580:87::-;;;;;;;;;;-1:-1:-1;45653:6:0;;-1:-1:-1;;;;;45653:6:0;45580:87;;52061:35;;;;;;;;;;-1:-1:-1;52061:35:0;;;;;;;;;;;;;;5240:4:1;5228:17;;;5210:36;;5198:2;5183:18;52061:35:0;5068:184:1;30692:104:0;;;;;;;;;;;;;:::i;52246:37::-;;;;;;;;;;;;;;;;52797:1140;;;;;;:::i;:::-;;:::i;32302:287::-;;;;;;;;;;-1:-1:-1;32302:287:0;;;;;:::i;:::-;;:::i;52384:25::-;;;;;;;;;;-1:-1:-1;52384:25:0;;;;;;;;;;;56204:107;;;;;;;;;;-1:-1:-1;56204:107:0;;;;;:::i;:::-;;:::i;57246:210::-;;;;;;;;;;-1:-1:-1;57246:210:0;;;;;:::i;:::-;;:::i;52102:40::-;;;;;;;;;;-1:-1:-1;52102:40:0;;;;;;;;;;;54870:490;;;;;;;;;;-1:-1:-1;54870:490:0;;;;;:::i;:::-;;:::i;54275:472::-;;;;;;;;;;-1:-1:-1;54275:472:0;;;;;:::i;:::-;;:::i;52026:30::-;;;;;;;;;;-1:-1:-1;52026:30:0;;;;;;;;;;;7236:6:1;7224:19;;;7206:38;;7194:2;7179:18;52026:30:0;7062:188:1;52417:53:0;;;;;;;;;;-1:-1:-1;52417:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32660:164;;;;;;;;;;-1:-1:-1;32660:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32781:25:0;;;32757:4;32781:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32660:164;51939:23;;;;;;;;;;;;;:::i;46490:201::-;;;;;;;;;;-1:-1:-1;46490:201:0;;;;;:::i;:::-;;:::i;52149:43::-;;;;;;;;;;-1:-1:-1;52149:43:0;;;;;;;;;;;27410:305;27512:4;-1:-1:-1;;;;;;27549:40:0;;-1:-1:-1;;;27549:40:0;;:105;;-1:-1:-1;;;;;;;27606:48:0;;-1:-1:-1;;;27606:48:0;27549:105;:158;;;-1:-1:-1;;;;;;;;;;17444:40:0;;;27671:36;27529:178;27410:305;-1:-1:-1;;27410:305:0:o;54758:97::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;;;;;;;;;54827:9:::1;:22:::0;;-1:-1:-1;;54827:22:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;54758:97::o;30523:100::-;30577:13;30610:5;30603:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30523:100;:::o;32026:204::-;32094:7;32119:16;32127:7;32119;:16::i;:::-;32114:64;;32144:34;;-1:-1:-1;;;32144:34:0;;;;;;;;;;;32114:64;-1:-1:-1;32198:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32198:24:0;;32026:204::o;31589:371::-;31662:13;31678:24;31694:7;31678:15;:24::i;:::-;31662:40;;31723:5;-1:-1:-1;;;;;31717:11:0;:2;-1:-1:-1;;;;;31717:11:0;;31713:48;;31737:24;;-1:-1:-1;;;31737:24:0;;;;;;;;;;;31713:48;5885:10;-1:-1:-1;;;;;31778:21:0;;;;;;:63;;-1:-1:-1;31804:37:0;31821:5;5885:10;32660:164;:::i;31804:37::-;31803:38;31778:63;31774:138;;;31865:35;;-1:-1:-1;;;31865:35:0;;;;;;;;;;;31774:138;31924:28;31933:2;31937:7;31946:5;31924:8;:28::i;:::-;31651:309;31589:371;;:::o;55835:129::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;55928:14:::1;:30:::0;55835:129::o;55731:102::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;55805:9:::1;:22;55817:10:::0;55805:9;:22:::1;:::i;:::-;;55731:102:::0;:::o;56908:159::-;57009:4;49457:42;50597:43;:47;50593:699;;50884:10;-1:-1:-1;;;;;50876:18:0;;;50872:85;;57022:39:::1;57043:4;57049:2;57053:7;57022:20;:39::i;:::-;50935:7:::0;;50872:85;51017:67;;-1:-1:-1;;;51017:67:0;;51066:4;51017:67;;;10682:34:1;51073:10:0;10732:18:1;;;10725:43;49457:42:0;;51017:40;;10617:18:1;;51017:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;51113:61:0;;-1:-1:-1;;;51113:61:0;;51162:4;51113:61;;;10682:34:1;-1:-1:-1;;;;;10752:15:1;;10732:18;;;10725:43;49457:42:0;;51113:40;;10617:18:1;;51113:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50971:310;;51235:30;;-1:-1:-1;;;51235:30:0;;51254:10;51235:30;;;2027:51:1;2000:18;;51235:30:0;1881:203:1;50971:310:0;57022:39:::1;57043:4;57049:2;57053:7;57022:20;:39::i;:::-;56908:159:::0;;;;:::o;53943:326::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;54026:18:::1;54054:13;26516:1:::0;26913:12;26703:7;26897:13;:28;-1:-1:-1;;26897:46:0;;26659:303;54054:13:::1;54112:9;::::0;54026:42;;-1:-1:-1;54112:9:0::1;;54083:25;54097:11:::0;54026:42;54083:25:::1;:::i;:::-;:38;;;;54075:70;;;::::0;-1:-1:-1;;;54075:70:0;;11592:2:1;54075:70:0::1;::::0;::::1;11574:21:1::0;11631:2;11611:18;;;11604:30;-1:-1:-1;;;11650:18:1;;;11643:49;11709:18;;54075:70:0::1;11390:343:1::0;54075:70:0::1;54153:34;54163:9;54175:11;54153:34;;:9;:34::i;55514:102::-:0;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;55588:9:::1;:22;55600:10:::0;55588:9;:22:::1;:::i;55970:71::-:0;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;56027:6:::1;::::0;;-1:-1:-1;;56017:16:0;::::1;56027:6;::::0;;::::1;56026:7;56017:16;::::0;;55970:71::o;56128:70::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;56187:6:::1;::::0;;-1:-1:-1;;56177:16:0;::::1;56187:6;::::0;;;::::1;;;56186:7;56177:16:::0;;::::1;;::::0;;56128:70::o;56322:475::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;2057:1:::1;2655:7;;:19:::0;2647:63:::1;;;::::0;-1:-1:-1;;;2647:63:0;;11940:2:1;2647:63:0::1;::::0;::::1;11922:21:1::0;11979:2;11959:18;;;11952:30;12018:33;11998:18;;;11991:61;12069:18;;2647:63:0::1;11738:355:1::0;2647:63:0::1;2057:1;2788:7;:18:::0;56619:7:::2;56640;45653:6:::0;;-1:-1:-1;;;;;45653:6:0;;45580:87;56640:7:::2;-1:-1:-1::0;;;;;56632:21:0::2;56661;56632:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56618:69;;;56702:2;56694:11;;;::::0;::::2;;-1:-1:-1::0;2013:1:0::1;2967:7;:22:::0;56322:475::o;57073:167::-;57178:4;49457:42;50597:43;:47;50593:699;;50884:10;-1:-1:-1;;;;;50876:18:0;;;50872:85;;57191:43:::1;57216:4;57222:2;57226:7;57191:24;:43::i;50872:85::-:0;51017:67;;-1:-1:-1;;;51017:67:0;;51066:4;51017:67;;;10682:34:1;51073:10:0;10732:18:1;;;10725:43;49457:42:0;;51017:40;;10617:18:1;;51017:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;51113:61:0;;-1:-1:-1;;;51113:61:0;;51162:4;51113:61;;;10682:34:1;-1:-1:-1;;;;;10752:15:1;;10732:18;;;10725:43;49457:42:0;;51113:40;;10617:18:1;;51113:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50971:310;;51235:30;;-1:-1:-1;;;51235:30:0;;51254:10;51235:30;;;2027:51:1;2000:18;;51235:30:0;1881:203:1;50971:310:0;57191:43:::1;57216:4;57222:2;57226:7;57191:24;:43::i;56047:76::-:0;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;56103:4:::1;:12:::0;56047:76::o;55367:134::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;55441:26:::1;:35:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;55441:35:0;;::::1;::::0;;;::::1;::::0;;55367:134::o;30331:125::-;30395:7;30422:21;30435:7;30422:12;:21::i;:::-;:26;;30331:125;-1:-1:-1;;30331:125:0:o;27779:206::-;27843:7;-1:-1:-1;;;;;27867:19:0;;27863:60;;27895:28;;-1:-1:-1;;;27895:28:0;;;;;;;;;;;27863:60;-1:-1:-1;;;;;;27949:19:0;;;;;:12;:19;;;;;:27;;;;27779:206::o;46232:103::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;46297:30:::1;46324:1;46297:18;:30::i;:::-;46232:103::o:0;55624:102::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;55698:9:::1;:22;55710:10:::0;55698:9;:22:::1;:::i;30692:104::-:0;30748:13;30781:7;30774:14;;;;;:::i;52797:1140::-;52711:9;52724:10;52711:23;52703:66;;;;-1:-1:-1;;;52703:66:0;;12510:2:1;52703:66:0;;;12492:21:1;12549:2;12529:18;;;12522:30;12588:32;12568:18;;;12561:60;12638:18;;52703:66:0;12308:354:1;52703:66:0;52902:6:::1;::::0;::::1;;52901:7;52893:43;;;::::0;-1:-1:-1;;;52893:43:0;;12869:2:1;52893:43:0::1;::::0;::::1;12851:21:1::0;12908:2;12888:18;;;12881:30;12947:25;12927:18;;;12920:53;12990:18;;52893:43:0::1;12667:347:1::0;52893:43:0::1;52981:9;::::0;:13:::1;::::0;:9:::1;;::::0;:13:::1;:::i;:::-;52951:43;;52967:11;52951:13;26516:1:::0;26913:12;26703:7;26897:13;:28;-1:-1:-1;;26897:46:0;;26659:303;52951:13:::1;:27;;;;:::i;:::-;:43;52943:63;;;::::0;-1:-1:-1;;;52943:63:0;;13354:2:1;52943:63:0::1;::::0;::::1;13336:21:1::0;13393:1;13373:18;;;13366:29;-1:-1:-1;;;13411:18:1;;;13404:37;13458:18;;52943:63:0::1;13152:330:1::0;52943:63:0::1;53062:22;::::0;;;::::1;;;53047:11:::0;53023:21:::1;53033:10;53023:9;:21::i;:::-;:35;;;;:::i;:::-;:61;;53014:103;;;::::0;-1:-1:-1;;;53014:103:0;;13689:2:1;53014:103:0::1;::::0;::::1;13671:21:1::0;13728:2;13708:18;;;13701:30;13767;13747:18;;;13740:58;13815:18;;53014:103:0::1;13487:352:1::0;53014:103:0::1;53172:14;;53158:11;53135:20;;:34;;;;:::i;:::-;:51;53132:759;;;53244:9;53228:11;53221:4;;:18;;;;:::i;:::-;53220:33;;53198:107;;;::::0;-1:-1:-1;;;53198:107:0;;14219:2:1;53198:107:0::1;::::0;::::1;14201:21:1::0;14258:2;14238:18;;;14231:30;-1:-1:-1;;;14277:18:1;;;14270:54;14341:18;;53198:107:0::1;14017:348:1::0;53198:107:0::1;53132:759;;;53378:26;::::0;;;::::1;;;53364:11:::0;53340:21:::1;53350:10;53340:9;:21::i;:::-;:35;;;;:::i;:::-;:64;53336:548;;;53463:9;53447:11;53440:4;;:18;;;;:::i;:::-;53439:33;;53417:107;;;::::0;-1:-1:-1;;;53417:107:0;;14219:2:1;53417:107:0::1;::::0;::::1;14201:21:1::0;14258:2;14238:18;;;14231:30;-1:-1:-1;;;14277:18:1;;;14270:54;14341:18;;53417:107:0::1;14017:348:1::0;53417:107:0::1;53572:18;::::0;;;::::1;;;53557:33:::0;::::1;;53535:117;;;;-1:-1:-1::0;;;53535:117:0::1;;;;;;;:::i;53336:548::-;53726:26;::::0;;;::::1;;;53711:41:::0;::::1;;53685:137;;;;-1:-1:-1::0;;;53685:137:0::1;;;;;;;:::i;:::-;53861:11;53837:20;;:35;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;53336:548:0::1;53897:34;53907:10;53919:11;53897:9;:34::i;:::-;52797:1140:::0;:::o;32302:287::-;5885:10;-1:-1:-1;;;;;32401:24:0;;;32397:54;;32434:17;;-1:-1:-1;;;32434:17:0;;;;;;;;;;;32397:54;5885:10;32464:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32464:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32464:53:0;;;;;;;;;;32533:48;;540:41:1;;;32464:42:0;;5885:10;32533:48;;513:18:1;32533:48:0;;;;;;;32302:287;;:::o;56204:107::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;56276:18:::1;:27:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;56276:27:0;;::::1;::::0;;;::::1;::::0;;56204:107::o;57246:210::-;57385:4;49457:42;50597:43;:47;50593:699;;50884:10;-1:-1:-1;;;;;50876:18:0;;;50872:85;;57401:49:::1;57426:4;57432:2;57436:7;57445:4;57401:24;:49::i;:::-;50935:7:::0;;50872:85;51017:67;;-1:-1:-1;;;51017:67:0;;51066:4;51017:67;;;10682:34:1;51073:10:0;10732:18:1;;;10725:43;49457:42:0;;51017:40;;10617:18:1;;51017:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;-1:-1:-1;51113:61:0;;-1:-1:-1;;;51113:61:0;;51162:4;51113:61;;;10682:34:1;-1:-1:-1;;;;;10752:15:1;;10732:18;;;10725:43;49457:42:0;;51113:40;;10617:18:1;;51113:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50971:310;;51235:30;;-1:-1:-1;;;51235:30:0;;51254:10;51235:30;;;2027:51:1;2000:18;;51235:30:0;1881:203:1;50971:310:0;57401:49:::1;57426:4;57432:2;57436:7;57445:4;57401:24;:49::i;:::-;57246:210:::0;;;;;:::o;54870:490::-;54969:13;55010:17;55018:8;55010:7;:17::i;:::-;54994:98;;;;-1:-1:-1;;;54994:98:0;;14975:2:1;54994:98:0;;;14957:21:1;15014:2;14994:18;;;14987:30;15053:34;15033:18;;;15026:62;-1:-1:-1;;;15104:18:1;;;15097:45;15159:19;;54994:98:0;14773:411:1;54994:98:0;55110:6;;;;;;;:15;;55120:5;55110:15;55105:50;;55142:9;55135:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54870:490;;;:::o;55105:50::-;55169:28;55200:10;:8;:10::i;:::-;55169:41;;55255:1;55230:14;55224:28;:32;:130;;;;;;;;;;;;;;;;;55292:14;55308:19;:8;:17;:19::i;:::-;55329:9;55275:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55224:130;55217:137;54870:490;-1:-1:-1;;;54870:490:0:o;54275:472::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;54374:18:::1;54402:13;26516:1:::0;26913:12;26703:7;26897:13;:28;-1:-1:-1;;26897:46:0;;26659:303;54402:13:::1;54374:42:::0;-1:-1:-1;54424:16:0::1;54445:36;54465:9:::0;54445:36:::1;::::0;::::1;;:::i;:::-;54525:9;::::0;54424:57;;-1:-1:-1;54525:9:0::1;::::0;;::::1;::::0;54496:25:::1;::::0;54424:57;;54496:25;::::1;;:::i;:::-;:38;;54488:70;;;::::0;-1:-1:-1;;;54488:70:0;;11592:2:1;54488:70:0::1;::::0;::::1;11574:21:1::0;11631:2;11611:18;;;11604:30;-1:-1:-1;;;11650:18:1;;;11643:49;11709:18;;54488:70:0::1;11390:343:1::0;54488:70:0::1;54571:9;54566:116;54586:20:::0;;::::1;54566:116;;;54628:42;54638:9;;54648:1;54638:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;54652:17;54628:42;;:9;:42::i;:::-;54608:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54566:116;;;-1:-1:-1::0;;;;;;54275:472:0:o;51939:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46490:201::-;45653:6;;-1:-1:-1;;;;;45653:6:0;5885:10;45800:23;45792:69;;;;-1:-1:-1;;;45792:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46579:22:0;::::1;46571:73;;;::::0;-1:-1:-1;;;46571:73:0;;16898:2:1;46571:73:0::1;::::0;::::1;16880:21:1::0;16937:2;16917:18;;;16910:30;16976:34;16956:18;;;16949:62;-1:-1:-1;;;17027:18:1;;;17020:36;17073:19;;46571:73:0::1;16696:402:1::0;46571:73:0::1;46655:28;46674:8;46655:18;:28::i;34012:187::-:0;34069:4;34112:7;26516:1;34093:26;;:53;;;;;34133:13;;34123:7;:23;34093:53;:98;;;;-1:-1:-1;;34164:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34164:27:0;;;;34163:28;;34012:187::o;42182:196::-;42297:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42297:29:0;-1:-1:-1;;;;;42297:29:0;;;;;;;;;42342:28;;42297:24;;42342:28;;;;;;;42182:196;;;:::o;32891:170::-;33025:28;33035:4;33041:2;33045:7;33025:9;:28::i;34207:104::-;34276:27;34286:2;34290:8;34276:27;;;;;;;;;;;;:9;:27::i;33132:185::-;33270:39;33287:4;33293:2;33297:7;33270:39;;;;;;;;;;;;:16;:39::i;29160:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29271:7:0;;26516:1;29320:23;;:47;;;;;29354:13;;29347:4;:20;29320:47;29316:886;;;29388:31;29422:17;;;:11;:17;;;;;;;;;29388:51;;;;;;;;;-1:-1:-1;;;;;29388:51:0;;;;-1:-1:-1;;;29388:51:0;;;;;;;;;;;-1:-1:-1;;;29388:51:0;;;;;;;;;;;;;;29458:729;;29508:14;;-1:-1:-1;;;;;29508:28:0;;29504:101;;29572:9;29160:1109;-1:-1:-1;;;29160:1109:0:o;29504:101::-;-1:-1:-1;;;29947:6:0;29992:17;;;;:11;:17;;;;;;;;;29980:29;;;;;;;;;-1:-1:-1;;;;;29980:29:0;;;;;-1:-1:-1;;;29980:29:0;;;;;;;;;;;-1:-1:-1;;;29980:29:0;;;;;;;;;;;;;30040:28;30036:109;;30108:9;29160:1109;-1:-1:-1;;;29160:1109:0:o;30036:109::-;29907:261;;;29369:833;29316:886;30230:31;;-1:-1:-1;;;30230:31:0;;;;;;;;;;;46851:191;46944:6;;;-1:-1:-1;;;;;46961:17:0;;;-1:-1:-1;;;;;;46961:17:0;;;;;;;46994:40;;46944:6;;;46961:17;46944:6;;46994:40;;46925:16;;46994:40;46914:128;46851:191;:::o;33388:369::-;33555:28;33565:4;33571:2;33575:7;33555:9;:28::i;:::-;-1:-1:-1;;;;;33598:13:0;;7547:19;:23;;33598:76;;;;;33618:56;33649:4;33655:2;33659:7;33668:5;33618:30;:56::i;:::-;33617:57;33598:76;33594:156;;;33698:40;;-1:-1:-1;;;33698:40:0;;;;;;;;;;;56805:97;56858:13;56887:9;56880:16;;;;;:::i;3367:723::-;3423:13;3644:5;3653:1;3644:10;3640:53;;-1:-1:-1;;3671:10:0;;;;;;;;;;;;-1:-1:-1;;;3671:10:0;;;;;3367:723::o;3640:53::-;3718:5;3703:12;3759:78;3766:9;;3759:78;;3792:8;;;;:::i;:::-;;-1:-1:-1;3815:10:0;;-1:-1:-1;3823:2:0;3815:10;;:::i;:::-;;;3759:78;;;3847:19;3879:6;3869:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3869:17:0;;3847:39;;3897:154;3904:10;;3897:154;;3931:11;3941:1;3931:11;;:::i;:::-;;-1:-1:-1;4000:10:0;4008:2;4000:5;:10;:::i;:::-;3987:24;;:2;:24;:::i;:::-;3974:39;;3957:6;3964;3957:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3957:56:0;;;;;;;;-1:-1:-1;4028:11:0;4037:2;4028:11;;:::i;:::-;;;3897:154;;;4075:6;3367:723;-1:-1:-1;;;;3367:723:0:o;37125:2130::-;37240:35;37278:21;37291:7;37278:12;:21::i;:::-;37240:59;;37338:4;-1:-1:-1;;;;;37316:26:0;:13;:18;;;-1:-1:-1;;;;;37316:26:0;;37312:67;;37351:28;;-1:-1:-1;;;37351:28:0;;;;;;;;;;;37312:67;37392:22;5885:10;-1:-1:-1;;;;;37418:20:0;;;;:73;;-1:-1:-1;37455:36:0;37472:4;5885:10;32660:164;:::i;37455:36::-;37418:126;;;-1:-1:-1;5885:10:0;37508:20;37520:7;37508:11;:20::i;:::-;-1:-1:-1;;;;;37508:36:0;;37418:126;37392:153;;37563:17;37558:66;;37589:35;;-1:-1:-1;;;37589:35:0;;;;;;;;;;;37558:66;-1:-1:-1;;;;;37639:16:0;;37635:52;;37664:23;;-1:-1:-1;;;37664:23:0;;;;;;;;;;;37635:52;37808:35;37825:1;37829:7;37838:4;37808:8;:35::i;:::-;-1:-1:-1;;;;;38139:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38139:31:0;;;;;;;-1:-1:-1;;38139:31:0;;;;;;;38185:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38185:29:0;;;;;;;;;;;38265:20;;;:11;:20;;;;;;38300:18;;-1:-1:-1;;;;;;38333:49:0;;;;-1:-1:-1;;;38366:15:0;38333:49;;;;;;;;;;38656:11;;38716:24;;;;;38759:13;;38265:20;;38716:24;;38759:13;38755:384;;38969:13;;38954:11;:28;38950:174;;39007:20;;39076:28;;;;39050:54;;-1:-1:-1;;;39050:54:0;-1:-1:-1;;;;;;39050:54:0;;;-1:-1:-1;;;;;39007:20:0;;39050:54;;;;38950:174;38114:1036;;;39186:7;39182:2;-1:-1:-1;;;;;39167:27:0;39176:4;-1:-1:-1;;;;;39167:27:0;;;;;;;;;;;39205:42;56908:159;34674:163;34797:32;34803:2;34807:8;34817:5;34824:4;34797:5;:32::i;42870:667::-;43054:72;;-1:-1:-1;;;43054:72:0;;43033:4;;-1:-1:-1;;;;;43054:36:0;;;;;:72;;5885:10;;43105:4;;43111:7;;43120:5;;43054:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43054:72:0;;;;;;;;-1:-1:-1;;43054:72:0;;;;;;;;;;;;:::i;:::-;;;43050:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43288:6;:13;43305:1;43288:18;43284:235;;43334:40;;-1:-1:-1;;;43334:40:0;;;;;;;;;;;43284:235;43477:6;43471:13;43462:6;43458:2;43454:15;43447:38;43050:480;-1:-1:-1;;;;;;43173:55:0;-1:-1:-1;;;43173:55:0;;-1:-1:-1;42870:667:0;;;;;;:::o;35096:1775::-;35235:20;35258:13;-1:-1:-1;;;;;35286:16:0;;35282:48;;35311:19;;-1:-1:-1;;;35311:19:0;;;;;;;;;;;35282:48;35345:8;35357:1;35345:13;35341:44;;35367:18;;-1:-1:-1;;;35367:18:0;;;;;;;;;;;35341:44;-1:-1:-1;;;;;35736:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35795:49:0;;35736:44;;;;;;;;35795:49;;;;-1:-1:-1;;35736:44:0;;;;;;35795:49;;;;;;;;;;;;;;;;35861:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35911:66:0;;;;-1:-1:-1;;;35961:15:0;35911:66;;;;;;;;;;35861:25;36058:23;;;36102:4;:23;;;;-1:-1:-1;;;;;;36110:13:0;;7547:19;:23;;36110:15;36098:641;;;36146:314;36177:38;;36202:12;;-1:-1:-1;;;;;36177:38:0;;;36194:1;;36177:38;;36194:1;;36177:38;36243:69;36282:1;36286:2;36290:14;;;;;;36306:5;36243:30;:69::i;:::-;36238:174;;36348:40;;-1:-1:-1;;;36348:40:0;;;;;;;;;;;36238:174;36455:3;36439:12;:19;36146:314;;36541:12;36524:13;;:29;36520:43;;36555:8;;;36520:43;36098:641;;;36604:120;36635:40;;36660:14;;;;;-1:-1:-1;;;;;36635:40:0;;;36652:1;;36635:40;;36652:1;;36635:40;36719:3;36703:12;:19;36604:120;;36098:641;-1:-1:-1;36753:13:0;:28;36803:60;56908:159;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:159::-;659:20;;719:6;708:18;;698:29;;688:57;;741:1;738;731:12;688:57;592:159;;;:::o;756:184::-;814:6;867:2;855:9;846:7;842:23;838:32;835:52;;;883:1;880;873:12;835:52;906:28;924:9;906:28;:::i;945:258::-;1017:1;1027:113;1041:6;1038:1;1035:13;1027:113;;;1117:11;;;1111:18;1098:11;;;1091:39;1063:2;1056:10;1027:113;;;1158:6;1155:1;1152:13;1149:48;;;-1:-1:-1;;1193:1:1;1175:16;;1168:27;945:258::o;1208:::-;1250:3;1288:5;1282:12;1315:6;1310:3;1303:19;1331:63;1387:6;1380:4;1375:3;1371:14;1364:4;1357:5;1353:16;1331:63;:::i;:::-;1448:2;1427:15;-1:-1:-1;;1423:29:1;1414:39;;;;1455:4;1410:50;;1208:258;-1:-1:-1;;1208:258:1:o;1471:220::-;1620:2;1609:9;1602:21;1583:4;1640:45;1681:2;1670:9;1666:18;1658:6;1640:45;:::i;1696:180::-;1755:6;1808:2;1796:9;1787:7;1783:23;1779:32;1776:52;;;1824:1;1821;1814:12;1776:52;-1:-1:-1;1847:23:1;;1696:180;-1:-1:-1;1696:180:1:o;2089:173::-;2157:20;;-1:-1:-1;;;;;2206:31:1;;2196:42;;2186:70;;2252:1;2249;2242:12;2267:254;2335:6;2343;2396:2;2384:9;2375:7;2371:23;2367:32;2364:52;;;2412:1;2409;2402:12;2364:52;2435:29;2454:9;2435:29;:::i;:::-;2425:39;2511:2;2496:18;;;;2483:32;;-1:-1:-1;;;2267:254:1:o;2526:127::-;2587:10;2582:3;2578:20;2575:1;2568:31;2618:4;2615:1;2608:15;2642:4;2639:1;2632:15;2658:632;2723:5;2753:18;2794:2;2786:6;2783:14;2780:40;;;2800:18;;:::i;:::-;2875:2;2869:9;2843:2;2929:15;;-1:-1:-1;;2925:24:1;;;2951:2;2921:33;2917:42;2905:55;;;2975:18;;;2995:22;;;2972:46;2969:72;;;3021:18;;:::i;:::-;3061:10;3057:2;3050:22;3090:6;3081:15;;3120:6;3112;3105:22;3160:3;3151:6;3146:3;3142:16;3139:25;3136:45;;;3177:1;3174;3167:12;3136:45;3227:6;3222:3;3215:4;3207:6;3203:17;3190:44;3282:1;3275:4;3266:6;3258;3254:19;3250:30;3243:41;;;;2658:632;;;;;:::o;3295:451::-;3364:6;3417:2;3405:9;3396:7;3392:23;3388:32;3385:52;;;3433:1;3430;3423:12;3385:52;3473:9;3460:23;3506:18;3498:6;3495:30;3492:50;;;3538:1;3535;3528:12;3492:50;3561:22;;3614:4;3606:13;;3602:27;-1:-1:-1;3592:55:1;;3643:1;3640;3633:12;3592:55;3666:74;3732:7;3727:2;3714:16;3709:2;3705;3701:11;3666:74;:::i;3933:328::-;4010:6;4018;4026;4079:2;4067:9;4058:7;4054:23;4050:32;4047:52;;;4095:1;4092;4085:12;4047:52;4118:29;4137:9;4118:29;:::i;:::-;4108:39;;4166:38;4200:2;4189:9;4185:18;4166:38;:::i;:::-;4156:48;;4251:2;4240:9;4236:18;4223:32;4213:42;;3933:328;;;;;:::o;4266:258::-;4333:6;4341;4394:2;4382:9;4373:7;4369:23;4365:32;4362:52;;;4410:1;4407;4400:12;4362:52;4433:28;4451:9;4433:28;:::i;:::-;4423:38;;4480;4514:2;4503:9;4499:18;4480:38;:::i;:::-;4470:48;;4266:258;;;;;:::o;4529:156::-;4595:20;;4655:4;4644:16;;4634:27;;4624:55;;4675:1;4672;4665:12;4690:182;4747:6;4800:2;4788:9;4779:7;4775:23;4771:32;4768:52;;;4816:1;4813;4806:12;4768:52;4839:27;4856:9;4839:27;:::i;4877:186::-;4936:6;4989:2;4977:9;4968:7;4964:23;4960:32;4957:52;;;5005:1;5002;4995:12;4957:52;5028:29;5047:9;5028:29;:::i;5257:118::-;5343:5;5336:13;5329:21;5322:5;5319:32;5309:60;;5365:1;5362;5355:12;5380:315;5445:6;5453;5506:2;5494:9;5485:7;5481:23;5477:32;5474:52;;;5522:1;5519;5512:12;5474:52;5545:29;5564:9;5545:29;:::i;:::-;5535:39;;5624:2;5613:9;5609:18;5596:32;5637:28;5659:5;5637:28;:::i;:::-;5684:5;5674:15;;;5380:315;;;;;:::o;5700:667::-;5795:6;5803;5811;5819;5872:3;5860:9;5851:7;5847:23;5843:33;5840:53;;;5889:1;5886;5879:12;5840:53;5912:29;5931:9;5912:29;:::i;:::-;5902:39;;5960:38;5994:2;5983:9;5979:18;5960:38;:::i;:::-;5950:48;;6045:2;6034:9;6030:18;6017:32;6007:42;;6100:2;6089:9;6085:18;6072:32;6127:18;6119:6;6116:30;6113:50;;;6159:1;6156;6149:12;6113:50;6182:22;;6235:4;6227:13;;6223:27;-1:-1:-1;6213:55:1;;6264:1;6261;6254:12;6213:55;6287:74;6353:7;6348:2;6335:16;6330:2;6326;6322:11;6287:74;:::i;:::-;6277:84;;;5700:667;;;;;;;:::o;6372:685::-;6465:6;6473;6481;6534:2;6522:9;6513:7;6509:23;6505:32;6502:52;;;6550:1;6547;6540:12;6502:52;6573:27;6590:9;6573:27;:::i;:::-;6563:37;;6651:2;6640:9;6636:18;6623:32;6674:18;6715:2;6707:6;6704:14;6701:34;;;6731:1;6728;6721:12;6701:34;6769:6;6758:9;6754:22;6744:32;;6814:7;6807:4;6803:2;6799:13;6795:27;6785:55;;6836:1;6833;6826:12;6785:55;6876:2;6863:16;6902:2;6894:6;6891:14;6888:34;;;6918:1;6915;6908:12;6888:34;6971:7;6966:2;6956:6;6953:1;6949:14;6945:2;6941:23;6937:32;6934:45;6931:65;;;6992:1;6989;6982:12;6931:65;7023:2;7019;7015:11;7005:21;;7045:6;7035:16;;;;;6372:685;;;;;:::o;7255:260::-;7323:6;7331;7384:2;7372:9;7363:7;7359:23;7355:32;7352:52;;;7400:1;7397;7390:12;7352:52;7423:29;7442:9;7423:29;:::i;7520:356::-;7722:2;7704:21;;;7741:18;;;7734:30;7800:34;7795:2;7780:18;;7773:62;7867:2;7852:18;;7520:356::o;7881:380::-;7960:1;7956:12;;;;8003;;;8024:61;;8078:4;8070:6;8066:17;8056:27;;8024:61;8131:2;8123:6;8120:14;8100:18;8097:38;8094:161;;8177:10;8172:3;8168:20;8165:1;8158:31;8212:4;8209:1;8202:15;8240:4;8237:1;8230:15;8094:161;;7881:380;;;:::o;8392:545::-;8494:2;8489:3;8486:11;8483:448;;;8530:1;8555:5;8551:2;8544:17;8600:4;8596:2;8586:19;8670:2;8658:10;8654:19;8651:1;8647:27;8641:4;8637:38;8706:4;8694:10;8691:20;8688:47;;;-1:-1:-1;8729:4:1;8688:47;8784:2;8779:3;8775:12;8772:1;8768:20;8762:4;8758:31;8748:41;;8839:82;8857:2;8850:5;8847:13;8839:82;;;8902:17;;;8883:1;8872:13;8839:82;;9113:1352;9239:3;9233:10;9266:18;9258:6;9255:30;9252:56;;;9288:18;;:::i;:::-;9317:97;9407:6;9367:38;9399:4;9393:11;9367:38;:::i;:::-;9361:4;9317:97;:::i;:::-;9469:4;;9533:2;9522:14;;9550:1;9545:663;;;;10252:1;10269:6;10266:89;;;-1:-1:-1;10321:19:1;;;10315:26;10266:89;-1:-1:-1;;9070:1:1;9066:11;;;9062:24;9058:29;9048:40;9094:1;9090:11;;;9045:57;10368:81;;9515:944;;9545:663;8339:1;8332:14;;;8376:4;8363:18;;-1:-1:-1;;9581:20:1;;;9699:236;9713:7;9710:1;9707:14;9699:236;;;9802:19;;;9796:26;9781:42;;9894:27;;;;9862:1;9850:14;;;;9729:19;;9699:236;;;9703:3;9963:6;9954:7;9951:19;9948:201;;;10024:19;;;10018:26;-1:-1:-1;;10107:1:1;10103:14;;;10119:3;10099:24;10095:37;10091:42;10076:58;10061:74;;9948:201;-1:-1:-1;;;;;10195:1:1;10179:14;;;10175:22;10162:36;;-1:-1:-1;9113:1352:1:o;10779:245::-;10846:6;10899:2;10887:9;10878:7;10874:23;10870:32;10867:52;;;10915:1;10912;10905:12;10867:52;10947:9;10941:16;10966:28;10988:5;10966:28;:::i;11029:127::-;11090:10;11085:3;11081:20;11078:1;11071:31;11121:4;11118:1;11111:15;11145:4;11142:1;11135:15;11161:224;11200:3;11228:6;11261:2;11258:1;11254:10;11291:2;11288:1;11284:10;11322:3;11318:2;11314:12;11309:3;11306:21;11303:47;;;11330:18;;:::i;:::-;11366:13;;11161:224;-1:-1:-1;;;;11161:224:1:o;13019:128::-;13059:3;13090:1;13086:6;13083:1;13080:13;13077:39;;;13096:18;;:::i;:::-;-1:-1:-1;13132:9:1;;13019:128::o;13844:168::-;13884:7;13950:1;13946;13942:6;13938:14;13935:1;13932:21;13927:1;13920:9;13913:17;13909:45;13906:71;;;13957:18;;:::i;:::-;-1:-1:-1;13997:9:1;;13844:168::o;14370:398::-;14572:2;14554:21;;;14611:2;14591:18;;;14584:30;14650:34;14645:2;14630:18;;14623:62;-1:-1:-1;;;14716:2:1;14701:18;;14694:32;14758:3;14743:19;;14370:398::o;15189:1230::-;15413:3;15451:6;15445:13;15477:4;15490:51;15534:6;15529:3;15524:2;15516:6;15512:15;15490:51;:::i;:::-;15604:13;;15563:16;;;;15626:55;15604:13;15563:16;15648:15;;;15626:55;:::i;:::-;15770:13;;15703:20;;;15743:1;;15808:36;15770:13;15808:36;:::i;:::-;15863:1;15880:18;;;15907:141;;;;16062:1;16057:337;;;;15873:521;;15907:141;-1:-1:-1;;15942:24:1;;15928:39;;16019:16;;16012:24;15998:39;;15987:51;;;-1:-1:-1;15907:141:1;;16057:337;16088:6;16085:1;16078:17;16136:2;16133:1;16123:16;16161:1;16175:169;16189:8;16186:1;16183:15;16175:169;;;16271:14;;16256:13;;;16249:37;16314:16;;;;16206:10;;16175:169;;;16179:3;;16375:8;16368:5;16364:20;16357:27;;15873:521;-1:-1:-1;16410:3:1;;15189:1230;-1:-1:-1;;;;;;;;;;15189:1230:1:o;16424:127::-;16485:10;16480:3;16476:20;16473:1;16466:31;16516:4;16513:1;16506:15;16540:4;16537:1;16530:15;16556:135;16595:3;16616:17;;;16613:43;;16636:18;;:::i;:::-;-1:-1:-1;16683:1:1;16672:13;;16556:135::o;17103:127::-;17164:10;17159:3;17155:20;17152:1;17145:31;17195:4;17192:1;17185:15;17219:4;17216:1;17209:15;17235:120;17275:1;17301;17291:35;;17306:18;;:::i;:::-;-1:-1:-1;17340:9:1;;17235:120::o;17360:125::-;17400:4;17428:1;17425;17422:8;17419:34;;;17433:18;;:::i;:::-;-1:-1:-1;17470:9:1;;17360:125::o;17490:112::-;17522:1;17548;17538:35;;17553:18;;:::i;:::-;-1:-1:-1;17587:9:1;;17490:112::o;17607:489::-;-1:-1:-1;;;;;17876:15:1;;;17858:34;;17928:15;;17923:2;17908:18;;17901:43;17975:2;17960:18;;17953:34;;;18023:3;18018:2;18003:18;;17996:31;;;17801:4;;18044:46;;18070:19;;18062:6;18044:46;:::i;:::-;18036:54;17607:489;-1:-1:-1;;;;;;17607:489:1:o;18101:249::-;18170:6;18223:2;18211:9;18202:7;18198:23;18194:32;18191:52;;;18239:1;18236;18229:12;18191:52;18271:9;18265:16;18290:30;18314:5;18290:30;:::i

Swarm Source

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