ETH Price: $2,677.01 (-2.54%)

Token

Fooball Doge 2022 (FDOGE2022)
 

Overview

Max Total Supply

311 FDOGE2022

Holders

31

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 FDOGE2022
0xafb7466cf7a2d17b2f92134d9ddaabc47c7a824d
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:
FootballDoge2022

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-13
*/

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts 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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    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;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * 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 (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 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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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



pragma solidity >=0.7.0 <0.9.0;



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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 9999;
  uint256 public maxMintAmount = 10;
  uint256 public nftPerAddressLimit = 99;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = false;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is CURRENTLY paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
   
        if(addressMintedBalance[msg.sender] == 0){
            require(msg.value >= (cost * _mintAmount) - cost, "insufficient funds");
        }
        else {
            require(msg.value >= (cost * _mintAmount), "insufficient funds");
        }
    }
    
      addressMintedBalance[msg.sender] = addressMintedBalance[msg.sender] + _mintAmount;
      _safeMint(msg.sender, _mintAmount);
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  //only owner
  function superMint(uint256 _mintAmount) public payable onlyOwner {
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    
    addressMintedBalance[msg.sender] = addressMintedBalance[msg.sender] + _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"superMint","outputs":[],"stateMutability":"payable","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620001ff565b506000600b5561270f600c55600a600d556063600e55600f805462ffffff191690553480156200005757600080fd5b5060405162002c6638038062002c668339810160408190526200007a916200035c565b83518490849062000093906001906020850190620001ff565b508051620000a9906002906020840190620001ff565b505050620000c6620000c0620000e660201b60201c565b620000ea565b620000d1826200013c565b620000dc81620001a4565b5050505062000468565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b031633146200018b5760405162461bcd60e51b8152602060048201819052602482015260008051602062002c4683398151915260448201526064015b60405180910390fd5b8051620001a0906008906020840190620001ff565b5050565b6007546001600160a01b03163314620001ef5760405162461bcd60e51b8152602060048201819052602482015260008051602062002c46833981519152604482015260640162000182565b8051620001a090600a9060208401905b8280546200020d9062000415565b90600052602060002090601f0160209004810192826200023157600085556200027c565b82601f106200024c57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027c5782518255916020019190600101906200025f565b506200028a9291506200028e565b5090565b5b808211156200028a57600081556001016200028f565b600082601f830112620002b757600080fd5b81516001600160401b0380821115620002d457620002d462000452565b604051601f8301601f19908116603f01168101908282118183101715620002ff57620002ff62000452565b816040528381526020925086838588010111156200031c57600080fd5b600091505b8382101562000340578582018301518183018401529082019062000321565b83821115620003525760008385830101525b9695505050505050565b600080600080608085870312156200037357600080fd5b84516001600160401b03808211156200038b57600080fd5b6200039988838901620002a5565b95506020870151915080821115620003b057600080fd5b620003be88838901620002a5565b94506040870151915080821115620003d557600080fd5b620003e388838901620002a5565b93506060870151915080821115620003fa57600080fd5b506200040987828801620002a5565b91505092959194509250565b600181811c908216806200042a57607f821691505b602082108114156200044c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6127ce80620004786000396000f3fe60806040526004361061027d5760003560e01c80636c0360eb1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610735578063da3ef23f1461074b578063e985e9c51461076b578063edec5f27146107b4578063f2c4ce1e146107d4578063f2fde38b146107f457600080fd5b8063b88d4fde1461068a578063ba4e5c49146106aa578063ba7d2c76146106ca578063c6682862146106e0578063c87b56dd146106f5578063d0eb26b01461071557600080fd5b80638da5cb5b116101135780638da5cb5b146105ef57806395d89b411461060d5780639c70b51214610622578063a0712d6814610642578063a22cb46514610655578063a475b5dd1461067557600080fd5b80636c0360eb1461057257806370a0823114610587578063715018a6146105a75780637f00c7a6146105bc5780638415c954146105dc57600080fd5b80632f745c59116101f357806344a0d68a116101ac57806344a0d68a146104b95780634f6ccce7146104d957806351830227146104f957806355f804b3146105185780635c975abb146105385780636352211e1461055257600080fd5b80632f745c59146104045780633af32abf146104245780633c952764146104445780633ccfd60b1461046457806342842e0e1461046c578063438b63001461048c57600080fd5b8063095ea7b311610245578063095ea7b31461034857806313faede61461036857806318160ddd1461038c57806318cae269146103a1578063239c70ae146103ce57806323b872dd146103e457600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063081c8c4414610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461239a565b610814565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d236600461237f565b610881565b005b3480156102e557600080fd5b506102ee6108c7565b6040516102ae91906125a6565b34801561030757600080fd5b5061031b61031636600461241c565b610959565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102ee61099d565b34801561035457600080fd5b506102d76103633660046122e1565b610a2b565b34801561037457600080fd5b5061037e600b5481565b6040519081526020016102ae565b34801561039857600080fd5b5061037e610ab9565b3480156103ad57600080fd5b5061037e6103bc3660046121b2565b60116020526000908152604090205481565b3480156103da57600080fd5b5061037e600d5481565b3480156103f057600080fd5b506102d76103ff366004612200565b610ad8565b34801561041057600080fd5b5061037e61041f3660046122e1565b610ae3565b34801561043057600080fd5b506102a261043f3660046121b2565b610bdf565b34801561045057600080fd5b506102d761045f36600461237f565b610c49565b6102d7610c8f565b34801561047857600080fd5b506102d7610487366004612200565b610d2d565b34801561049857600080fd5b506104ac6104a73660046121b2565b610d48565b6040516102ae9190612562565b3480156104c557600080fd5b506102d76104d436600461241c565b610de9565b3480156104e557600080fd5b5061037e6104f436600461241c565b610e18565b34801561050557600080fd5b50600f546102a290610100900460ff1681565b34801561052457600080fd5b506102d76105333660046123d4565b610ec2565b34801561054457600080fd5b50600f546102a29060ff1681565b34801561055e57600080fd5b5061031b61056d36600461241c565b610f03565b34801561057e57600080fd5b506102ee610f15565b34801561059357600080fd5b5061037e6105a23660046121b2565b610f22565b3480156105b357600080fd5b506102d7610f70565b3480156105c857600080fd5b506102d76105d736600461241c565b610fa6565b6102d76105ea36600461241c565b610fd5565b3480156105fb57600080fd5b506007546001600160a01b031661031b565b34801561061957600080fd5b506102ee611109565b34801561062e57600080fd5b50600f546102a29062010000900460ff1681565b6102d761065036600461241c565b611118565b34801561066157600080fd5b506102d76106703660046122b7565b6113ed565b34801561068157600080fd5b506102d7611483565b34801561069657600080fd5b506102d76106a536600461223c565b6114be565b3480156106b657600080fd5b5061031b6106c536600461241c565b6114f8565b3480156106d657600080fd5b5061037e600e5481565b3480156106ec57600080fd5b506102ee611522565b34801561070157600080fd5b506102ee61071036600461241c565b61152f565b34801561072157600080fd5b506102d761073036600461241c565b61169e565b34801561074157600080fd5b5061037e600c5481565b34801561075757600080fd5b506102d76107663660046123d4565b6116cd565b34801561077757600080fd5b506102a26107863660046121cd565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107c057600080fd5b506102d76107cf36600461230b565b61170a565b3480156107e057600080fd5b506102d76107ef3660046123d4565b61174c565b34801561080057600080fd5b506102d761080f3660046121b2565b611789565b60006001600160e01b031982166380ac58cd60e01b148061084557506001600160e01b03198216635b5e139f60e01b145b8061086057506001600160e01b0319821663780e9d6360e01b145b8061087b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108b45760405162461bcd60e51b81526004016108ab906125fd565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546108d6906126c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610902906126c0565b801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b5050505050905090565b600061096482611821565b610981576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600a80546109aa906126c0565b80601f01602080910402602001604051908101604052809291908181526020018280546109d6906126c0565b8015610a235780601f106109f857610100808354040283529160200191610a23565b820191906000526020600020905b815481529060010190602001808311610a0657829003601f168201915b505050505081565b6000610a3682610f03565b9050806001600160a01b0316836001600160a01b03161415610a6b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a8b5750610a898133610786565b155b15610aa9576040516367d9dca160e11b815260040160405180910390fd5b610ab4838383611855565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b610ab48383836118b1565b6000610aee83610f22565b8210610b0d576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610bd957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610b855750610bd1565b80516001600160a01b031615610b9a57805192505b876001600160a01b0316836001600160a01b03161415610bcf5786841415610bc85750935061087b92505050565b6001909301925b505b600101610b1e565b50600080fd5b6000805b601054811015610c4057826001600160a01b031660108281548110610c0a57610c0a612756565b6000918252602090912001546001600160a01b03161415610c2e5750600192915050565b80610c38816126fb565b915050610be3565b50600092915050565b6007546001600160a01b03163314610c735760405162461bcd60e51b81526004016108ab906125fd565b600f8054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610cb95760405162461bcd60e51b81526004016108ab906125fd565b6000610ccd6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d17576040519150601f19603f3d011682016040523d82523d6000602084013e610d1c565b606091505b5050905080610d2a57600080fd5b50565b610ab4838383604051806020016040528060008152506114be565b60606000610d5583610f22565b90506000816001600160401b03811115610d7157610d7161276c565b604051908082528060200260200182016040528015610d9a578160200160208202803683370190505b50905060005b82811015610de157610db28582610ae3565b828281518110610dc457610dc4612756565b602090810291909101015280610dd9816126fb565b915050610da0565b509392505050565b6007546001600160a01b03163314610e135760405162461bcd60e51b81526004016108ab906125fd565b600b55565b600080546001600160801b031681805b82811015610ea857600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610e9f5785831415610e985750949350505050565b6001909201915b50600101610e28565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610eec5760405162461bcd60e51b81526004016108ab906125fd565b8051610eff906008906020840190612007565b5050565b6000610f0e82611ace565b5192915050565b600880546109aa906126c0565b60006001600160a01b038216610f4b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610f9a5760405162461bcd60e51b81526004016108ab906125fd565b610fa46000611bf0565b565b6007546001600160a01b03163314610fd05760405162461bcd60e51b81526004016108ab906125fd565b600d55565b6007546001600160a01b03163314610fff5760405162461bcd60e51b81526004016108ab906125fd565b6000611009610ab9565b90506000821161105b5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108ab565b600d5482111561107d5760405162461bcd60e51b81526004016108ab906125b9565b600c5461108a8383612632565b11156110d15760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108ab565b336000908152601160205260409020546110ec908390612632565b33600081815260116020526040902091909155610eff9083611c42565b6060600280546108d6906126c0565b600f5460ff161561116b5760405162461bcd60e51b815260206004820181905260248201527f74686520636f6e74726163742069732043555252454e544c592070617573656460448201526064016108ab565b6000611175610ab9565b9050600082116111c75760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108ab565b600d548211156111e95760405162461bcd60e51b81526004016108ab906125b9565b600c546111f68383612632565b111561123d5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108ab565b6007546001600160a01b031633146110d157600f5462010000900460ff161515600114156113275761126e33610bdf565b6112ba5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016108ab565b33600090815260116020526040902054600e546112d78483612632565b11156113255760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108ab565b505b3360009081526011602052604090205461139b57600b54611348838261265e565b611352919061267d565b3410156113965760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108ab565b6110d1565b81600b546113a9919061265e565b3410156110d15760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108ab565b6001600160a01b0382163314156114175760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114ad5760405162461bcd60e51b81526004016108ab906125fd565b600f805461ff001916610100179055565b6114c98484846118b1565b6114d584848484611c5c565b6114f2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6010818154811061150857600080fd5b6000918252602090912001546001600160a01b0316905081565b600980546109aa906126c0565b606061153a82611821565b61159e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ab565b600f54610100900460ff1661163f57600a80546115ba906126c0565b80601f01602080910402602001604051908101604052809291908181526020018280546115e6906126c0565b80156116335780601f1061160857610100808354040283529160200191611633565b820191906000526020600020905b81548152906001019060200180831161161657829003601f168201915b50505050509050919050565b6000611649611d6b565b905060008151116116695760405180602001604052806000815250611697565b8061167384611d7a565b600960405160200161168793929190612461565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146116c85760405162461bcd60e51b81526004016108ab906125fd565b600e55565b6007546001600160a01b031633146116f75760405162461bcd60e51b81526004016108ab906125fd565b8051610eff906009906020840190612007565b6007546001600160a01b031633146117345760405162461bcd60e51b81526004016108ab906125fd565b6117406010600061208b565b610ab4601083836120a9565b6007546001600160a01b031633146117765760405162461bcd60e51b81526004016108ab906125fd565b8051610eff90600a906020840190612007565b6007546001600160a01b031633146117b35760405162461bcd60e51b81526004016108ab906125fd565b6001600160a01b0381166118185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ab565b610d2a81611bf0565b600080546001600160801b03168210801561087b575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118bc82611ace565b80519091506000906001600160a01b0316336001600160a01b031614806118ea575081516118ea9033610786565b806119055750336118fa84610959565b6001600160a01b0316145b90508061192557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461195a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661198157604051633a954ecd60e21b815260040160405180910390fd5b6119916000848460000151611855565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a84576000546001600160801b0316811015611a8457825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611bd757600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611bd55780516001600160a01b031615611b6c579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611bd0579392505050565b611b6c565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610eff828260405180602001604052806000815250611e77565b60006001600160a01b0384163b15611d5f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ca0903390899088908890600401612525565b602060405180830381600087803b158015611cba57600080fd5b505af1925050508015611cea575060408051601f3d908101601f19168201909252611ce7918101906123b7565b60015b611d45573d808015611d18576040519150601f19603f3d011682016040523d82523d6000602084013e611d1d565b606091505b508051611d3d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d63565b5060015b949350505050565b6060600880546108d6906126c0565b606081611d9e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dc85780611db2816126fb565b9150611dc19050600a8361264a565b9150611da2565b6000816001600160401b03811115611de257611de261276c565b6040519080825280601f01601f191660200182016040528015611e0c576020820181803683370190505b5090505b8415611d6357611e2160018361267d565b9150611e2e600a86612716565b611e39906030612632565b60f81b818381518110611e4e57611e4e612756565b60200101906001600160f81b031916908160001a905350611e70600a8661264a565b9450611e10565b610ab483838360016000546001600160801b03166001600160a01b038516611eb157604051622e076360e81b815260040160405180910390fd5b83611ecf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611fe15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611fb75750611fb56000888488611c5c565b155b15611fd5576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611f60565b50600080546001600160801b0319166001600160801b0392909216919091179055611ac7565b828054612013906126c0565b90600052602060002090601f016020900481019282612035576000855561207b565b82601f1061204e57805160ff191683800117855561207b565b8280016001018555821561207b579182015b8281111561207b578251825591602001919060010190612060565b506120879291506120fc565b5090565b5080546000825590600052602060002090810190610d2a91906120fc565b82805482825590600052602060002090810192821561207b579160200282015b8281111561207b5781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906120c9565b5b8082111561208757600081556001016120fd565b60006001600160401b038084111561212b5761212b61276c565b604051601f8501601f19908116603f011681019082821181831017156121535761215361276c565b8160405280935085815286868601111561216c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461219d57600080fd5b919050565b8035801515811461219d57600080fd5b6000602082840312156121c457600080fd5b61169782612186565b600080604083850312156121e057600080fd5b6121e983612186565b91506121f760208401612186565b90509250929050565b60008060006060848603121561221557600080fd5b61221e84612186565b925061222c60208501612186565b9150604084013590509250925092565b6000806000806080858703121561225257600080fd5b61225b85612186565b935061226960208601612186565b92506040850135915060608501356001600160401b0381111561228b57600080fd5b8501601f8101871361229c57600080fd5b6122ab87823560208401612111565b91505092959194509250565b600080604083850312156122ca57600080fd5b6122d383612186565b91506121f7602084016121a2565b600080604083850312156122f457600080fd5b6122fd83612186565b946020939093013593505050565b6000806020838503121561231e57600080fd5b82356001600160401b038082111561233557600080fd5b818501915085601f83011261234957600080fd5b81358181111561235857600080fd5b8660208260051b850101111561236d57600080fd5b60209290920196919550909350505050565b60006020828403121561239157600080fd5b611697826121a2565b6000602082840312156123ac57600080fd5b813561169781612782565b6000602082840312156123c957600080fd5b815161169781612782565b6000602082840312156123e657600080fd5b81356001600160401b038111156123fc57600080fd5b8201601f8101841361240d57600080fd5b611d6384823560208401612111565b60006020828403121561242e57600080fd5b5035919050565b6000815180845261244d816020860160208601612694565b601f01601f19169290920160200192915050565b6000845160206124748285838a01612694565b8551918401916124878184848a01612694565b8554920191600090600181811c90808316806124a457607f831692505b8583108114156124c257634e487b7160e01b85526022600452602485fd5b8080156124d657600181146124e757612514565b60ff19851688528388019550612514565b60008b81526020902060005b8581101561250c5781548a8201529084019088016124f3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255890830184612435565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561259a5783518352928401929184019160010161257e565b50909695505050505050565b6020815260006116976020830184612435565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156126455761264561272a565b500190565b60008261265957612659612740565b500490565b60008160001904831182151516156126785761267861272a565b500290565b60008282101561268f5761268f61272a565b500390565b60005b838110156126af578181015183820152602001612697565b838111156114f25750506000910152565b600181811c908216806126d457607f821691505b602082108114156126f557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561270f5761270f61272a565b5060010190565b60008261272557612725612740565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d2a57600080fdfea26469706673582212204b2c99c8d6224900249d1f8b9e0e7033edd664ae6a0ccbc29947663fc3261d3d64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000011466f6f62616c6c20446f67652032303232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000946444f4745323032320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000630303030303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d584d703733384756476e6d58435350705655444c66596945384a437973397a526a48394768445a6738584c510000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636c0360eb1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610735578063da3ef23f1461074b578063e985e9c51461076b578063edec5f27146107b4578063f2c4ce1e146107d4578063f2fde38b146107f457600080fd5b8063b88d4fde1461068a578063ba4e5c49146106aa578063ba7d2c76146106ca578063c6682862146106e0578063c87b56dd146106f5578063d0eb26b01461071557600080fd5b80638da5cb5b116101135780638da5cb5b146105ef57806395d89b411461060d5780639c70b51214610622578063a0712d6814610642578063a22cb46514610655578063a475b5dd1461067557600080fd5b80636c0360eb1461057257806370a0823114610587578063715018a6146105a75780637f00c7a6146105bc5780638415c954146105dc57600080fd5b80632f745c59116101f357806344a0d68a116101ac57806344a0d68a146104b95780634f6ccce7146104d957806351830227146104f957806355f804b3146105185780635c975abb146105385780636352211e1461055257600080fd5b80632f745c59146104045780633af32abf146104245780633c952764146104445780633ccfd60b1461046457806342842e0e1461046c578063438b63001461048c57600080fd5b8063095ea7b311610245578063095ea7b31461034857806313faede61461036857806318160ddd1461038c57806318cae269146103a1578063239c70ae146103ce57806323b872dd146103e457600080fd5b806301ffc9a71461028257806302329a29146102b757806306fdde03146102d9578063081812fc146102fb578063081c8c4414610333575b600080fd5b34801561028e57600080fd5b506102a261029d36600461239a565b610814565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d236600461237f565b610881565b005b3480156102e557600080fd5b506102ee6108c7565b6040516102ae91906125a6565b34801561030757600080fd5b5061031b61031636600461241c565b610959565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102ee61099d565b34801561035457600080fd5b506102d76103633660046122e1565b610a2b565b34801561037457600080fd5b5061037e600b5481565b6040519081526020016102ae565b34801561039857600080fd5b5061037e610ab9565b3480156103ad57600080fd5b5061037e6103bc3660046121b2565b60116020526000908152604090205481565b3480156103da57600080fd5b5061037e600d5481565b3480156103f057600080fd5b506102d76103ff366004612200565b610ad8565b34801561041057600080fd5b5061037e61041f3660046122e1565b610ae3565b34801561043057600080fd5b506102a261043f3660046121b2565b610bdf565b34801561045057600080fd5b506102d761045f36600461237f565b610c49565b6102d7610c8f565b34801561047857600080fd5b506102d7610487366004612200565b610d2d565b34801561049857600080fd5b506104ac6104a73660046121b2565b610d48565b6040516102ae9190612562565b3480156104c557600080fd5b506102d76104d436600461241c565b610de9565b3480156104e557600080fd5b5061037e6104f436600461241c565b610e18565b34801561050557600080fd5b50600f546102a290610100900460ff1681565b34801561052457600080fd5b506102d76105333660046123d4565b610ec2565b34801561054457600080fd5b50600f546102a29060ff1681565b34801561055e57600080fd5b5061031b61056d36600461241c565b610f03565b34801561057e57600080fd5b506102ee610f15565b34801561059357600080fd5b5061037e6105a23660046121b2565b610f22565b3480156105b357600080fd5b506102d7610f70565b3480156105c857600080fd5b506102d76105d736600461241c565b610fa6565b6102d76105ea36600461241c565b610fd5565b3480156105fb57600080fd5b506007546001600160a01b031661031b565b34801561061957600080fd5b506102ee611109565b34801561062e57600080fd5b50600f546102a29062010000900460ff1681565b6102d761065036600461241c565b611118565b34801561066157600080fd5b506102d76106703660046122b7565b6113ed565b34801561068157600080fd5b506102d7611483565b34801561069657600080fd5b506102d76106a536600461223c565b6114be565b3480156106b657600080fd5b5061031b6106c536600461241c565b6114f8565b3480156106d657600080fd5b5061037e600e5481565b3480156106ec57600080fd5b506102ee611522565b34801561070157600080fd5b506102ee61071036600461241c565b61152f565b34801561072157600080fd5b506102d761073036600461241c565b61169e565b34801561074157600080fd5b5061037e600c5481565b34801561075757600080fd5b506102d76107663660046123d4565b6116cd565b34801561077757600080fd5b506102a26107863660046121cd565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107c057600080fd5b506102d76107cf36600461230b565b61170a565b3480156107e057600080fd5b506102d76107ef3660046123d4565b61174c565b34801561080057600080fd5b506102d761080f3660046121b2565b611789565b60006001600160e01b031982166380ac58cd60e01b148061084557506001600160e01b03198216635b5e139f60e01b145b8061086057506001600160e01b0319821663780e9d6360e01b145b8061087b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146108b45760405162461bcd60e51b81526004016108ab906125fd565b60405180910390fd5b600f805460ff1916911515919091179055565b6060600180546108d6906126c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610902906126c0565b801561094f5780601f106109245761010080835404028352916020019161094f565b820191906000526020600020905b81548152906001019060200180831161093257829003601f168201915b5050505050905090565b600061096482611821565b610981576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600a80546109aa906126c0565b80601f01602080910402602001604051908101604052809291908181526020018280546109d6906126c0565b8015610a235780601f106109f857610100808354040283529160200191610a23565b820191906000526020600020905b815481529060010190602001808311610a0657829003601f168201915b505050505081565b6000610a3682610f03565b9050806001600160a01b0316836001600160a01b03161415610a6b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a8b5750610a898133610786565b155b15610aa9576040516367d9dca160e11b815260040160405180910390fd5b610ab4838383611855565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b610ab48383836118b1565b6000610aee83610f22565b8210610b0d576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b83811015610bd957600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610b855750610bd1565b80516001600160a01b031615610b9a57805192505b876001600160a01b0316836001600160a01b03161415610bcf5786841415610bc85750935061087b92505050565b6001909301925b505b600101610b1e565b50600080fd5b6000805b601054811015610c4057826001600160a01b031660108281548110610c0a57610c0a612756565b6000918252602090912001546001600160a01b03161415610c2e5750600192915050565b80610c38816126fb565b915050610be3565b50600092915050565b6007546001600160a01b03163314610c735760405162461bcd60e51b81526004016108ab906125fd565b600f8054911515620100000262ff000019909216919091179055565b6007546001600160a01b03163314610cb95760405162461bcd60e51b81526004016108ab906125fd565b6000610ccd6007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d17576040519150601f19603f3d011682016040523d82523d6000602084013e610d1c565b606091505b5050905080610d2a57600080fd5b50565b610ab4838383604051806020016040528060008152506114be565b60606000610d5583610f22565b90506000816001600160401b03811115610d7157610d7161276c565b604051908082528060200260200182016040528015610d9a578160200160208202803683370190505b50905060005b82811015610de157610db28582610ae3565b828281518110610dc457610dc4612756565b602090810291909101015280610dd9816126fb565b915050610da0565b509392505050565b6007546001600160a01b03163314610e135760405162461bcd60e51b81526004016108ab906125fd565b600b55565b600080546001600160801b031681805b82811015610ea857600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610e9f5785831415610e985750949350505050565b6001909201915b50600101610e28565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610eec5760405162461bcd60e51b81526004016108ab906125fd565b8051610eff906008906020840190612007565b5050565b6000610f0e82611ace565b5192915050565b600880546109aa906126c0565b60006001600160a01b038216610f4b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610f9a5760405162461bcd60e51b81526004016108ab906125fd565b610fa46000611bf0565b565b6007546001600160a01b03163314610fd05760405162461bcd60e51b81526004016108ab906125fd565b600d55565b6007546001600160a01b03163314610fff5760405162461bcd60e51b81526004016108ab906125fd565b6000611009610ab9565b90506000821161105b5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108ab565b600d5482111561107d5760405162461bcd60e51b81526004016108ab906125b9565b600c5461108a8383612632565b11156110d15760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108ab565b336000908152601160205260409020546110ec908390612632565b33600081815260116020526040902091909155610eff9083611c42565b6060600280546108d6906126c0565b600f5460ff161561116b5760405162461bcd60e51b815260206004820181905260248201527f74686520636f6e74726163742069732043555252454e544c592070617573656460448201526064016108ab565b6000611175610ab9565b9050600082116111c75760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e4654000000000060448201526064016108ab565b600d548211156111e95760405162461bcd60e51b81526004016108ab906125b9565b600c546111f68383612632565b111561123d5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016108ab565b6007546001600160a01b031633146110d157600f5462010000900460ff161515600114156113275761126e33610bdf565b6112ba5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016108ab565b33600090815260116020526040902054600e546112d78483612632565b11156113255760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016108ab565b505b3360009081526011602052604090205461139b57600b54611348838261265e565b611352919061267d565b3410156113965760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108ab565b6110d1565b81600b546113a9919061265e565b3410156110d15760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016108ab565b6001600160a01b0382163314156114175760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146114ad5760405162461bcd60e51b81526004016108ab906125fd565b600f805461ff001916610100179055565b6114c98484846118b1565b6114d584848484611c5c565b6114f2576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6010818154811061150857600080fd5b6000918252602090912001546001600160a01b0316905081565b600980546109aa906126c0565b606061153a82611821565b61159e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108ab565b600f54610100900460ff1661163f57600a80546115ba906126c0565b80601f01602080910402602001604051908101604052809291908181526020018280546115e6906126c0565b80156116335780601f1061160857610100808354040283529160200191611633565b820191906000526020600020905b81548152906001019060200180831161161657829003601f168201915b50505050509050919050565b6000611649611d6b565b905060008151116116695760405180602001604052806000815250611697565b8061167384611d7a565b600960405160200161168793929190612461565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146116c85760405162461bcd60e51b81526004016108ab906125fd565b600e55565b6007546001600160a01b031633146116f75760405162461bcd60e51b81526004016108ab906125fd565b8051610eff906009906020840190612007565b6007546001600160a01b031633146117345760405162461bcd60e51b81526004016108ab906125fd565b6117406010600061208b565b610ab4601083836120a9565b6007546001600160a01b031633146117765760405162461bcd60e51b81526004016108ab906125fd565b8051610eff90600a906020840190612007565b6007546001600160a01b031633146117b35760405162461bcd60e51b81526004016108ab906125fd565b6001600160a01b0381166118185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ab565b610d2a81611bf0565b600080546001600160801b03168210801561087b575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118bc82611ace565b80519091506000906001600160a01b0316336001600160a01b031614806118ea575081516118ea9033610786565b806119055750336118fa84610959565b6001600160a01b0316145b90508061192557604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461195a5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661198157604051633a954ecd60e21b815260040160405180910390fd5b6119916000848460000151611855565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611a84576000546001600160801b0316811015611a8457825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b0316811015611bd757600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611bd55780516001600160a01b031615611b6c579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611bd0579392505050565b611b6c565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610eff828260405180602001604052806000815250611e77565b60006001600160a01b0384163b15611d5f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ca0903390899088908890600401612525565b602060405180830381600087803b158015611cba57600080fd5b505af1925050508015611cea575060408051601f3d908101601f19168201909252611ce7918101906123b7565b60015b611d45573d808015611d18576040519150601f19603f3d011682016040523d82523d6000602084013e611d1d565b606091505b508051611d3d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d63565b5060015b949350505050565b6060600880546108d6906126c0565b606081611d9e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dc85780611db2816126fb565b9150611dc19050600a8361264a565b9150611da2565b6000816001600160401b03811115611de257611de261276c565b6040519080825280601f01601f191660200182016040528015611e0c576020820181803683370190505b5090505b8415611d6357611e2160018361267d565b9150611e2e600a86612716565b611e39906030612632565b60f81b818381518110611e4e57611e4e612756565b60200101906001600160f81b031916908160001a905350611e70600a8661264a565b9450611e10565b610ab483838360016000546001600160801b03166001600160a01b038516611eb157604051622e076360e81b815260040160405180910390fd5b83611ecf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611fe15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611fb75750611fb56000888488611c5c565b155b15611fd5576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611f60565b50600080546001600160801b0319166001600160801b0392909216919091179055611ac7565b828054612013906126c0565b90600052602060002090601f016020900481019282612035576000855561207b565b82601f1061204e57805160ff191683800117855561207b565b8280016001018555821561207b579182015b8281111561207b578251825591602001919060010190612060565b506120879291506120fc565b5090565b5080546000825590600052602060002090810190610d2a91906120fc565b82805482825590600052602060002090810192821561207b579160200282015b8281111561207b5781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906120c9565b5b8082111561208757600081556001016120fd565b60006001600160401b038084111561212b5761212b61276c565b604051601f8501601f19908116603f011681019082821181831017156121535761215361276c565b8160405280935085815286868601111561216c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461219d57600080fd5b919050565b8035801515811461219d57600080fd5b6000602082840312156121c457600080fd5b61169782612186565b600080604083850312156121e057600080fd5b6121e983612186565b91506121f760208401612186565b90509250929050565b60008060006060848603121561221557600080fd5b61221e84612186565b925061222c60208501612186565b9150604084013590509250925092565b6000806000806080858703121561225257600080fd5b61225b85612186565b935061226960208601612186565b92506040850135915060608501356001600160401b0381111561228b57600080fd5b8501601f8101871361229c57600080fd5b6122ab87823560208401612111565b91505092959194509250565b600080604083850312156122ca57600080fd5b6122d383612186565b91506121f7602084016121a2565b600080604083850312156122f457600080fd5b6122fd83612186565b946020939093013593505050565b6000806020838503121561231e57600080fd5b82356001600160401b038082111561233557600080fd5b818501915085601f83011261234957600080fd5b81358181111561235857600080fd5b8660208260051b850101111561236d57600080fd5b60209290920196919550909350505050565b60006020828403121561239157600080fd5b611697826121a2565b6000602082840312156123ac57600080fd5b813561169781612782565b6000602082840312156123c957600080fd5b815161169781612782565b6000602082840312156123e657600080fd5b81356001600160401b038111156123fc57600080fd5b8201601f8101841361240d57600080fd5b611d6384823560208401612111565b60006020828403121561242e57600080fd5b5035919050565b6000815180845261244d816020860160208601612694565b601f01601f19169290920160200192915050565b6000845160206124748285838a01612694565b8551918401916124878184848a01612694565b8554920191600090600181811c90808316806124a457607f831692505b8583108114156124c257634e487b7160e01b85526022600452602485fd5b8080156124d657600181146124e757612514565b60ff19851688528388019550612514565b60008b81526020902060005b8581101561250c5781548a8201529084019088016124f3565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061255890830184612435565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561259a5783518352928401929184019160010161257e565b50909695505050505050565b6020815260006116976020830184612435565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156126455761264561272a565b500190565b60008261265957612659612740565b500490565b60008160001904831182151516156126785761267861272a565b500290565b60008282101561268f5761268f61272a565b500390565b60005b838110156126af578181015183820152602001612697565b838111156114f25750506000910152565b600181811c908216806126d457607f821691505b602082108114156126f557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561270f5761270f61272a565b5060010190565b60008261272557612725612740565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d2a57600080fdfea26469706673582212204b2c99c8d6224900249d1f8b9e0e7033edd664ae6a0ccbc29947663fc3261d3d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000011466f6f62616c6c20446f67652032303232000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000946444f4745323032320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000630303030303000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d584d703733384756476e6d58435350705655444c66596945384a437973397a526a48394768445a6738584c510000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Fooball Doge 2022
Arg [1] : _symbol (string): FDOGE2022
Arg [2] : _initBaseURI (string): 000000
Arg [3] : _initNotRevealedUri (string): ipfs://QmXMp738GVGnmXCSPpVUDLfYiE8JCys9zRjH9GhDZg8XLQ

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 466f6f62616c6c20446f67652032303232000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 46444f4745323032320000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 3030303030300000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [11] : 697066733a2f2f516d584d703733384756476e6d58435350705655444c665969
Arg [12] : 45384a437973397a526a48394768445a6738584c510000000000000000000000


Deployed Bytecode Sourcemap

46430:4890:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29895:372;;;;;;;;;;-1:-1:-1;29895:372:0;;;;;:::i;:::-;;:::i;:::-;;;8427:14:1;;8420:22;8402:41;;8390:2;8375:18;29895:372:0;;;;;;;;50837:73;;;;;;;;;;-1:-1:-1;50837:73:0;;;;;:::i;:::-;;:::i;:::-;;32505:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34008:204::-;;;;;;;;;;-1:-1:-1;34008:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7088:32:1;;;7070:51;;7058:2;7043:18;34008:204:0;6924:203:1;46581:28:0;;;;;;;;;;;;;:::i;33571:371::-;;;;;;;;;;-1:-1:-1;33571:371:0;;;;;:::i;:::-;;:::i;46614:29::-;;;;;;;;;;;;;;;;;;;12537:25:1;;;12525:2;12510:18;46614:29:0;12391:177:1;27132:280:0;;;;;;;;;;;;;:::i;46911:55::-;;;;;;;;;;-1:-1:-1;46911:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;46684:33;;;;;;;;;;;;;;;;34865:170;;;;;;;;;;-1:-1:-1;34865:170:0;;;;;:::i;:::-;;:::i;28718:1105::-;;;;;;;;;;-1:-1:-1;28718:1105:0;;;;;:::i;:::-;;:::i;48496:239::-;;;;;;;;;;-1:-1:-1;48496:239:0;;;;;:::i;:::-;;:::i;50918:95::-;;;;;;;;;;-1:-1:-1;50918:95:0;;;;;:::i;:::-;;:::i;51172:145::-;;;:::i;35106:185::-;;;;;;;;;;-1:-1:-1;35106:185:0;;;;;:::i;:::-;;:::i;48741:348::-;;;;;;;;;;-1:-1:-1;48741:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50269:80::-;;;;;;;;;;-1:-1:-1;50269:80:0;;;;;:::i;:::-;;:::i;27705:713::-;;;;;;;;;;-1:-1:-1;27705:713:0;;;;;:::i;:::-;;:::i;46796:28::-;;;;;;;;;;-1:-1:-1;46796:28:0;;;;;;;;;;;50477:98;;;;;;;;;;-1:-1:-1;50477:98:0;;;;;:::i;:::-;;:::i;46765:26::-;;;;;;;;;;-1:-1:-1;46765:26:0;;;;;;;;32314:124;;;;;;;;;;-1:-1:-1;32314:124:0;;;;;:::i;:::-;;:::i;46513:21::-;;;;;;;;;;;;;:::i;30331:206::-;;;;;;;;;;-1:-1:-1;30331:206:0;;;;;:::i;:::-;;:::i;4834:103::-;;;;;;;;;;;;;:::i;50355:116::-;;;;;;;;;;-1:-1:-1;50355:116:0;;;;;:::i;:::-;;:::i;49614:464::-;;;;;;:::i;:::-;;:::i;4183:87::-;;;;;;;;;;-1:-1:-1;4256:6:0;;-1:-1:-1;;;;;4256:6:0;4183:87;;32674:104;;;;;;;;;;;;;:::i;46829:35::-;;;;;;;;;;-1:-1:-1;46829:35:0;;;;;;;;;;;47365:1123;;;;;;:::i;:::-;;:::i;34284:279::-;;;;;;;;;;-1:-1:-1;34284:279:0;;;;;:::i;:::-;;:::i;50084:65::-;;;;;;;;;;;;;:::i;35362:342::-;;;;;;;;;;-1:-1:-1;35362:342:0;;;;;:::i;:::-;;:::i;46869:37::-;;;;;;;;;;-1:-1:-1;46869:37:0;;;;;:::i;:::-;;:::i;46722:38::-;;;;;;;;;;;;;;;;46539:37;;;;;;;;;;;;;:::i;49095:497::-;;;;;;;;;;-1:-1:-1;49095:497:0;;;;;:::i;:::-;;:::i;50157:104::-;;;;;;;;;;-1:-1:-1;50157:104:0;;;;;:::i;:::-;;:::i;46648:31::-;;;;;;;;;;;;;;;;50581:122;;;;;;;;;;-1:-1:-1;50581:122:0;;;;;:::i;:::-;;:::i;34634:164::-;;;;;;;;;;-1:-1:-1;34634:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34755:25:0;;;34731:4;34755:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34634:164;51021:144;;;;;;;;;;-1:-1:-1;51021:144:0;;;;;:::i;:::-;;:::i;50711:120::-;;;;;;;;;;-1:-1:-1;50711:120:0;;;;;:::i;:::-;;:::i;5092:201::-;;;;;;;;;;-1:-1:-1;5092:201:0;;;;;:::i;:::-;;:::i;29895:372::-;29997:4;-1:-1:-1;;;;;;30034:40:0;;-1:-1:-1;;;30034:40:0;;:105;;-1:-1:-1;;;;;;;30091:48:0;;-1:-1:-1;;;30091:48:0;30034:105;:172;;;-1:-1:-1;;;;;;;30156:50:0;;-1:-1:-1;;;30156:50:0;30034:172;:225;;;-1:-1:-1;;;;;;;;;;17076:40:0;;;30223:36;30014:245;29895:372;-1:-1:-1;;29895:372:0:o;50837:73::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;;;;;;;;;50889:6:::1;:15:::0;;-1:-1:-1;;50889:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50837:73::o;32505:100::-;32559:13;32592:5;32585:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32505:100;:::o;34008:204::-;34076:7;34101:16;34109:7;34101;:16::i;:::-;34096:64;;34126:34;;-1:-1:-1;;;34126:34:0;;;;;;;;;;;34096:64;-1:-1:-1;34180:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34180:24:0;;34008:204::o;46581:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33571:371::-;33644:13;33660:24;33676:7;33660:15;:24::i;:::-;33644:40;;33705:5;-1:-1:-1;;;;;33699:11:0;:2;-1:-1:-1;;;;;33699:11:0;;33695:48;;;33719:24;;-1:-1:-1;;;33719:24:0;;;;;;;;;;;33695:48;2987:10;-1:-1:-1;;;;;33760:21:0;;;;;;:63;;-1:-1:-1;33786:37:0;33803:5;2987:10;34634:164;:::i;33786:37::-;33785:38;33760:63;33756:138;;;33847:35;;-1:-1:-1;;;33847:35:0;;;;;;;;;;;33756:138;33906:28;33915:2;33919:7;33928:5;33906:8;:28::i;:::-;33633:309;33571:371;;:::o;27132:280::-;27185:7;27377:12;-1:-1:-1;;;;;;;;27377:12:0;;;;27361:13;;;:28;;;;27354:35;;27132:280::o;34865:170::-;34999:28;35009:4;35015:2;35019:7;34999:9;:28::i;28718:1105::-;28807:7;28840:16;28850:5;28840:9;:16::i;:::-;28831:5;:25;28827:61;;28865:23;;-1:-1:-1;;;28865:23:0;;;;;;;;;;;28827:61;28899:22;28924:13;;-1:-1:-1;;;;;28924:13:0;;28899:22;;29174:557;29194:14;29190:1;:18;29174:557;;;29234:31;29268:14;;;:11;:14;;;;;;;;;29234:48;;;;;;;;;-1:-1:-1;;;;;29234:48:0;;;;-1:-1:-1;;;29234:48:0;;-1:-1:-1;;;;;29234:48:0;;;;;;;;-1:-1:-1;;;29234:48:0;;;;;;;;;;;;;;;;29301:73;;29346:8;;;29301:73;29396:14;;-1:-1:-1;;;;;29396:28:0;;29392:111;;29469:14;;;-1:-1:-1;29392:111:0;29546:5;-1:-1:-1;;;;;29525:26:0;:17;-1:-1:-1;;;;;29525:26:0;;29521:195;;;29595:5;29580:11;:20;29576:85;;;-1:-1:-1;29636:1:0;-1:-1:-1;29629:8:0;;-1:-1:-1;;;29629:8:0;29576:85;29683:13;;;;;29521:195;29215:516;29174:557;29210:3;;29174:557;;;;29807:8;;;48496:239;48555:4;;48568:143;48589:20;:27;48585:31;;48568:143;;;48663:5;-1:-1:-1;;;;;48636:32:0;:20;48657:1;48636:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;48636:23:0;:32;48632:72;;;-1:-1:-1;48690:4:0;;48496:239;-1:-1:-1;;48496:239:0:o;48632:72::-;48618:3;;;;:::i;:::-;;;;48568:143;;;-1:-1:-1;48724:5:0;;48496:239;-1:-1:-1;;48496:239:0:o;50918:95::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;50983:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;50983:24:0;;::::1;::::0;;;::::1;::::0;;50918:95::o;51172:145::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;51225:7:::1;51246;4256:6:::0;;-1:-1:-1;;;;;4256:6:0;;4183:87;51246:7:::1;-1:-1:-1::0;;;;;51238:21:0::1;51267;51238:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51224:69;;;51308:2;51300:11;;;::::0;::::1;;51217:100;51172:145::o:0;35106:185::-;35244:39;35261:4;35267:2;35271:7;35244:39;;;;;;;;;;;;:16;:39::i;48741:348::-;48816:16;48844:23;48870:17;48880:6;48870:9;:17::i;:::-;48844:43;;48894:25;48936:15;-1:-1:-1;;;;;48922:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48922:30:0;;48894:58;;48964:9;48959:103;48979:15;48975:1;:19;48959:103;;;49024:30;49044:6;49052:1;49024:19;:30::i;:::-;49010:8;49019:1;49010:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48996:3;;;;:::i;:::-;;;;48959:103;;;-1:-1:-1;49075:8:0;48741:348;-1:-1:-1;;;48741:348:0:o;50269:80::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;50328:4:::1;:15:::0;50269:80::o;27705:713::-;27772:7;27817:13;;-1:-1:-1;;;;;27817:13:0;27772:7;;28031:328;28051:14;28047:1;:18;28031:328;;;28091:31;28125:14;;;:11;:14;;;;;;;;;28091:48;;;;;;;;;-1:-1:-1;;;;;28091:48:0;;;;-1:-1:-1;;;28091:48:0;;-1:-1:-1;;;;;28091:48:0;;;;;;;;-1:-1:-1;;;28091:48:0;;;;;;;;;;;;;;28158:186;;28223:5;28208:11;:20;28204:85;;;-1:-1:-1;28264:1:0;27705:713;-1:-1:-1;;;;27705:713:0:o;28204:85::-;28311:13;;;;;28158:186;-1:-1:-1;28067:3:0;;28031:328;;;;28387:23;;-1:-1:-1;;;28387:23:0;;;;;;;;;;;50477:98;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;50548:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50477:98:::0;:::o;32314:124::-;32378:7;32405:20;32417:7;32405:11;:20::i;:::-;:25;;32314:124;-1:-1:-1;;32314:124:0:o;46513:21::-;;;;;;;:::i;30331:206::-;30395:7;-1:-1:-1;;;;;30419:19:0;;30415:60;;30447:28;;-1:-1:-1;;;30447:28:0;;;;;;;;;;;30415:60;-1:-1:-1;;;;;;30501:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30501:27:0;;30331:206::o;4834:103::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;4899:30:::1;4926:1;4899:18;:30::i;:::-;4834:103::o:0;50355:116::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;50432:13:::1;:33:::0;50355:116::o;49614:464::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;49686:14:::1;49703:13;:11;:13::i;:::-;49686:30;;49745:1;49731:11;:15;49723:55;;;::::0;-1:-1:-1;;;49723:55:0;;12237:2:1;49723:55:0::1;::::0;::::1;12219:21:1::0;12276:2;12256:18;;;12249:30;12315:29;12295:18;;;12288:57;12362:18;;49723:55:0::1;12035:351:1::0;49723:55:0::1;49808:13;;49793:11;:28;;49785:77;;;;-1:-1:-1::0;;;49785:77:0::1;;;;;;;:::i;:::-;49901:9;::::0;49877:20:::1;49886:11:::0;49877:6;:20:::1;:::i;:::-;:33;;49869:68;;;::::0;-1:-1:-1;;;49869:68:0;;9644:2:1;49869:68:0::1;::::0;::::1;9626:21:1::0;9683:2;9663:18;;;9656:30;-1:-1:-1;;;9702:18:1;;;9695:52;9764:18;;49869:68:0::1;9442:346:1::0;49869:68:0::1;50006:10;49985:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;50020:11;;49985:46:::1;:::i;:::-;49971:10;49950:32;::::0;;;:20:::1;:32;::::0;;;;:81;;;;50038:34:::1;::::0;50060:11;50038:9:::1;:34::i;32674:104::-:0;32730:13;32763:7;32756:14;;;;;:::i;47365:1123::-;47431:6;;;;47430:7;47422:52;;;;-1:-1:-1;;;47422:52:0;;11876:2:1;47422:52:0;;;11858:21:1;;;11895:18;;;11888:30;11954:34;11934:18;;;11927:62;12006:18;;47422:52:0;11674:356:1;47422:52:0;47481:14;47498:13;:11;:13::i;:::-;47481:30;;47540:1;47526:11;:15;47518:55;;;;-1:-1:-1;;;47518:55:0;;12237:2:1;47518:55:0;;;12219:21:1;12276:2;12256:18;;;12249:30;12315:29;12295:18;;;12288:57;12362:18;;47518:55:0;12035:351:1;47518:55:0;47603:13;;47588:11;:28;;47580:77;;;;-1:-1:-1;;;47580:77:0;;;;;;;:::i;:::-;47696:9;;47672:20;47681:11;47672:6;:20;:::i;:::-;:33;;47664:68;;;;-1:-1:-1;;;47664:68:0;;9644:2:1;47664:68:0;;;9626:21:1;9683:2;9663:18;;;9656:30;-1:-1:-1;;;9702:18:1;;;9695:52;9764:18;;47664:68:0;9442:346:1;47664:68:0;4256:6;;-1:-1:-1;;;;;4256:6:0;47745:10;:21;47741:603;;47782:15;;;;;;;:23;;47801:4;47782:23;47779:298;;;47830:25;47844:10;47830:13;:25::i;:::-;47822:61;;;;-1:-1:-1;;;47822:61:0;;11524:2:1;47822:61:0;;;11506:21:1;11563:2;11543:18;;;11536:30;11602:25;11582:18;;;11575:53;11645:18;;47822:61:0;11322:347:1;47822:61:0;47946:10;47898:24;47925:32;;;:20;:32;;;;;;48014:18;;47980:30;47999:11;47925:32;47980:30;:::i;:::-;:52;;47972:93;;;;-1:-1:-1;;;47972:93:0;;9287:2:1;47972:93:0;;;9269:21:1;9326:2;9306:18;;;9299:30;9365;9345:18;;;9338:58;9413:18;;47972:93:0;9085:352:1;47972:93:0;47807:270;47779:298;48116:10;48095:32;;;;:20;:32;;;;;;48092:245;;48192:4;;48170:18;48177:11;48192:4;48170:18;:::i;:::-;48169:27;;;;:::i;:::-;48156:9;:40;;48148:71;;;;-1:-1:-1;;;48148:71:0;;11177:2:1;48148:71:0;;;11159:21:1;11216:2;11196:18;;;11189:30;-1:-1:-1;;;11235:18:1;;;11228:48;11293:18;;48148:71:0;10975:342:1;48148:71:0;48092:245;;;48290:11;48283:4;;:18;;;;:::i;:::-;48269:9;:33;;48261:64;;;;-1:-1:-1;;;48261:64:0;;11177:2:1;48261:64:0;;;11159:21:1;11216:2;11196:18;;;11189:30;-1:-1:-1;;;11235:18:1;;;11228:48;11293:18;;48261:64:0;10975:342:1;34284:279:0;-1:-1:-1;;;;;34375:24:0;;2987:10;34375:24;34371:54;;;34408:17;;-1:-1:-1;;;34408:17:0;;;;;;;;;;;34371:54;2987:10;34438:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34438:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34438:53:0;;;;;;;;;;34507:48;;8402:41:1;;;34438:42:0;;2987:10;34507:48;;8375:18:1;34507:48:0;;;;;;;34284:279;;:::o;50084:65::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;50128:8:::1;:15:::0;;-1:-1:-1;;50128:15:0::1;;;::::0;;50084:65::o;35362:342::-;35529:28;35539:4;35545:2;35549:7;35529:9;:28::i;:::-;35573:48;35596:4;35602:2;35606:7;35615:5;35573:22;:48::i;:::-;35568:129;;35645:40;;-1:-1:-1;;;35645:40:0;;;;;;;;;;;35568:129;35362:342;;;;:::o;46869:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46869:37:0;;-1:-1:-1;46869:37:0;:::o;46539:::-;;;;;;;:::i;49095:497::-;49193:13;49234:16;49242:7;49234;:16::i;:::-;49218:97;;;;-1:-1:-1;;;49218:97:0;;10761:2:1;49218:97:0;;;10743:21:1;10800:2;10780:18;;;10773:30;10839:34;10819:18;;;10812:62;-1:-1:-1;;;10890:18:1;;;10883:45;10945:19;;49218:97:0;10559:411:1;49218:97:0;49331:8;;;;;;;49328:62;;49368:14;49361:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49095:497;;;:::o;49328:62::-;49398:28;49429:10;:8;:10::i;:::-;49398:41;;49484:1;49459:14;49453:28;:32;:133;;;;;;;;;;;;;;;;;49521:14;49537:18;:7;:16;:18::i;:::-;49557:13;49504:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49453:133;49446:140;49095:497;-1:-1:-1;;;49095:497:0:o;50157:104::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;50228:18:::1;:27:::0;50157:104::o;50581:122::-;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;50664:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;51021:144::-:0;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;51096:27:::1;51103:20;;51096:27;:::i;:::-;51130:29;:20;51153:6:::0;;51130:29:::1;:::i;50711:120::-:0;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;50793:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;5092:201::-:0;4256:6;;-1:-1:-1;;;;;4256:6:0;2987:10;4403:23;4395:68;;;;-1:-1:-1;;;4395:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5181:22:0;::::1;5173:73;;;::::0;-1:-1:-1;;;5173:73:0;;8880:2:1;5173:73:0::1;::::0;::::1;8862:21:1::0;8919:2;8899:18;;;8892:30;8958:34;8938:18;;;8931:62;-1:-1:-1;;;9009:18:1;;;9002:36;9055:19;;5173:73:0::1;8678:402:1::0;5173:73:0::1;5257:28;5276:8;5257:18;:28::i;35959:144::-:0;36016:4;36050:13;;-1:-1:-1;;;;;36050:13:0;36040:23;;:55;;;;-1:-1:-1;;36068:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;36068:27:0;;;;36067:28;;35959:144::o;43175:196::-;43290:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;43290:29:0;-1:-1:-1;;;;;43290:29:0;;;;;;;;;43335:28;;43290:24;;43335:28;;;;;;;43175:196;;;:::o;38676:2112::-;38791:35;38829:20;38841:7;38829:11;:20::i;:::-;38904:18;;38791:58;;-1:-1:-1;38862:22:0;;-1:-1:-1;;;;;38888:34:0;2987:10;-1:-1:-1;;;;;38888:34:0;;:101;;;-1:-1:-1;38956:18:0;;38939:50;;2987:10;34634:164;:::i;38939:50::-;38888:154;;;-1:-1:-1;2987:10:0;39006:20;39018:7;39006:11;:20::i;:::-;-1:-1:-1;;;;;39006:36:0;;38888:154;38862:181;;39061:17;39056:66;;39087:35;;-1:-1:-1;;;39087:35:0;;;;;;;;;;;39056:66;39159:4;-1:-1:-1;;;;;39137:26:0;:13;:18;;;-1:-1:-1;;;;;39137:26:0;;39133:67;;39172:28;;-1:-1:-1;;;39172:28:0;;;;;;;;;;;39133:67;-1:-1:-1;;;;;39215:16:0;;39211:52;;39240:23;;-1:-1:-1;;;39240:23:0;;;;;;;;;;;39211:52;39384:49;39401:1;39405:7;39414:13;:18;;;39384:8;:49::i;:::-;-1:-1:-1;;;;;39729:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39729:31:0;;;-1:-1:-1;;;;;39729:31:0;;;-1:-1:-1;;39729:31:0;;;;;;;39775:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39775:29:0;;;;;;;;;;;39821:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39866:61:0;;;;-1:-1:-1;;;39911:15:0;39866:61;;;;;;;;;;;40201:11;;;40231:24;;;;;:29;40201:11;;40231:29;40227:445;;40456:13;;-1:-1:-1;;;;;40456:13:0;40442:27;;40438:219;;;40526:18;;;40494:24;;;:11;:24;;;;;;;;:50;;40609:28;;;;-1:-1:-1;;;;;40567:70:0;-1:-1:-1;;;40567:70:0;-1:-1:-1;;;;;;40567:70:0;;;-1:-1:-1;;;;;40494:50:0;;;40567:70;;;;;;;40438:219;39704:979;40719:7;40715:2;-1:-1:-1;;;;;40700:27:0;40709:4;-1:-1:-1;;;;;40700:27:0;;;;;;;;;;;40738:42;38780:2008;;38676:2112;;;:::o;31169:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;31335:13:0;;31279:7;;-1:-1:-1;;;;;31335:13:0;31328:20;;31324:861;;;31369:31;31403:17;;;:11;:17;;;;;;;;;31369:51;;;;;;;;;-1:-1:-1;;;;;31369:51:0;;;;-1:-1:-1;;;31369:51:0;;-1:-1:-1;;;;;31369:51:0;;;;;;;;-1:-1:-1;;;31369:51:0;;;;;;;;;;;;;;31439:731;;31489:14;;-1:-1:-1;;;;;31489:28:0;;31485:101;;31553:9;31169:1083;-1:-1:-1;;;31169:1083:0:o;31485:101::-;-1:-1:-1;;;31930:6:0;31975:17;;;;:11;:17;;;;;;;;;31963:29;;;;;;;;;-1:-1:-1;;;;;31963:29:0;;;;;-1:-1:-1;;;31963:29:0;;-1:-1:-1;;;;;31963:29:0;;;;;;;;-1:-1:-1;;;31963:29:0;;;;;;;;;;;;;32023:28;32019:109;;32091:9;31169:1083;-1:-1:-1;;;31169:1083:0:o;32019:109::-;31890:261;;;31350:835;31324:861;32213:31;;-1:-1:-1;;;32213:31:0;;;;;;;;;;;5453:191;5546:6;;;-1:-1:-1;;;;;5563:17:0;;;-1:-1:-1;;;;;;5563:17:0;;;;;;;5596:40;;5546:6;;;5563:17;5546:6;;5596:40;;5527:16;;5596:40;5516:128;5453:191;:::o;36111:104::-;36180:27;36190:2;36194:8;36180:27;;;;;;;;;;;;:9;:27::i;43936:790::-;44091:4;-1:-1:-1;;;;;44112:13:0;;7179:19;:23;44108:611;;44148:72;;-1:-1:-1;;;44148:72:0;;-1:-1:-1;;;;;44148:36:0;;;;;:72;;2987:10;;44199:4;;44205:7;;44214:5;;44148:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44148:72:0;;;;;;;;-1:-1:-1;;44148:72:0;;;;;;;;;;;;:::i;:::-;;;44144:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44394:13:0;;44390:259;;44444:40;;-1:-1:-1;;;44444:40:0;;;;;;;;;;;44390:259;44599:6;44593:13;44584:6;44580:2;44576:15;44569:38;44144:520;-1:-1:-1;;;;;;44271:55:0;-1:-1:-1;;;44271:55:0;;-1:-1:-1;44264:62:0;;44108:611;-1:-1:-1;44703:4:0;44108:611;43936:790;;;;;;:::o;47244:102::-;47304:13;47333:7;47326:14;;;;;:::i;469:723::-;525:13;746:10;742:53;;-1:-1:-1;;773:10:0;;;;;;;;;;;;-1:-1:-1;;;773:10:0;;;;;469:723::o;742:53::-;820:5;805:12;861:78;868:9;;861:78;;894:8;;;;:::i;:::-;;-1:-1:-1;917:10:0;;-1:-1:-1;925:2:0;917:10;;:::i;:::-;;;861:78;;;949:19;981:6;-1:-1:-1;;;;;971:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;971:17:0;;949:39;;999:154;1006:10;;999:154;;1033:11;1043:1;1033:11;;:::i;:::-;;-1:-1:-1;1102:10:0;1110:2;1102:5;:10;:::i;:::-;1089:24;;:2;:24;:::i;:::-;1076:39;;1059:6;1066;1059:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1059:56:0;;;;;;;;-1:-1:-1;1130:11:0;1139:2;1130:11;;:::i;:::-;;;999:154;;36578:163;36701:32;36707:2;36711:8;36721:5;36728:4;37139:20;37162:13;-1:-1:-1;;;;;37162:13:0;-1:-1:-1;;;;;37190:16:0;;37186:48;;37215:19;;-1:-1:-1;;;37215:19:0;;;;;;;;;;;37186:48;37249:13;37245:44;;37271:18;;-1:-1:-1;;;37271:18:0;;;;;;;;;;;37245:44;-1:-1:-1;;;;;37641:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;37700:49:0;;-1:-1:-1;;;;;37641:44:0;;;;;;;37700:49;;;;-1:-1:-1;;37641:44:0;;;;;;37700:49;;;;;;;;;;;;;;;;37766:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;37816:66:0;;;;-1:-1:-1;;;37866:15:0;37816:66;;;;;;;;;;;37766:25;;37951:328;37971:8;37967:1;:12;37951:328;;;38010:38;;38035:12;;-1:-1:-1;;;;;38010:38:0;;;38027:1;;38010:38;;38027:1;;38010:38;38071:4;:68;;;;;38080:59;38111:1;38115:2;38119:12;38133:5;38080:22;:59::i;:::-;38079:60;38071:68;38067:164;;;38171:40;;-1:-1:-1;;;38171:40:0;;;;;;;;;;;38067:164;38249:14;;;;;37981:3;37951:328;;;-1:-1:-1;38295:13:0;:37;;-1:-1:-1;;;;;;38295:37:0;-1:-1:-1;;;;;38295:37:0;;;;;;;;;;38354:60;35362:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;-1:-1:-1;;;;;2201:6:1;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;-1:-1:-1;;;;;3244:2:1;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;-1:-1:-1;;;;;4483:6:1;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:1527::-;5406:3;5444:6;5438:13;5470:4;5483:51;5527:6;5522:3;5517:2;5509:6;5505:15;5483:51;:::i;:::-;5597:13;;5556:16;;;;5619:55;5597:13;5556:16;5641:15;;;5619:55;:::i;:::-;5763:13;;5696:20;;;5736:1;;5823;5845:18;;;;5898;;;;5925:93;;6003:4;5993:8;5989:19;5977:31;;5925:93;6066:2;6056:8;6053:16;6033:18;6030:40;6027:167;;;-1:-1:-1;;;6093:33:1;;6149:4;6146:1;6139:15;6179:4;6100:3;6167:17;6027:167;6210:18;6237:110;;;;6361:1;6356:328;;;;6203:481;;6237:110;-1:-1:-1;;6272:24:1;;6258:39;;6317:20;;;;-1:-1:-1;6237:110:1;;6356:328;12646:1;12639:14;;;12683:4;12670:18;;6451:1;6465:169;6479:8;6476:1;6473:15;6465:169;;;6561:14;;6546:13;;;6539:37;6604:16;;;;6496:10;;6465:169;;;6469:3;;6665:8;6658:5;6654:20;6647:27;;6203:481;-1:-1:-1;6700:3:1;;5182:1527;-1:-1:-1;;;;;;;;;;;5182:1527:1:o;7132:488::-;-1:-1:-1;;;;;7401:15:1;;;7383:34;;7453:15;;7448:2;7433:18;;7426:43;7500:2;7485:18;;7478:34;;;7548:3;7543:2;7528:18;;7521:31;;;7326:4;;7569:45;;7594:19;;7586:6;7569:45;:::i;:::-;7561:53;7132:488;-1:-1:-1;;;;;;7132:488:1:o;7625:632::-;7796:2;7848:21;;;7918:13;;7821:18;;;7940:22;;;7767:4;;7796:2;8019:15;;;;7993:2;7978:18;;;7767:4;8062:169;8076:6;8073:1;8070:13;8062:169;;;8137:13;;8125:26;;8206:15;;;;8171:12;;;;8098:1;8091:9;8062:169;;;-1:-1:-1;8248:3:1;;7625:632;-1:-1:-1;;;;;;7625:632:1:o;8454:219::-;8603:2;8592:9;8585:21;8566:4;8623:44;8663:2;8652:9;8648:18;8640:6;8623:44;:::i;9793:400::-;9995:2;9977:21;;;10034:2;10014:18;;;10007:30;10073:34;10068:2;10053:18;;10046:62;-1:-1:-1;;;10139:2:1;10124:18;;10117:34;10183:3;10168:19;;9793:400::o;10198:356::-;10400:2;10382:21;;;10419:18;;;10412:30;10478:34;10473:2;10458:18;;10451:62;10545:2;10530:18;;10198:356::o;12699:128::-;12739:3;12770:1;12766:6;12763:1;12760:13;12757:39;;;12776:18;;:::i;:::-;-1:-1:-1;12812:9:1;;12699:128::o;12832:120::-;12872:1;12898;12888:35;;12903:18;;:::i;:::-;-1:-1:-1;12937:9:1;;12832:120::o;12957:168::-;12997:7;13063:1;13059;13055:6;13051:14;13048:1;13045:21;13040:1;13033:9;13026:17;13022:45;13019:71;;;13070:18;;:::i;:::-;-1:-1:-1;13110:9:1;;12957:168::o;13130:125::-;13170:4;13198:1;13195;13192:8;13189:34;;;13203:18;;:::i;:::-;-1:-1:-1;13240:9:1;;13130:125::o;13260:258::-;13332:1;13342:113;13356:6;13353:1;13350:13;13342:113;;;13432:11;;;13426:18;13413:11;;;13406:39;13378:2;13371:10;13342:113;;;13473:6;13470:1;13467:13;13464:48;;;-1:-1:-1;;13508:1:1;13490:16;;13483:27;13260:258::o;13523:380::-;13602:1;13598:12;;;;13645;;;13666:61;;13720:4;13712:6;13708:17;13698:27;;13666:61;13773:2;13765:6;13762:14;13742:18;13739:38;13736:161;;;13819:10;13814:3;13810:20;13807:1;13800:31;13854:4;13851:1;13844:15;13882:4;13879:1;13872:15;13736:161;;13523:380;;;:::o;13908:135::-;13947:3;-1:-1:-1;;13968:17:1;;13965:43;;;13988:18;;:::i;:::-;-1:-1:-1;14035:1:1;14024:13;;13908:135::o;14048:112::-;14080:1;14106;14096:35;;14111:18;;:::i;:::-;-1:-1:-1;14145:9:1;;14048:112::o;14165:127::-;14226:10;14221:3;14217:20;14214:1;14207:31;14257:4;14254:1;14247:15;14281:4;14278:1;14271:15;14297:127;14358:10;14353:3;14349:20;14346:1;14339:31;14389:4;14386:1;14379:15;14413:4;14410:1;14403:15;14429:127;14490:10;14485:3;14481:20;14478:1;14471:31;14521:4;14518:1;14511:15;14545:4;14542:1;14535:15;14561:127;14622:10;14617:3;14613:20;14610:1;14603:31;14653:4;14650:1;14643:15;14677:4;14674:1;14667:15;14693:131;-1:-1:-1;;;;;;14767:32:1;;14757:43;;14747:71;;14814:1;14811;14804:12

Swarm Source

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