ETH Price: $3,357.83 (-0.77%)
Gas: 1 Gwei

Token

AlleyKatzOfficial (AlleyKatzOfficial)
 

Overview

Max Total Supply

5,555 AlleyKatzOfficial

Holders

1,949

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
chumwithnodick.eth
Balance
3 AlleyKatzOfficial
0xB2Aadf6BFc0a5213acb9c279394B46F50aEa65a3
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:
AlleyKatz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 5555 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/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/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
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 tokenId);

    /**
     * @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/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/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/Address.sol



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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/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: @openzeppelin/contracts/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/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/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), 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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File: @openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/TBCNFT.sol

pragma solidity ^0.8.0;

contract AlleyKatz is ERC721Enumerable, Ownable { // contract name to yours
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = .03 ether; // change price per unit
  uint256 public maxSupply = 5555; // max supply, contract will stop minting after this amount is reach in your open sea colection
  uint256 public maxMintAmount = 50; // max allowed to mint at one time N.O.T.E must be => than line 1241 - mint(msg.sender, 10);
  uint256 public nftPerAddressLimit = 5;//whitelist mint amount
  bool public paused = false;
  bool public onlyWhiteListed = true;
  address[] public whitelistedAddresses;

  constructor(
    string memory _name,   // String are annoying and we will need an ABI code to verify contract because of this
    string memory _symbol, // you'll change these 3 strings next to your deployment button
    string memory _initBaseURI // this is your /IPFS/CID of NFT .pngs and .jsons | Your IPNS is stored inside your .jsons
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    mint(50); // Must be lower than line 1231 | This is how many is minted FREE to owner upon deployment
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused);
    uint256 supply = totalSupply();
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
        if (onlyWhiteListed == true) {
            require(isWhiteListed(msg.sender), "user is not whitelisted");
            uint256 ownerTokenCount = balanceOf(msg.sender);
            require(ownerTokenCount < nftPerAddressLimit);
        }
        require(msg.value >= cost * _mintAmount);
    }
    

    for(uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

    function isWhiteListed(address _user) public view returns (bool) {
        for(uint256 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"
    );

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

  //only owner
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner() {
    nftPerAddressLimit = _limit;
  }

  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 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 {
    require(payable(msg.sender).send(address(this).balance));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"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":[{"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":"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":"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"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620009fb565b50666a94d74f430000600d556115b3600e556032600f5560056010556011805461ffff19166101001790553480156200006057600080fd5b5060405162003a2f38038062003a2f833981016040819052620000839162000b65565b8251839083906200009c906000906020850190620009fb565b508051620000b2906001906020840190620009fb565b505050620000cf620000c9620000ef60201b60201c565b620000f3565b620000da8162000145565b620000e66032620001be565b50505062000d89565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001a55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051620001ba90600b906020840190620009fb565b5050565b60115460ff1615620001cf57600080fd5b6000620001db60085490565b905060008211620001eb57600080fd5b600f54821115620001fb57600080fd5b600e546200020a838362000c4c565b11156200021657600080fd5b600a546001600160a01b03163314620002d65760115460ff61010090910416151560011415620002b9576200024b3362000312565b620002995760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c697374656400000000000000000060448201526064016200019c565b6000620002a63362000384565b90506010548110620002b757600080fd5b505b81600d54620002c9919062000c67565b341015620002d657600080fd5b60015b8281116200030d57620002f833620002f2838562000c4c565b6200040d565b80620003048162000d13565b915050620002d9565b505050565b6000805b6012548110156200037b57826001600160a01b03166012828154811062000341576200034162000d5d565b6000918252602090912001546001600160a01b03161415620003665750600192915050565b80620003728162000d13565b91505062000316565b50600092915050565b60006001600160a01b038216620003f15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016200019c565b506001600160a01b031660009081526003602052604090205490565b620001ba8282604051806020016040528060008152506200042f60201b60201c565b6200043b8383620004a2565b6200044a6000848484620005f8565b6200030d5760405162461bcd60e51b8152602060048201526032602482015260008051602062003a0f83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019c565b6001600160a01b038216620004fa5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016200019c565b6000818152600260205260409020546001600160a01b031615620005615760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016200019c565b6200056f6000838362000761565b6001600160a01b03821660009081526003602052604081208054600192906200059a90849062000c4c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000619846001600160a01b03166200083d60201b6200180a1760201c565b156200075557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200065390339089908890889060040162000bf6565b602060405180830381600087803b1580156200066e57600080fd5b505af1925050508015620006a1575060408051601f3d908101601f191682019092526200069e9181019062000b32565b60015b6200073a573d808015620006d2576040519150601f19603f3d011682016040523d82523d6000602084013e620006d7565b606091505b508051620007325760405162461bcd60e51b8152602060048201526032602482015260008051602062003a0f83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084016200019c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000759565b5060015b949350505050565b620007798383836200030d60201b62000adb1760201c565b6001600160a01b038316620007d757620007d181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620007fd565b816001600160a01b0316836001600160a01b031614620007fd57620007fd838262000843565b6001600160a01b03821662000817576200030d81620008f0565b826001600160a01b0316826001600160a01b0316146200030d576200030d8282620009aa565b3b151590565b600060016200085d846200038460201b620010d41760201c565b62000869919062000c89565b600083815260076020526040902054909150808214620008bd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620009049060019062000c89565b600083815260096020526040812054600880549394509092849081106200092f576200092f62000d5d565b90600052602060002001549050806008838154811062000953576200095362000d5d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200098e576200098e62000d47565b6001900381819060005260206000200160009055905550505050565b6000620009c2836200038460201b620010d41760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805462000a099062000cd6565b90600052602060002090601f01602090048101928262000a2d576000855562000a78565b82601f1062000a4857805160ff191683800117855562000a78565b8280016001018555821562000a78579182015b8281111562000a7857825182559160200191906001019062000a5b565b5062000a8692915062000a8a565b5090565b5b8082111562000a86576000815560010162000a8b565b600082601f83011262000ab357600080fd5b81516001600160401b038082111562000ad05762000ad062000d73565b604051601f8301601f19908116603f0116810190828211818310171562000afb5762000afb62000d73565b8160405283815286602085880101111562000b1557600080fd5b62000b2884602083016020890162000ca3565b9695505050505050565b60006020828403121562000b4557600080fd5b81516001600160e01b03198116811462000b5e57600080fd5b9392505050565b60008060006060848603121562000b7b57600080fd5b83516001600160401b038082111562000b9357600080fd5b62000ba18783880162000aa1565b9450602086015191508082111562000bb857600080fd5b62000bc68783880162000aa1565b9350604086015191508082111562000bdd57600080fd5b5062000bec8682870162000aa1565b9150509250925092565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000c358160a085016020870162000ca3565b601f01601f19169190910160a00195945050505050565b6000821982111562000c625762000c6262000d31565b500190565b600081600019048311821515161562000c845762000c8462000d31565b500290565b60008282101562000c9e5762000c9e62000d31565b500390565b60005b8381101562000cc057818101518382015260200162000ca6565b8381111562000cd0576000848401525b50505050565b600181811c9082168062000ceb57607f821691505b6020821081141562000d0d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000d2a5762000d2a62000d31565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612c768062000d996000396000f3fe6080604052600436106102bb5760003560e01c80636f9170f61161016e578063ba4e5c49116100cb578063d5abeb011161007f578063e985e9c511610064578063e985e9c51461071f578063edec5f2714610768578063f2fde38b1461078857600080fd5b8063d5abeb01146106e9578063da3ef23f146106ff57600080fd5b8063c6682862116100b0578063c668286214610694578063c87b56dd146106a9578063d0eb26b0146106c957600080fd5b8063ba4e5c491461065e578063ba7d2c761461067e57600080fd5b806395d89b4111610122578063a22cb46511610107578063a22cb465146105ff578063a47590741461061f578063b88d4fde1461063e57600080fd5b806395d89b41146105d7578063a0712d68146105ec57600080fd5b8063715018a611610153578063715018a6146105845780637f00c7a6146105995780638da5cb5b146105b957600080fd5b80636f9170f61461054457806370a082311461056457600080fd5b80633c9527641161021c5780634f6ccce7116101d05780635c975abb116101b55780635c975abb146104f55780636352211e1461050f5780636c0360eb1461052f57600080fd5b80634f6ccce7146104b557806355f804b3146104d557600080fd5b806342842e0e1161020157806342842e0e14610448578063438b63001461046857806344a0d68a1461049557600080fd5b80633c952764146104205780633ccfd60b1461044057600080fd5b806313faede611610273578063239c70ae11610258578063239c70ae146103ca57806323b872dd146103e05780632f745c591461040057600080fd5b806313faede61461039157806318160ddd146103b557600080fd5b806306fdde03116102a457806306fdde0314610317578063081812fc14610339578063095ea7b31461037157600080fd5b806301ffc9a7146102c057806302329a29146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004612851565b6107a8565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b50610315610310366004612836565b610804565b005b34801561032357600080fd5b5061032c610876565b6040516102ec9190612a5d565b34801561034557600080fd5b506103596103543660046128d4565b610908565b6040516001600160a01b0390911681526020016102ec565b34801561037d57600080fd5b5061031561038c366004612797565b6109ae565b34801561039d57600080fd5b506103a7600d5481565b6040519081526020016102ec565b3480156103c157600080fd5b506008546103a7565b3480156103d657600080fd5b506103a7600f5481565b3480156103ec57600080fd5b506103156103fb3660046126b5565b610ae0565b34801561040c57600080fd5b506103a761041b366004612797565b610b67565b34801561042c57600080fd5b5061031561043b366004612836565b610c0f565b610315610ca0565b34801561045457600080fd5b506103156104633660046126b5565b610d20565b34801561047457600080fd5b50610488610483366004612667565b610d3b565b6040516102ec9190612a19565b3480156104a157600080fd5b506103156104b03660046128d4565b610ddd565b3480156104c157600080fd5b506103a76104d03660046128d4565b610e3c565b3480156104e157600080fd5b506103156104f036600461288b565b610ee0565b34801561050157600080fd5b506011546102e09060ff1681565b34801561051b57600080fd5b5061035961052a3660046128d4565b610f51565b34801561053b57600080fd5b5061032c610fdc565b34801561055057600080fd5b506102e061055f366004612667565b61106a565b34801561057057600080fd5b506103a761057f366004612667565b6110d4565b34801561059057600080fd5b5061031561116e565b3480156105a557600080fd5b506103156105b43660046128d4565b6111d2565b3480156105c557600080fd5b50600a546001600160a01b0316610359565b3480156105e357600080fd5b5061032c611231565b6103156105fa3660046128d4565b611240565b34801561060b57600080fd5b5061031561061a36600461276d565b611374565b34801561062b57600080fd5b506011546102e090610100900460ff1681565b34801561064a57600080fd5b506103156106593660046126f1565b611439565b34801561066a57600080fd5b506103596106793660046128d4565b6114c7565b34801561068a57600080fd5b506103a760105481565b3480156106a057600080fd5b5061032c6114f1565b3480156106b557600080fd5b5061032c6106c43660046128d4565b6114fe565b3480156106d557600080fd5b506103156106e43660046128d4565b6115ea565b3480156106f557600080fd5b506103a7600e5481565b34801561070b57600080fd5b5061031561071a36600461288b565b611649565b34801561072b57600080fd5b506102e061073a366004612682565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077457600080fd5b506103156107833660046127c1565b6116b6565b34801561079457600080fd5b506103156107a3366004612667565b611728565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806107fe57506107fe82611810565b92915050565b600a546001600160a01b031633146108635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461088590612b1c565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612b1c565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161085a565b506000908152600460205260409020546001600160a01b031690565b60006109b982610f51565b9050806001600160a01b0316836001600160a01b03161415610a435760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161085a565b336001600160a01b0382161480610a5f5750610a5f813361073a565b610ad15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161085a565b610adb83836118f3565b505050565b610aea3382611979565b610b5c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161085a565b610adb838383611a81565b6000610b72836110d4565b8210610be65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161085a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b60118054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b600a546001600160a01b03163314610cfa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b60405133904780156108fc02916000818181858888f19350505050610d1e57600080fd5b565b610adb83838360405180602001604052806000815250611439565b60606000610d48836110d4565b905060008167ffffffffffffffff811115610d6557610d65612bfc565b604051908082528060200260200182016040528015610d8e578160200160208202803683370190505b50905060005b82811015610dd557610da68582610b67565b828281518110610db857610db8612be6565b602090810291909101015280610dcd81612b57565b915050610d94565b509392505050565b600a546001600160a01b03163314610e375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b600d55565b6000610e4760085490565b8210610ebb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161085a565b60088281548110610ece57610ece612be6565b90600052602060002001549050919050565b600a546001600160a01b03163314610f3a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b8051610f4d90600b9060208401906124a3565b5050565b6000818152600260205260408120546001600160a01b0316806107fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161085a565b600b8054610fe990612b1c565b80601f016020809104026020016040519081016040528092919081815260200182805461101590612b1c565b80156110625780601f1061103757610100808354040283529160200191611062565b820191906000526020600020905b81548152906001019060200180831161104557829003601f168201915b505050505081565b6000805b6012548110156110cb57826001600160a01b03166012828154811061109557611095612be6565b6000918252602090912001546001600160a01b031614156110b95750600192915050565b806110c381612b57565b91505061106e565b50600092915050565b60006001600160a01b0382166111525760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161085a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111c85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b610d1e6000611c71565b600a546001600160a01b0316331461122c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b600f55565b60606001805461088590612b1c565b60115460ff161561125057600080fd5b600061125b60085490565b90506000821161126a57600080fd5b600f5482111561127957600080fd5b600e546112868383612a70565b111561129157600080fd5b600a546001600160a01b031633146113455760115460ff6101009091041615156001141561132b576112c23361106a565b61130e5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161085a565b6000611319336110d4565b9050601054811061132957600080fd5b505b81600d546113399190612a9c565b34101561134557600080fd5b60015b828111610adb576113623361135d8385612a70565b611cdb565b8061136c81612b57565b915050611348565b6001600160a01b0382163314156113cd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161085a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114433383611979565b6114b55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161085a565b6114c184848484611cf5565b50505050565b601281815481106114d757600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610fe990612b1c565b6000818152600260205260409020546060906001600160a01b031661158b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161085a565b6000611595611d7e565b905060008151116115b557604051806020016040528060008152506115e3565b806115bf84611d8d565b600c6040516020016115d393929190612919565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b601055565b600a546001600160a01b031633146116a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b8051610f4d90600c9060208401906124a3565b600a546001600160a01b031633146117105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b61171c60126000612527565b610adb60128383612545565b600a546001600160a01b031633146117825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b6001600160a01b0381166117fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161085a565b61180781611c71565b50565b3b151590565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806118a357507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107fe57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107fe565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061194082610f51565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161085a565b6000611a0e83610f51565b9050806001600160a01b0316846001600160a01b03161480611a495750836001600160a01b0316611a3e84610908565b6001600160a01b0316145b80611a7957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a9482610f51565b6001600160a01b031614611b105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161085a565b6001600160a01b038216611b8b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161085a565b611b96838383611ebf565b611ba16000826118f3565b6001600160a01b0383166000908152600360205260408120805460019290611bca908490612ad9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bf8908490612a70565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f4d828260405180602001604052806000815250611f77565b611d00848484611a81565b611d0c84848484612000565b6114c15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161085a565b6060600b805461088590612b1c565b606081611dcd57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611df75780611de181612b57565b9150611df09050600a83612a88565b9150611dd1565b60008167ffffffffffffffff811115611e1257611e12612bfc565b6040519080825280601f01601f191660200182016040528015611e3c576020820181803683370190505b5090505b8415611a7957611e51600183612ad9565b9150611e5e600a86612b90565b611e69906030612a70565b60f81b818381518110611e7e57611e7e612be6565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611eb8600a86612a88565b9450611e40565b6001600160a01b038316611f1a57611f1581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f3d565b816001600160a01b0316836001600160a01b031614611f3d57611f3d83826121ad565b6001600160a01b038216611f5457610adb8161224a565b826001600160a01b0316826001600160a01b031614610adb57610adb82826122f9565b611f81838361233d565b611f8e6000848484612000565b610adb5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161085a565b60006001600160a01b0384163b156121a2576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061205d9033908990889088906004016129dd565b602060405180830381600087803b15801561207757600080fd5b505af19250505080156120a7575060408051601f3d908101601f191682019092526120a49181019061286e565b60015b612157573d8080156120d5576040519150601f19603f3d011682016040523d82523d6000602084013e6120da565b606091505b50805161214f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161085a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611a79565b506001949350505050565b600060016121ba846110d4565b6121c49190612ad9565b600083815260076020526040902054909150808214612217576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061225c90600190612ad9565b6000838152600960205260408120546008805493945090928490811061228457612284612be6565b9060005260206000200154905080600883815481106122a5576122a5612be6565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122dd576122dd612bd0565b6001900381819060005260206000200160009055905550505050565b6000612304836110d4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161085a565b6000818152600260205260409020546001600160a01b0316156123f85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161085a565b61240460008383611ebf565b6001600160a01b038216600090815260036020526040812080546001929061242d908490612a70565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124af90612b1c565b90600052602060002090601f0160209004810192826124d15760008555612517565b82601f106124ea57805160ff1916838001178555612517565b82800160010185558215612517579182015b828111156125175782518255916020019190600101906124fc565b506125239291506125b0565b5090565b508054600082559060005260206000209081019061180791906125b0565b828054828255906000526020600020908101928215612517579160200282015b828111156125175781547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03843516178255602090920191600190910190612565565b5b8082111561252357600081556001016125b1565b600067ffffffffffffffff808411156125e0576125e0612bfc565b604051601f8501601f19908116603f0116810190828211818310171561260857612608612bfc565b8160405280935085815286868601111561262157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461265257600080fd5b919050565b8035801515811461265257600080fd5b60006020828403121561267957600080fd5b6115e38261263b565b6000806040838503121561269557600080fd5b61269e8361263b565b91506126ac6020840161263b565b90509250929050565b6000806000606084860312156126ca57600080fd5b6126d38461263b565b92506126e16020850161263b565b9150604084013590509250925092565b6000806000806080858703121561270757600080fd5b6127108561263b565b935061271e6020860161263b565b925060408501359150606085013567ffffffffffffffff81111561274157600080fd5b8501601f8101871361275257600080fd5b612761878235602084016125c5565b91505092959194509250565b6000806040838503121561278057600080fd5b6127898361263b565b91506126ac60208401612657565b600080604083850312156127aa57600080fd5b6127b38361263b565b946020939093013593505050565b600080602083850312156127d457600080fd5b823567ffffffffffffffff808211156127ec57600080fd5b818501915085601f83011261280057600080fd5b81358181111561280f57600080fd5b8660208260051b850101111561282457600080fd5b60209290920196919550909350505050565b60006020828403121561284857600080fd5b6115e382612657565b60006020828403121561286357600080fd5b81356115e381612c12565b60006020828403121561288057600080fd5b81516115e381612c12565b60006020828403121561289d57600080fd5b813567ffffffffffffffff8111156128b457600080fd5b8201601f810184136128c557600080fd5b611a79848235602084016125c5565b6000602082840312156128e657600080fd5b5035919050565b60008151808452612905816020860160208601612af0565b601f01601f19169290920160200192915050565b60008451602061292c8285838a01612af0565b85519184019161293f8184848a01612af0565b8554920191600090600181811c908083168061295c57607f831692505b85831081141561297a57634e487b7160e01b85526022600452602485fd5b80801561298e576001811461299f576129cc565b60ff198516885283880195506129cc565b60008b81526020902060005b858110156129c45781548a8201529084019088016129ab565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a0f60808301846128ed565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a5157835183529284019291840191600101612a35565b50909695505050505050565b6020815260006115e360208301846128ed565b60008219821115612a8357612a83612ba4565b500190565b600082612a9757612a97612bba565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ad457612ad4612ba4565b500290565b600082821015612aeb57612aeb612ba4565b500390565b60005b83811015612b0b578181015183820152602001612af3565b838111156114c15750506000910152565b600181811c90821680612b3057607f821691505b60208210811415612b5157634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b8957612b89612ba4565b5060010190565b600082612b9f57612b9f612bba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461180757600080fdfea2646970667358221220c9b2de499d3cf3c36b3c9cdad56657b1a26f4e3762b9707342caa7548d8c0d3864736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000011416c6c65794b61747a4f6666696369616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011416c6c65794b61747a4f6666696369616c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6641326344546e7a686e464c5054316b4b4557466e6966713639554a63594e646b785539375a596f436479452f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102bb5760003560e01c80636f9170f61161016e578063ba4e5c49116100cb578063d5abeb011161007f578063e985e9c511610064578063e985e9c51461071f578063edec5f2714610768578063f2fde38b1461078857600080fd5b8063d5abeb01146106e9578063da3ef23f146106ff57600080fd5b8063c6682862116100b0578063c668286214610694578063c87b56dd146106a9578063d0eb26b0146106c957600080fd5b8063ba4e5c491461065e578063ba7d2c761461067e57600080fd5b806395d89b4111610122578063a22cb46511610107578063a22cb465146105ff578063a47590741461061f578063b88d4fde1461063e57600080fd5b806395d89b41146105d7578063a0712d68146105ec57600080fd5b8063715018a611610153578063715018a6146105845780637f00c7a6146105995780638da5cb5b146105b957600080fd5b80636f9170f61461054457806370a082311461056457600080fd5b80633c9527641161021c5780634f6ccce7116101d05780635c975abb116101b55780635c975abb146104f55780636352211e1461050f5780636c0360eb1461052f57600080fd5b80634f6ccce7146104b557806355f804b3146104d557600080fd5b806342842e0e1161020157806342842e0e14610448578063438b63001461046857806344a0d68a1461049557600080fd5b80633c952764146104205780633ccfd60b1461044057600080fd5b806313faede611610273578063239c70ae11610258578063239c70ae146103ca57806323b872dd146103e05780632f745c591461040057600080fd5b806313faede61461039157806318160ddd146103b557600080fd5b806306fdde03116102a457806306fdde0314610317578063081812fc14610339578063095ea7b31461037157600080fd5b806301ffc9a7146102c057806302329a29146102f5575b600080fd5b3480156102cc57600080fd5b506102e06102db366004612851565b6107a8565b60405190151581526020015b60405180910390f35b34801561030157600080fd5b50610315610310366004612836565b610804565b005b34801561032357600080fd5b5061032c610876565b6040516102ec9190612a5d565b34801561034557600080fd5b506103596103543660046128d4565b610908565b6040516001600160a01b0390911681526020016102ec565b34801561037d57600080fd5b5061031561038c366004612797565b6109ae565b34801561039d57600080fd5b506103a7600d5481565b6040519081526020016102ec565b3480156103c157600080fd5b506008546103a7565b3480156103d657600080fd5b506103a7600f5481565b3480156103ec57600080fd5b506103156103fb3660046126b5565b610ae0565b34801561040c57600080fd5b506103a761041b366004612797565b610b67565b34801561042c57600080fd5b5061031561043b366004612836565b610c0f565b610315610ca0565b34801561045457600080fd5b506103156104633660046126b5565b610d20565b34801561047457600080fd5b50610488610483366004612667565b610d3b565b6040516102ec9190612a19565b3480156104a157600080fd5b506103156104b03660046128d4565b610ddd565b3480156104c157600080fd5b506103a76104d03660046128d4565b610e3c565b3480156104e157600080fd5b506103156104f036600461288b565b610ee0565b34801561050157600080fd5b506011546102e09060ff1681565b34801561051b57600080fd5b5061035961052a3660046128d4565b610f51565b34801561053b57600080fd5b5061032c610fdc565b34801561055057600080fd5b506102e061055f366004612667565b61106a565b34801561057057600080fd5b506103a761057f366004612667565b6110d4565b34801561059057600080fd5b5061031561116e565b3480156105a557600080fd5b506103156105b43660046128d4565b6111d2565b3480156105c557600080fd5b50600a546001600160a01b0316610359565b3480156105e357600080fd5b5061032c611231565b6103156105fa3660046128d4565b611240565b34801561060b57600080fd5b5061031561061a36600461276d565b611374565b34801561062b57600080fd5b506011546102e090610100900460ff1681565b34801561064a57600080fd5b506103156106593660046126f1565b611439565b34801561066a57600080fd5b506103596106793660046128d4565b6114c7565b34801561068a57600080fd5b506103a760105481565b3480156106a057600080fd5b5061032c6114f1565b3480156106b557600080fd5b5061032c6106c43660046128d4565b6114fe565b3480156106d557600080fd5b506103156106e43660046128d4565b6115ea565b3480156106f557600080fd5b506103a7600e5481565b34801561070b57600080fd5b5061031561071a36600461288b565b611649565b34801561072b57600080fd5b506102e061073a366004612682565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561077457600080fd5b506103156107833660046127c1565b6116b6565b34801561079457600080fd5b506103156107a3366004612667565b611728565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d630000000000000000000000000000000000000000000000000000000014806107fe57506107fe82611810565b92915050565b600a546001600160a01b031633146108635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461088590612b1c565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190612b1c565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161085a565b506000908152600460205260409020546001600160a01b031690565b60006109b982610f51565b9050806001600160a01b0316836001600160a01b03161415610a435760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161085a565b336001600160a01b0382161480610a5f5750610a5f813361073a565b610ad15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161085a565b610adb83836118f3565b505050565b610aea3382611979565b610b5c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161085a565b610adb838383611a81565b6000610b72836110d4565b8210610be65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161085a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c695760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b60118054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b600a546001600160a01b03163314610cfa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b60405133904780156108fc02916000818181858888f19350505050610d1e57600080fd5b565b610adb83838360405180602001604052806000815250611439565b60606000610d48836110d4565b905060008167ffffffffffffffff811115610d6557610d65612bfc565b604051908082528060200260200182016040528015610d8e578160200160208202803683370190505b50905060005b82811015610dd557610da68582610b67565b828281518110610db857610db8612be6565b602090810291909101015280610dcd81612b57565b915050610d94565b509392505050565b600a546001600160a01b03163314610e375760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b600d55565b6000610e4760085490565b8210610ebb5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161085a565b60088281548110610ece57610ece612be6565b90600052602060002001549050919050565b600a546001600160a01b03163314610f3a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b8051610f4d90600b9060208401906124a3565b5050565b6000818152600260205260408120546001600160a01b0316806107fe5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161085a565b600b8054610fe990612b1c565b80601f016020809104026020016040519081016040528092919081815260200182805461101590612b1c565b80156110625780601f1061103757610100808354040283529160200191611062565b820191906000526020600020905b81548152906001019060200180831161104557829003601f168201915b505050505081565b6000805b6012548110156110cb57826001600160a01b03166012828154811061109557611095612be6565b6000918252602090912001546001600160a01b031614156110b95750600192915050565b806110c381612b57565b91505061106e565b50600092915050565b60006001600160a01b0382166111525760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161085a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111c85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b610d1e6000611c71565b600a546001600160a01b0316331461122c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b600f55565b60606001805461088590612b1c565b60115460ff161561125057600080fd5b600061125b60085490565b90506000821161126a57600080fd5b600f5482111561127957600080fd5b600e546112868383612a70565b111561129157600080fd5b600a546001600160a01b031633146113455760115460ff6101009091041615156001141561132b576112c23361106a565b61130e5760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161085a565b6000611319336110d4565b9050601054811061132957600080fd5b505b81600d546113399190612a9c565b34101561134557600080fd5b60015b828111610adb576113623361135d8385612a70565b611cdb565b8061136c81612b57565b915050611348565b6001600160a01b0382163314156113cd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161085a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114433383611979565b6114b55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161085a565b6114c184848484611cf5565b50505050565b601281815481106114d757600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610fe990612b1c565b6000818152600260205260409020546060906001600160a01b031661158b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161085a565b6000611595611d7e565b905060008151116115b557604051806020016040528060008152506115e3565b806115bf84611d8d565b600c6040516020016115d393929190612919565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146116445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b601055565b600a546001600160a01b031633146116a35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b8051610f4d90600c9060208401906124a3565b600a546001600160a01b031633146117105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b61171c60126000612527565b610adb60128383612545565b600a546001600160a01b031633146117825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161085a565b6001600160a01b0381166117fe5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161085a565b61180781611c71565b50565b3b151590565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806118a357507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107fe57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146107fe565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061194082610f51565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a035760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161085a565b6000611a0e83610f51565b9050806001600160a01b0316846001600160a01b03161480611a495750836001600160a01b0316611a3e84610908565b6001600160a01b0316145b80611a7957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a9482610f51565b6001600160a01b031614611b105760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606482015260840161085a565b6001600160a01b038216611b8b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161085a565b611b96838383611ebf565b611ba16000826118f3565b6001600160a01b0383166000908152600360205260408120805460019290611bca908490612ad9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611bf8908490612a70565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610f4d828260405180602001604052806000815250611f77565b611d00848484611a81565b611d0c84848484612000565b6114c15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161085a565b6060600b805461088590612b1c565b606081611dcd57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611df75780611de181612b57565b9150611df09050600a83612a88565b9150611dd1565b60008167ffffffffffffffff811115611e1257611e12612bfc565b6040519080825280601f01601f191660200182016040528015611e3c576020820181803683370190505b5090505b8415611a7957611e51600183612ad9565b9150611e5e600a86612b90565b611e69906030612a70565b60f81b818381518110611e7e57611e7e612be6565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611eb8600a86612a88565b9450611e40565b6001600160a01b038316611f1a57611f1581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f3d565b816001600160a01b0316836001600160a01b031614611f3d57611f3d83826121ad565b6001600160a01b038216611f5457610adb8161224a565b826001600160a01b0316826001600160a01b031614610adb57610adb82826122f9565b611f81838361233d565b611f8e6000848484612000565b610adb5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161085a565b60006001600160a01b0384163b156121a2576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061205d9033908990889088906004016129dd565b602060405180830381600087803b15801561207757600080fd5b505af19250505080156120a7575060408051601f3d908101601f191682019092526120a49181019061286e565b60015b612157573d8080156120d5576040519150601f19603f3d011682016040523d82523d6000602084013e6120da565b606091505b50805161214f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161085a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611a79565b506001949350505050565b600060016121ba846110d4565b6121c49190612ad9565b600083815260076020526040902054909150808214612217576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061225c90600190612ad9565b6000838152600960205260408120546008805493945090928490811061228457612284612be6565b9060005260206000200154905080600883815481106122a5576122a5612be6565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122dd576122dd612bd0565b6001900381819060005260206000200160009055905550505050565b6000612304836110d4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161085a565b6000818152600260205260409020546001600160a01b0316156123f85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161085a565b61240460008383611ebf565b6001600160a01b038216600090815260036020526040812080546001929061242d908490612a70565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546124af90612b1c565b90600052602060002090601f0160209004810192826124d15760008555612517565b82601f106124ea57805160ff1916838001178555612517565b82800160010185558215612517579182015b828111156125175782518255916020019190600101906124fc565b506125239291506125b0565b5090565b508054600082559060005260206000209081019061180791906125b0565b828054828255906000526020600020908101928215612517579160200282015b828111156125175781547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03843516178255602090920191600190910190612565565b5b8082111561252357600081556001016125b1565b600067ffffffffffffffff808411156125e0576125e0612bfc565b604051601f8501601f19908116603f0116810190828211818310171561260857612608612bfc565b8160405280935085815286868601111561262157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461265257600080fd5b919050565b8035801515811461265257600080fd5b60006020828403121561267957600080fd5b6115e38261263b565b6000806040838503121561269557600080fd5b61269e8361263b565b91506126ac6020840161263b565b90509250929050565b6000806000606084860312156126ca57600080fd5b6126d38461263b565b92506126e16020850161263b565b9150604084013590509250925092565b6000806000806080858703121561270757600080fd5b6127108561263b565b935061271e6020860161263b565b925060408501359150606085013567ffffffffffffffff81111561274157600080fd5b8501601f8101871361275257600080fd5b612761878235602084016125c5565b91505092959194509250565b6000806040838503121561278057600080fd5b6127898361263b565b91506126ac60208401612657565b600080604083850312156127aa57600080fd5b6127b38361263b565b946020939093013593505050565b600080602083850312156127d457600080fd5b823567ffffffffffffffff808211156127ec57600080fd5b818501915085601f83011261280057600080fd5b81358181111561280f57600080fd5b8660208260051b850101111561282457600080fd5b60209290920196919550909350505050565b60006020828403121561284857600080fd5b6115e382612657565b60006020828403121561286357600080fd5b81356115e381612c12565b60006020828403121561288057600080fd5b81516115e381612c12565b60006020828403121561289d57600080fd5b813567ffffffffffffffff8111156128b457600080fd5b8201601f810184136128c557600080fd5b611a79848235602084016125c5565b6000602082840312156128e657600080fd5b5035919050565b60008151808452612905816020860160208601612af0565b601f01601f19169290920160200192915050565b60008451602061292c8285838a01612af0565b85519184019161293f8184848a01612af0565b8554920191600090600181811c908083168061295c57607f831692505b85831081141561297a57634e487b7160e01b85526022600452602485fd5b80801561298e576001811461299f576129cc565b60ff198516885283880195506129cc565b60008b81526020902060005b858110156129c45781548a8201529084019088016129ab565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612a0f60808301846128ed565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a5157835183529284019291840191600101612a35565b50909695505050505050565b6020815260006115e360208301846128ed565b60008219821115612a8357612a83612ba4565b500190565b600082612a9757612a97612bba565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ad457612ad4612ba4565b500290565b600082821015612aeb57612aeb612ba4565b500390565b60005b83811015612b0b578181015183820152602001612af3565b838111156114c15750506000910152565b600181811c90821680612b3057607f821691505b60208210811415612b5157634e487b7160e01b600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b8957612b89612ba4565b5060010190565b600082612b9f57612b9f612bba565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461180757600080fdfea2646970667358221220c9b2de499d3cf3c36b3c9cdad56657b1a26f4e3762b9707342caa7548d8c0d3864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000011416c6c65794b61747a4f6666696369616c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011416c6c65794b61747a4f6666696369616c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6641326344546e7a686e464c5054316b4b4557466e6966713639554a63594e646b785539375a596f436479452f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AlleyKatzOfficial
Arg [1] : _symbol (string): AlleyKatzOfficial
Arg [2] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmfA2cDTnzhnFLPT1kKEWFnifq69UJcYNdkxU97ZYoCdyE/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [4] : 416c6c65794b61747a4f6666696369616c000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [6] : 416c6c65794b61747a4f6666696369616c000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d6641326344546e7a686e464c5054316b4b4557466e6966713639554a
Arg [10] : 63594e646b785539375a596f436479452f000000000000000000000000000000


Deployed Bytecode Sourcemap

43144:4113:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34666:224;;;;;;;;;;-1:-1:-1;34666:224:0;;;;;:::i;:::-;;:::i;:::-;;;8519:14:1;;8512:22;8494:41;;8482:2;8467:18;34666:224:0;;;;;;;;46810:73;;;;;;;;;;-1:-1:-1;46810:73:0;;;;;:::i;:::-;;:::i;:::-;;22558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24117:221::-;;;;;;;;;;-1:-1:-1;24117:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7134:55:1;;;7116:74;;7104:2;7089:18;24117:221:0;6970:226:1;23640:411:0;;;;;;;;;;-1:-1:-1;23640:411:0;;;;;:::i;:::-;;:::i;43323:31::-;;;;;;;;;;;;;;;;;;;16475:25:1;;;16463:2;16448:18;43323:31:0;16329:177:1;35306:113:0;;;;;;;;;;-1:-1:-1;35394:10:0;:17;35306:113;;43516:33;;;;;;;;;;;;;;;;25007:339;;;;;;;;;;-1:-1:-1;25007:339:0;;;;;:::i;:::-;;:::i;34974:256::-;;;;;;;;;;-1:-1:-1;34974:256:0;;;;;:::i;:::-;;:::i;46890:95::-;;;;;;;;;;-1:-1:-1;46890:95:0;;;;;:::i;:::-;;:::i;47140:114::-;;;:::i;25417:185::-;;;;;;;;;;-1:-1:-1;25417:185:0;;;;;:::i;:::-;;:::i;45456:347::-;;;;;;;;;;-1:-1:-1;45456:347:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46254:82::-;;;;;;;;;;-1:-1:-1;46254:82:0;;;;;:::i;:::-;;:::i;35496:233::-;;;;;;;;;;-1:-1:-1;35496:233:0;;;;;:::i;:::-;;:::i;46578:98::-;;;;;;;;;;-1:-1:-1;46578:98:0;;;;;:::i;:::-;;:::i;43712:26::-;;;;;;;;;;-1:-1:-1;43712:26:0;;;;;;;;22252:239;;;;;;;;;;-1:-1:-1;22252:239:0;;;;;:::i;:::-;;:::i;43255:21::-;;;;;;;;;;;;;:::i;45179:271::-;;;;;;;;;;-1:-1:-1;45179:271:0;;;;;:::i;:::-;;:::i;21982:208::-;;;;;;;;;;-1:-1:-1;21982:208:0;;;;;:::i;:::-;;:::i;42455:94::-;;;;;;;;;;;;;:::i;46454:118::-;;;;;;;;;;-1:-1:-1;46454:118:0;;;;;:::i;:::-;;:::i;41804:87::-;;;;;;;;;;-1:-1:-1;41877:6:0;;-1:-1:-1;;;;;41877:6:0;41804:87;;22727:104;;;;;;;;;;;;;:::i;44482:689::-;;;;;;:::i;:::-;;:::i;24410:295::-;;;;;;;;;;-1:-1:-1;24410:295:0;;;;;:::i;:::-;;:::i;43743:34::-;;;;;;;;;;-1:-1:-1;43743:34:0;;;;;;;;;;;25673:328;;;;;;;;;;-1:-1:-1;25673:328:0;;;;;:::i;:::-;;:::i;43782:37::-;;;;;;;;;;-1:-1:-1;43782:37:0;;;;;:::i;:::-;;:::i;43647:::-;;;;;;;;;;;;;;;;43281;;;;;;;;;;;;;:::i;45809:423::-;;;;;;;;;;-1:-1:-1;45809:423:0;;;;;:::i;:::-;;:::i;46342:106::-;;;;;;;;;;-1:-1:-1;46342:106:0;;;;;:::i;:::-;;:::i;43384:31::-;;;;;;;;;;;;;;;;46682:122;;;;;;;;;;-1:-1:-1;46682:122:0;;;;;:::i;:::-;;:::i;24776:164::-;;;;;;;;;;-1:-1:-1;24776:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24776:164;46990:144;;;;;;;;;;-1:-1:-1;46990:144:0;;;;;:::i;:::-;;:::i;42704:192::-;;;;;;;;;;-1:-1:-1;42704:192:0;;;;;:::i;:::-;;:::i;34666:224::-;34768:4;34792:50;;;34807:35;34792:50;;:90;;;34846:36;34870:11;34846:23;:36::i;:::-;34785:97;34666:224;-1:-1:-1;;34666:224:0:o;46810:73::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;;;;;;;;;46862:6:::1;:15:::0;;-1:-1:-1;;46862:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46810:73::o;22558:100::-;22612:13;22645:5;22638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22558:100;:::o;24117:221::-;24193:7;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;24213:73;;;;-1:-1:-1;;;24213:73:0;;13346:2:1;24213:73:0;;;13328:21:1;13385:2;13365:18;;;13358:30;13424:34;13404:18;;;13397:62;13495:14;13475:18;;;13468:42;13527:19;;24213:73:0;13144:408:1;24213:73:0;-1:-1:-1;24306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24306:24:0;;24117:221::o;23640:411::-;23721:13;23737:23;23752:7;23737:14;:23::i;:::-;23721:39;;23785:5;-1:-1:-1;;;;;23779:11:0;:2;-1:-1:-1;;;;;23779:11:0;;;23771:57;;;;-1:-1:-1;;;23771:57:0;;14946:2:1;23771:57:0;;;14928:21:1;14985:2;14965:18;;;14958:30;15024:34;15004:18;;;14997:62;15095:3;15075:18;;;15068:31;15116:19;;23771:57:0;14744:397:1;23771:57:0;20167:10;-1:-1:-1;;;;;23863:21:0;;;;:62;;-1:-1:-1;23888:37:0;23905:5;20167:10;24776:164;:::i;23888:37::-;23841:168;;;;-1:-1:-1;;;23841:168:0;;11739:2:1;23841:168:0;;;11721:21:1;11778:2;11758:18;;;11751:30;11817:34;11797:18;;;11790:62;11888:26;11868:18;;;11861:54;11932:19;;23841:168:0;11537:420:1;23841:168:0;24022:21;24031:2;24035:7;24022:8;:21::i;:::-;23710:341;23640:411;;:::o;25007:339::-;25202:41;20167:10;25235:7;25202:18;:41::i;:::-;25194:103;;;;-1:-1:-1;;;25194:103:0;;15348:2:1;25194:103:0;;;15330:21:1;15387:2;15367:18;;;15360:30;15426:34;15406:18;;;15399:62;15497:19;15477:18;;;15470:47;15534:19;;25194:103:0;15146:413:1;25194:103:0;25310:28;25320:4;25326:2;25330:7;25310:9;:28::i;34974:256::-;35071:7;35107:23;35124:5;35107:16;:23::i;:::-;35099:5;:31;35091:87;;;;-1:-1:-1;;;35091:87:0;;8972:2:1;35091:87:0;;;8954:21:1;9011:2;8991:18;;;8984:30;9050:34;9030:18;;;9023:62;9121:13;9101:18;;;9094:41;9152:19;;35091:87:0;8770:407:1;35091:87:0;-1:-1:-1;;;;;;35196:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34974:256::o;46890:95::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;13557:356:1;42016:68:0;46955:15:::1;:24:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;46890:95::o;47140:114::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;13557:356:1;42016:68:0;47200:47:::1;::::0;47208:10:::1;::::0;47225:21:::1;47200:47:::0;::::1;;;::::0;::::1;::::0;;;47225:21;47208:10;47200:47;::::1;;;;;;47192:56;;;::::0;::::1;;47140:114::o:0;25417:185::-;25555:39;25572:4;25578:2;25582:7;25555:39;;;;;;;;;;;;:16;:39::i;45456:347::-;45531:16;45559:23;45585:17;45595:6;45585:9;:17::i;:::-;45559:43;;45609:25;45651:15;45637:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45637:30:0;;45609:58;;45678:9;45674:102;45693:15;45689:1;:19;45674:102;;;45738:30;45758:6;45766:1;45738:19;:30::i;:::-;45724:8;45733:1;45724:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45710:3;;;;:::i;:::-;;;;45674:102;;;-1:-1:-1;45789:8:0;45456:347;-1:-1:-1;;;45456:347:0:o;46254:82::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;13557:356:1;42016:68:0;46315:4:::1;:15:::0;46254:82::o;35496:233::-;35571:7;35607:30;35394:10;:17;;35306:113;35607:30;35599:5;:38;35591:95;;;;-1:-1:-1;;;35591:95:0;;15766:2:1;35591:95:0;;;15748:21:1;15805:2;15785:18;;;15778:30;15844:34;15824:18;;;15817:62;15915:14;15895:18;;;15888:42;15947:19;;35591:95:0;15564:408:1;35591:95:0;35704:10;35715:5;35704:17;;;;;;;;:::i;:::-;;;;;;;;;35697:24;;35496:233;;;:::o;46578:98::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;13557:356:1;42016:68:0;46649:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46578:98:::0;:::o;22252:239::-;22324:7;22360:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22360:16:0;22395:19;22387:73;;;;-1:-1:-1;;;22387:73:0;;12575:2:1;22387:73:0;;;12557:21:1;12614:2;12594:18;;;12587:30;12653:34;12633:18;;;12626:62;12724:11;12704:18;;;12697:39;12753:19;;22387:73:0;12373:405:1;43255:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45179:271::-;45238:4;;45255:165;45278:20;:27;45274:31;;45255:165;;;45357:5;-1:-1:-1;;;;;45330:32:0;:20;45351:1;45330:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;45330:23:0;:32;45326:83;;;-1:-1:-1;45389:4:0;;45179:271;-1:-1:-1;;45179:271:0:o;45326:83::-;45307:3;;;;:::i;:::-;;;;45255:165;;;-1:-1:-1;45437:5:0;;45179:271;-1:-1:-1;;45179:271:0:o;21982:208::-;22054:7;-1:-1:-1;;;;;22082:19:0;;22074:74;;;;-1:-1:-1;;;22074:74:0;;12164:2:1;22074:74:0;;;12146:21:1;12203:2;12183:18;;;12176:30;12242:34;12222:18;;;12215:62;12313:12;12293:18;;;12286:40;12343:19;;22074:74:0;11962:406:1;22074:74:0;-1:-1:-1;;;;;;22166:16:0;;;;;:9;:16;;;;;;;21982:208::o;42455:94::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;13557:356:1;42016:68:0;42520:21:::1;42538:1;42520:9;:21::i;46454:118::-:0;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;13557:356:1;42016:68:0;46533:13:::1;:33:::0;46454:118::o;22727:104::-;22783:13;22816:7;22809:14;;;;;:::i;44482:689::-;44548:6;;;;44547:7;44539:16;;;;;;44562:14;44579:13;35394:10;:17;;35306:113;44579:13;44562:30;;44621:1;44607:11;:15;44599:24;;;;;;44653:13;;44638:11;:28;;44630:37;;;;;;44706:9;;44682:20;44691:11;44682:6;:20;:::i;:::-;:33;;44674:42;;;;;;41877:6;;-1:-1:-1;;;;;41877:6:0;44729:10;:21;44725:335;;44767:15;;;;;;;;:23;;:15;:23;44763:239;;;44815:25;44829:10;44815:13;:25::i;:::-;44807:61;;;;-1:-1:-1;;;44807:61:0;;16179:2:1;44807:61:0;;;16161:21:1;16218:2;16198:18;;;16191:30;16257:25;16237:18;;;16230:53;16300:18;;44807:61:0;15977:347:1;44807:61:0;44883:23;44909:21;44919:10;44909:9;:21::i;:::-;44883:47;;44971:18;;44953:15;:36;44945:45;;;;;;44792:210;44763:239;45040:11;45033:4;;:18;;;;:::i;:::-;45020:9;:31;;45012:40;;;;;;45090:1;45074:92;45098:11;45093:1;:16;45074:92;;45125:33;45135:10;45147;45156:1;45147:6;:10;:::i;:::-;45125:9;:33::i;:::-;45111:3;;;;:::i;:::-;;;;45074:92;;24410:295;-1:-1:-1;;;;;24513:24:0;;20167:10;24513:24;;24505:62;;;;-1:-1:-1;;;24505:62:0;;10972:2:1;24505:62:0;;;10954:21:1;11011:2;10991:18;;;10984:30;11050:27;11030:18;;;11023:55;11095:18;;24505:62:0;10770:349:1;24505:62:0;20167:10;24580:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24580:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24580:53:0;;;;;;;;;;24649:48;;8494:41:1;;;24580:42:0;;20167:10;24649:48;;8467:18:1;24649:48:0;;;;;;;24410:295;;:::o;25673:328::-;25848:41;20167:10;25881:7;25848:18;:41::i;:::-;25840:103;;;;-1:-1:-1;;;25840:103:0;;15348:2:1;25840:103:0;;;15330:21:1;15387:2;15367:18;;;15360:30;15426:34;15406:18;;;15399:62;15497:19;15477:18;;;15470:47;15534:19;;25840:103:0;15146:413:1;25840:103:0;25954:39;25968:4;25974:2;25978:7;25987:5;25954:13;:39::i;:::-;25673:328;;;;:::o;43782:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43782:37:0;;-1:-1:-1;43782:37:0;:::o;43281:::-;;;;;;;:::i;45809:423::-;27576:4;27600:16;;;:7;:16;;;;;;45907:13;;-1:-1:-1;;;;;27600:16:0;45932:97;;;;-1:-1:-1;;;45932:97:0;;14530:2:1;45932:97:0;;;14512:21:1;14569:2;14549:18;;;14542:30;14608:34;14588:18;;;14581:62;14679:17;14659:18;;;14652:45;14714:19;;45932:97:0;14328:411:1;45932:97:0;46038:28;46069:10;:8;:10::i;:::-;46038:41;;46124:1;46099:14;46093:28;:32;:133;;;;;;;;;;;;;;;;;46161:14;46177:18;:7;:16;:18::i;:::-;46197:13;46144:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46093:133;46086:140;45809:423;-1:-1:-1;;;45809:423:0:o;46342:106::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;13557:356:1;42016:68:0;46415:18:::1;:27:::0;46342:106::o;46682:122::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;13557:356:1;42016:68:0;46765:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;46990:144::-:0;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;13557:356:1;42016:68:0;47065:27:::1;47072:20;;47065:27;:::i;:::-;47099:29;:20;47122:6:::0;;47099:29:::1;:::i;42704:192::-:0;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;13759:2:1;42016:68:0;;;13741:21:1;;;13778:18;;;13771:30;13837:34;13817:18;;;13810:62;13889:18;;42016:68:0;13557:356:1;42016:68:0;-1:-1:-1;;;;;42793:22:0;::::1;42785:73;;;::::0;-1:-1:-1;;;42785:73:0;;9803:2:1;42785:73:0::1;::::0;::::1;9785:21:1::0;9842:2;9822:18;;;9815:30;9881:34;9861:18;;;9854:62;9952:8;9932:18;;;9925:36;9978:19;;42785:73:0::1;9601:402:1::0;42785:73:0::1;42869:19;42879:8;42869:9;:19::i;:::-;42704:192:::0;:::o;10444:387::-;10767:20;10815:8;;;10444:387::o;21613:305::-;21715:4;21752:40;;;21767:25;21752:40;;:105;;-1:-1:-1;21809:48:0;;;21824:33;21809:48;21752:105;:158;;;-1:-1:-1;7568:25:0;7553:40;;;;21874:36;7444:157;31493:174;31568:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;31568:29:0;;;;;;;;:24;;31622:23;31568:24;31622:14;:23::i;:::-;-1:-1:-1;;;;;31613:46:0;;;;;;;;;;;31493:174;;:::o;27805:348::-;27898:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;27915:73;;;;-1:-1:-1;;;27915:73:0;;11326:2:1;27915:73:0;;;11308:21:1;11365:2;11345:18;;;11338:30;11404:34;11384:18;;;11377:62;11475:14;11455:18;;;11448:42;11507:19;;27915:73:0;11124:408:1;27915:73:0;27999:13;28015:23;28030:7;28015:14;:23::i;:::-;27999:39;;28068:5;-1:-1:-1;;;;;28057:16:0;:7;-1:-1:-1;;;;;28057:16:0;;:51;;;;28101:7;-1:-1:-1;;;;;28077:31:0;:20;28089:7;28077:11;:20::i;:::-;-1:-1:-1;;;;;28077:31:0;;28057:51;:87;;;-1:-1:-1;;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28112:32;28049:96;27805:348;-1:-1:-1;;;;27805:348:0:o;30797:578::-;30956:4;-1:-1:-1;;;;;30929:31:0;:23;30944:7;30929:14;:23::i;:::-;-1:-1:-1;;;;;30929:31:0;;30921:85;;;;-1:-1:-1;;;30921:85:0;;14120:2:1;30921:85:0;;;14102:21:1;14159:2;14139:18;;;14132:30;14198:34;14178:18;;;14171:62;14269:11;14249:18;;;14242:39;14298:19;;30921:85:0;13918:405:1;30921:85:0;-1:-1:-1;;;;;31025:16:0;;31017:65;;;;-1:-1:-1;;;31017:65:0;;10567:2:1;31017:65:0;;;10549:21:1;10606:2;10586:18;;;10579:30;10645:34;10625:18;;;10618:62;10716:6;10696:18;;;10689:34;10740:19;;31017:65:0;10365:400:1;31017:65:0;31095:39;31116:4;31122:2;31126:7;31095:20;:39::i;:::-;31199:29;31216:1;31220:7;31199:8;:29::i;:::-;-1:-1:-1;;;;;31241:15:0;;;;;;:9;:15;;;;;:20;;31260:1;;31241:15;:20;;31260:1;;31241:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31272:13:0;;;;;;:9;:13;;;;;:18;;31289:1;;31272:13;:18;;31289:1;;31272:18;:::i;:::-;;;;-1:-1:-1;;31301:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;31301:21:0;;;;;;;;;31340:27;;31301:16;;31340:27;;;;;;;30797:578;;;:::o;42904:173::-;42979:6;;;-1:-1:-1;;;;;42996:17:0;;;;;;;;;;;43029:40;;42979:6;;;42996:17;42979:6;;43029:40;;42960:16;;43029:40;42949:128;42904:173;:::o;28495:110::-;28571:26;28581:2;28585:7;28571:26;;;;;;;;;;;;:9;:26::i;26883:315::-;27040:28;27050:4;27056:2;27060:7;27040:9;:28::i;:::-;27087:48;27110:4;27116:2;27120:7;27129:5;27087:22;:48::i;:::-;27079:111;;;;-1:-1:-1;;;27079:111:0;;9384:2:1;27079:111:0;;;9366:21:1;9423:2;9403:18;;;9396:30;9462:34;9442:18;;;9435:62;9533:20;9513:18;;;9506:48;9571:19;;27079:111:0;9182:414:1;44361:102:0;44421:13;44450:7;44443:14;;;;;:::i;7919:723::-;7975:13;8196:10;8192:53;;-1:-1:-1;;8223:10:0;;;;;;;;;;;;;;;;;;7919:723::o;8192:53::-;8270:5;8255:12;8311:78;8318:9;;8311:78;;8344:8;;;;:::i;:::-;;-1:-1:-1;8367:10:0;;-1:-1:-1;8375:2:0;8367:10;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8421:17:0;;8399:39;;8449:154;8456:10;;8449:154;;8483:11;8493:1;8483:11;;:::i;:::-;;-1:-1:-1;8552:10:0;8560:2;8552:5;:10;:::i;:::-;8539:24;;:2;:24;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;8580:11:0;8589:2;8580:11;;:::i;:::-;;;8449:154;;36342:589;-1:-1:-1;;;;;36548:18:0;;36544:187;;36583:40;36615:7;37758:10;:17;;37731:24;;;;:15;:24;;;;;:44;;;37786:24;;;;;;;;;;;;37654:164;36583:40;36544:187;;;36653:2;-1:-1:-1;;;;;36645:10:0;:4;-1:-1:-1;;;;;36645:10:0;;36641:90;;36672:47;36705:4;36711:7;36672:32;:47::i;:::-;-1:-1:-1;;;;;36745:16:0;;36741:183;;36778:45;36815:7;36778:36;:45::i;36741:183::-;36851:4;-1:-1:-1;;;;;36845:10:0;:2;-1:-1:-1;;;;;36845:10:0;;36841:83;;36872:40;36900:2;36904:7;36872:27;:40::i;28832:321::-;28962:18;28968:2;28972:7;28962:5;:18::i;:::-;29013:54;29044:1;29048:2;29052:7;29061:5;29013:22;:54::i;:::-;28991:154;;;;-1:-1:-1;;;28991:154:0;;9384:2:1;28991:154:0;;;9366:21:1;9423:2;9403:18;;;9396:30;9462:34;9442:18;;;9435:62;9533:20;9513:18;;;9506:48;9571:19;;28991:154:0;9182:414:1;32232:799:0;32387:4;-1:-1:-1;;;;;32408:13:0;;10767:20;10815:8;32404:620;;32444:72;;;;;-1:-1:-1;;;;;32444:36:0;;;;;:72;;20167:10;;32495:4;;32501:7;;32510:5;;32444:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32444:72:0;;;;;;;;-1:-1:-1;;32444:72:0;;;;;;;;;;;;:::i;:::-;;;32440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32686:13:0;;32682:272;;32729:60;;-1:-1:-1;;;32729:60:0;;9384:2:1;32729:60:0;;;9366:21:1;9423:2;9403:18;;;9396:30;9462:34;9442:18;;;9435:62;9533:20;9513:18;;;9506:48;9571:19;;32729:60:0;9182:414:1;32682:272:0;32904:6;32898:13;32889:6;32885:2;32881:15;32874:38;32440:529;32567:51;;32577:41;32567:51;;-1:-1:-1;32560:58:0;;32404:620;-1:-1:-1;33008:4:0;32232:799;;;;;;:::o;38445:988::-;38711:22;38761:1;38736:22;38753:4;38736:16;:22::i;:::-;:26;;;;:::i;:::-;38773:18;38794:26;;;:17;:26;;;;;;38711:51;;-1:-1:-1;38927:28:0;;;38923:328;;-1:-1:-1;;;;;38994:18:0;;38972:19;38994:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39045:30;;;;;;:44;;;39162:30;;:17;:30;;;;;:43;;;38923:328;-1:-1:-1;39347:26:0;;;;:17;:26;;;;;;;;39340:33;;;-1:-1:-1;;;;;39391:18:0;;;;;:12;:18;;;;;:34;;;;;;;39384:41;38445:988::o;39728:1079::-;40006:10;:17;39981:22;;40006:21;;40026:1;;40006:21;:::i;:::-;40038:18;40059:24;;;:15;:24;;;;;;40432:10;:26;;39981:46;;-1:-1:-1;40059:24:0;;39981:46;;40432:26;;;;;;:::i;:::-;;;;;;;;;40410:48;;40496:11;40471:10;40482;40471:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40576:28;;;:15;:28;;;;;;;:41;;;40748:24;;;;;40741:31;40783:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39799:1008;;;39728:1079;:::o;37232:221::-;37317:14;37334:20;37351:2;37334:16;:20::i;:::-;-1:-1:-1;;;;;37365:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37410:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37232:221:0:o;29489:382::-;-1:-1:-1;;;;;29569:16:0;;29561:61;;;;-1:-1:-1;;;29561:61:0;;12985:2:1;29561:61:0;;;12967:21:1;;;13004:18;;;12997:30;13063:34;13043:18;;;13036:62;13115:18;;29561:61:0;12783:356:1;29561:61:0;27576:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;:30;29633:58;;;;-1:-1:-1;;;29633:58:0;;10210:2:1;29633:58:0;;;10192:21:1;10249:2;10229:18;;;10222:30;10288;10268:18;;;10261:58;10336:18;;29633:58:0;10008:352:1;29633:58:0;29704:45;29733:1;29737:2;29741:7;29704:20;:45::i;:::-;-1:-1:-1;;;;;29762:13:0;;;;;;:9;:13;;;;;:18;;29779:1;;29762:13;:18;;29779:1;;29762:18;:::i;:::-;;;;-1:-1:-1;;29791:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;29791:21:0;;;;;;;;29830:33;;29791:16;;;29830:33;;29791:16;;29830:33;29489:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:690:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;289:2;283:9;355:2;343:15;;-1:-1:-1;;339:24:1;;;365:2;335:33;331:42;319:55;;;389:18;;;409:22;;;386:46;383:72;;;435:18;;:::i;:::-;475:10;471:2;464:22;504:6;495:15;;534:6;526;519:22;574:3;565:6;560:3;556:16;553:25;550:45;;;591:1;588;581:12;550:45;641:6;636:3;629:4;621:6;617:17;604:44;696:1;689:4;680:6;672;668:19;664:30;657:41;;;;14:690;;;;;:::o;709:196::-;777:20;;-1:-1:-1;;;;;826:54:1;;816:65;;806:93;;895:1;892;885:12;806:93;709:196;;;:::o;910:160::-;975:20;;1031:13;;1024:21;1014:32;;1004:60;;1060:1;1057;1050:12;1075:186;1134:6;1187:2;1175:9;1166:7;1162:23;1158:32;1155:52;;;1203:1;1200;1193:12;1155:52;1226:29;1245:9;1226:29;:::i;1266:260::-;1334:6;1342;1395:2;1383:9;1374:7;1370:23;1366:32;1363:52;;;1411:1;1408;1401:12;1363:52;1434:29;1453:9;1434:29;:::i;:::-;1424:39;;1482:38;1516:2;1505:9;1501:18;1482:38;:::i;:::-;1472:48;;1266:260;;;;;:::o;1531:328::-;1608:6;1616;1624;1677:2;1665:9;1656:7;1652:23;1648:32;1645:52;;;1693:1;1690;1683:12;1645:52;1716:29;1735:9;1716:29;:::i;:::-;1706:39;;1764:38;1798:2;1787:9;1783:18;1764:38;:::i;:::-;1754:48;;1849:2;1838:9;1834:18;1821:32;1811:42;;1531:328;;;;;:::o;1864:666::-;1959:6;1967;1975;1983;2036:3;2024:9;2015:7;2011:23;2007:33;2004:53;;;2053:1;2050;2043:12;2004:53;2076:29;2095:9;2076:29;:::i;:::-;2066:39;;2124:38;2158:2;2147:9;2143:18;2124:38;:::i;:::-;2114:48;;2209:2;2198:9;2194:18;2181:32;2171:42;;2264:2;2253:9;2249:18;2236:32;2291:18;2283:6;2280:30;2277:50;;;2323:1;2320;2313:12;2277:50;2346:22;;2399:4;2391:13;;2387:27;-1:-1:-1;2377:55:1;;2428:1;2425;2418:12;2377:55;2451:73;2516:7;2511:2;2498:16;2493:2;2489;2485:11;2451:73;:::i;:::-;2441:83;;;1864:666;;;;;;;:::o;2535:254::-;2600:6;2608;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;:::-;2690:39;;2748:35;2779:2;2768:9;2764:18;2748:35;:::i;2794:254::-;2862:6;2870;2923:2;2911:9;2902:7;2898:23;2894:32;2891:52;;;2939:1;2936;2929:12;2891:52;2962:29;2981:9;2962:29;:::i;:::-;2952:39;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2794:254:1:o;3053:615::-;3139:6;3147;3200:2;3188:9;3179:7;3175:23;3171:32;3168:52;;;3216:1;3213;3206:12;3168:52;3256:9;3243:23;3285:18;3326:2;3318:6;3315:14;3312:34;;;3342:1;3339;3332:12;3312:34;3380:6;3369:9;3365:22;3355:32;;3425:7;3418:4;3414:2;3410:13;3406:27;3396:55;;3447:1;3444;3437:12;3396:55;3487:2;3474:16;3513:2;3505:6;3502:14;3499:34;;;3529:1;3526;3519:12;3499:34;3582:7;3577:2;3567:6;3564:1;3560:14;3556:2;3552:23;3548:32;3545:45;3542:65;;;3603:1;3600;3593:12;3542:65;3634:2;3626:11;;;;;3656:6;;-1:-1:-1;3053:615:1;;-1:-1:-1;;;;3053:615:1:o;3673:180::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3821:26;3837:9;3821:26;:::i;3858:245::-;3916:6;3969:2;3957:9;3948:7;3944:23;3940:32;3937:52;;;3985:1;3982;3975:12;3937:52;4024:9;4011:23;4043:30;4067:5;4043:30;:::i;4108:249::-;4177:6;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4278:9;4272:16;4297:30;4321:5;4297:30;:::i;4362:450::-;4431:6;4484:2;4472:9;4463:7;4459:23;4455:32;4452:52;;;4500:1;4497;4490:12;4452:52;4540:9;4527:23;4573:18;4565:6;4562:30;4559:50;;;4605:1;4602;4595:12;4559:50;4628:22;;4681:4;4673:13;;4669:27;-1:-1:-1;4659:55:1;;4710:1;4707;4700:12;4659:55;4733:73;4798:7;4793:2;4780:16;4775:2;4771;4767:11;4733:73;:::i;4817:180::-;4876:6;4929:2;4917:9;4908:7;4904:23;4900:32;4897:52;;;4945:1;4942;4935:12;4897:52;-1:-1:-1;4968:23:1;;4817:180;-1:-1:-1;4817:180:1:o;5002:316::-;5043:3;5081:5;5075:12;5108:6;5103:3;5096:19;5124:63;5180:6;5173:4;5168:3;5164:14;5157:4;5150:5;5146:16;5124:63;:::i;:::-;5232:2;5220:15;-1:-1:-1;;5216:88:1;5207:98;;;;5307:4;5203:109;;5002:316;-1:-1:-1;;5002:316:1:o;5323:1642::-;5547:3;5585:6;5579:13;5611:4;5624:51;5668:6;5663:3;5658:2;5650:6;5646:15;5624:51;:::i;:::-;5738:13;;5697:16;;;;5760:55;5738:13;5697:16;5782:15;;;5760:55;:::i;:::-;5904:13;;5837:20;;;5877:1;;5964;5986:18;;;;6039;;;;6066:93;;6144:4;6134:8;6130:19;6118:31;;6066:93;6207:2;6197:8;6194:16;6174:18;6171:40;6168:224;;;-1:-1:-1;;;6241:3:1;6234:90;6347:4;6344:1;6337:15;6377:4;6372:3;6365:17;6168:224;6408:18;6435:168;;;;6617:1;6612:328;;;;6401:539;;6435:168;-1:-1:-1;;6474:9:1;6470:82;6463:5;6456:97;6584:8;6577:5;6573:20;6566:27;;6435:168;;6612:328;16584:1;16577:14;;;16621:4;16608:18;;6707:1;6721:169;6735:8;6732:1;6729:15;6721:169;;;6817:14;;6802:13;;;6795:37;6860:16;;;;6752:10;;6721:169;;;6725:3;;6921:8;6914:5;6910:20;6903:27;;6401:539;-1:-1:-1;6956:3:1;;5323:1642;-1:-1:-1;;;;;;;;;;;5323:1642:1:o;7201:511::-;7395:4;-1:-1:-1;;;;;7505:2:1;7497:6;7493:15;7482:9;7475:34;7557:2;7549:6;7545:15;7540:2;7529:9;7525:18;7518:43;;7597:6;7592:2;7581:9;7577:18;7570:34;7640:3;7635:2;7624:9;7620:18;7613:31;7661:45;7701:3;7690:9;7686:19;7678:6;7661:45;:::i;:::-;7653:53;7201:511;-1:-1:-1;;;;;;7201:511:1:o;7717:632::-;7888:2;7940:21;;;8010:13;;7913:18;;;8032:22;;;7859:4;;7888:2;8111:15;;;;8085:2;8070:18;;;7859:4;8154:169;8168:6;8165:1;8162:13;8154:169;;;8229:13;;8217:26;;8298:15;;;;8263:12;;;;8190:1;8183:9;8154:169;;;-1:-1:-1;8340:3:1;;7717:632;-1:-1:-1;;;;;;7717:632:1:o;8546:219::-;8695:2;8684:9;8677:21;8658:4;8715:44;8755:2;8744:9;8740:18;8732:6;8715:44;:::i;16637:128::-;16677:3;16708:1;16704:6;16701:1;16698:13;16695:39;;;16714:18;;:::i;:::-;-1:-1:-1;16750:9:1;;16637:128::o;16770:120::-;16810:1;16836;16826:35;;16841:18;;:::i;:::-;-1:-1:-1;16875:9:1;;16770:120::o;16895:228::-;16935:7;17061:1;16993:66;16989:74;16986:1;16983:81;16978:1;16971:9;16964:17;16960:105;16957:131;;;17068:18;;:::i;:::-;-1:-1:-1;17108:9:1;;16895:228::o;17128:125::-;17168:4;17196:1;17193;17190:8;17187:34;;;17201:18;;:::i;:::-;-1:-1:-1;17238:9:1;;17128:125::o;17258:258::-;17330:1;17340:113;17354:6;17351:1;17348:13;17340:113;;;17430:11;;;17424:18;17411:11;;;17404:39;17376:2;17369:10;17340:113;;;17471:6;17468:1;17465:13;17462:48;;;-1:-1:-1;;17506:1:1;17488:16;;17481:27;17258:258::o;17521:437::-;17600:1;17596:12;;;;17643;;;17664:61;;17718:4;17710:6;17706:17;17696:27;;17664:61;17771:2;17763:6;17760:14;17740:18;17737:38;17734:218;;;-1:-1:-1;;;17805:1:1;17798:88;17909:4;17906:1;17899:15;17937:4;17934:1;17927:15;17734:218;;17521:437;;;:::o;17963:195::-;18002:3;18033:66;18026:5;18023:77;18020:103;;;18103:18;;:::i;:::-;-1:-1:-1;18150:1:1;18139:13;;17963:195::o;18163:112::-;18195:1;18221;18211:35;;18226:18;;:::i;:::-;-1:-1:-1;18260:9:1;;18163:112::o;18280:184::-;-1:-1:-1;;;18329:1:1;18322:88;18429:4;18426:1;18419:15;18453:4;18450:1;18443:15;18469:184;-1:-1:-1;;;18518:1:1;18511:88;18618:4;18615:1;18608:15;18642:4;18639:1;18632:15;18658:184;-1:-1:-1;;;18707:1:1;18700:88;18807:4;18804:1;18797:15;18831:4;18828:1;18821:15;18847:184;-1:-1:-1;;;18896:1:1;18889:88;18996:4;18993:1;18986:15;19020:4;19017:1;19010:15;19036:184;-1:-1:-1;;;19085:1:1;19078:88;19185:4;19182:1;19175:15;19209:4;19206:1;19199:15;19225:177;19310:66;19303:5;19299:78;19292:5;19289:89;19279:117;;19392:1;19389;19382:12

Swarm Source

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