ETH Price: $3,328.50 (+1.83%)
Gas: 6 Gwei

Token

NFTng Pass (NFTN)
 

Overview

Max Total Supply

999 NFTN

Holders

813

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 NFTN
0x467bf9f3ba1421213460390e34f66a48adfb0ad2
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:
NFTngPass

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.0; 
// SPDX-License-Identifier: MIT
// Contract code designed by @EVMlord for https://linktr.ee/nftng on behalf of https://linktr.ee/harmonicstudioz


/**
 * @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);
    }
}


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

/**
 * @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}.
 *
 * written by EVMlord
 *
 * 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;
    mapping (address => bool) internal authorizations;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
        authorizations[_owner] = true;
    }

    modifier authorized() {
        require(isAuthorized(msg.sender), "!AUTHORIZED"); _;
    }

    function isAuthorized(address adr) public view returns (bool) {
        return authorizations[adr];
    }

    /**
     * Authorize address. Owner only
     */
    function authorize(address adr) public onlyOwner {
        authorizations[adr] = true;
    }

    /**
     * Remove address' authorization. Owner only
     */
    function unauthorize(address adr) public onlyOwner {
        authorizations[adr] = false;
    }

    /**
     * @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;
        authorizations[_owner] = true;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @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);
            }
        }
    }
}

/**
 * @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);
}

/**
 * @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);
}

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

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

/**
 * @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);
}

/**
 * @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);
}

/**
 * @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.
     * written by EVMlord
     */
    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 {}
}

/**
 * @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();
    }
}

interface IERC20 {
    function transferFrom(address from, address to, uint256 amount) external returns(bool);
    function balanceOf(address account) external view returns(uint256);
    function allowance(address owner, address spender) external view returns(uint256);
    function transfer(address to, uint256 value) external returns (bool);
    
}

contract NFTngPass is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 1 ether;
    uint256 public maxSupply = 999;
    uint256 public maxMintAmount = 5;
    address payable public treasury;
    bool public paused = false;
    bool public reveal =false;
    mapping(address => bool) public isBuzzlisted;
    mapping(address => bool) public hasRedeemed;
    uint256 public freeNFTAlreadyMinted = 0;
    uint256 public  NUM_FREE_MINTS = 999;
    bool public BLpaused = false;
    string public hiddenURI;


    constructor(
        string memory _name,
        string memory _symbol,
        address payable _treasury
    ) ERC721(_name, _symbol) {
        treasury = payable(_treasury);
    }

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

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

        if (authorizations[msg.sender] != true) {
            //general public
            require(msg.value >= cost * _mintAmount);     
        }

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

    function buzzlistMint() external {
        uint256 supply = totalSupply();

        require(!BLpaused, "buzzlist minting is over!");
        require(isBuzzlisted[msg.sender],  "You are not buzzlisted");

        require(supply + 1 <= maxSupply, "No more");
        require(freeNFTAlreadyMinted + 1 < NUM_FREE_MINTS);
        require(!hasRedeemed[msg.sender]);

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

        freeNFTAlreadyMinted += 1;
        hasRedeemed[msg.sender] = true;
    }

    function setNUM_FREE_MINTS(uint8 _NUM_FREE_MINTS) external authorized{
        require(_NUM_FREE_MINTS <= maxSupply);
        NUM_FREE_MINTS = _NUM_FREE_MINTS;
        delete _NUM_FREE_MINTS;
    }

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

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

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

        }
    }

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

    function setHiddenUri(string memory _hiddenURI) external authorized {
        hiddenURI = _hiddenURI;
    }

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

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        authorized
    {
        baseExtension = _newBaseExtension;
    }

    function pause() public authorized {
        paused = !paused;
        BLpaused = true;
    }

    function setBLPaused() external authorized {
    BLpaused = !BLpaused;
    }

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

    function addToBuzzlist(address[] memory _users) public authorized {
		require(_users.length > 0,"No Users");
        for (uint256 i = 0; i < _users.length; i++) {
            isBuzzlisted[_users[i]] = true;
        }
    }

	function removeFromBuzzlist(address[] memory _user) public authorized {
		require(_user.length > 0,"No User");
		for(uint256 i = 0;i < _user.length;i++)
        isBuzzlisted[_user[i]] = false;
    }

    /// @dev withdraw ETH
    function withdrawETH() public payable authorized {
        (bool success, ) = payable(treasury).call{
            value: address(this).balance
        }("");
        require(success);
    }

    function updateTreasury(address payable _newTreasury) public onlyOwner {
        treasury = payable(_newTreasury);
    }

    /// @dev withdraw ERC20 tokens
	function withdrawTokens(address _tokenContract) external authorized {
        IERC20 tokenContract = IERC20(_tokenContract);
        uint256 _amount = tokenContract.balanceOf(address(this));
        tokenContract.transfer(msg.sender, _amount);
        emit WithdrawWrongTokens(msg.sender,_tokenContract,_amount);
    }

    /// @dev withdraw ERC721 tokens to the contract owner
    function withdrawNFT(address _tokenContract, uint256[] memory _id) external authorized {
        IERC721 tokenContract = IERC721(_tokenContract);
        for (uint256 i = 0; i < _id.length; i++) {
            tokenContract.safeTransferFrom(address(this), msg.sender, _id[i]);
            emit WithdrawWrongNfts(msg.sender,_tokenContract,_id[i]);
        }
    }

    event WithdrawWrongNfts(address indexed devAddress,address tokenAddress, uint256 tokenId);
	event WithdrawWrongTokens(address indexed devAddress,address tokenAddress, uint256 amount);

	receive() external payable {}
     
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address payable","name":"_treasury","type":"address"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"WithdrawWrongNfts","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawWrongTokens","type":"event"},{"inputs":[],"name":"BLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addToBuzzlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"authorize","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":"buzzlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasRedeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBuzzlisted","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"}],"name":"removeFromBuzzlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setBLPaused","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":"string","name":"_hiddenURI","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_NUM_FREE_MINTS","type":"uint8"}],"name":"setNUM_FREE_MINTS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","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":[],"name":"treasury","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adr","type":"address"}],"name":"unauthorize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newTreasury","type":"address"}],"name":"updateTreasury","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":[],"name":"withdrawETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256[]","name":"_id","type":"uint256[]"}],"name":"withdrawNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005608090815264173539b7b760d91b60a052600d9062000026908262000229565b50670de0b6b3a7640000600e556103e7600f81905560056010556011805461ffff60a01b1916905560006014556015556016805460ff191690553480156200006d57600080fd5b506040516200350c3803806200350c8339810160408190526200009091620003a4565b82826000620000a0838262000229565b506001620000af828262000229565b505050620000cc620000c66200011660201b60201c565b6200011a565b600a546001600160a01b039081166000908152600b60205260409020805460ff1916600117905560118054929091166001600160a01b031990921691909117905550620004319050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556000838152600b6020526040808220805460ff191660011790555191909216929183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001af57607f821691505b602082108103620001d057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022457600081815260208120601f850160051c81016020861015620001ff5750805b601f850160051c820191505b8181101562000220578281556001016200020b565b5050505b505050565b81516001600160401b0381111562000245576200024562000184565b6200025d816200025684546200019a565b84620001d6565b602080601f8311600181146200029557600084156200027c5750858301515b600019600386901b1c1916600185901b17855562000220565b600085815260208120601f198616915b82811015620002c657888601518255948401946001909101908401620002a5565b5085821015620002e55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200030757600080fd5b81516001600160401b038082111562000324576200032462000184565b604051601f8301601f19908116603f011681019082821181831017156200034f576200034f62000184565b816040528381526020925086838588010111156200036c57600080fd5b600091505b8382101562000390578582018301518183018401529082019062000371565b600093810190920192909252949350505050565b600080600060608486031215620003ba57600080fd5b83516001600160401b0380821115620003d257600080fd5b620003e087838801620002f5565b94506020860151915080821115620003f757600080fd5b506200040686828701620002f5565b604086015190935090506001600160a01b03811681146200042657600080fd5b809150509250925092565b6130cb80620004416000396000f3fe6080604052600436106103395760003560e01c806375c929f8116101ab578063aff8781c116100f7578063db78b67c11610095578063e985e9c51161006f578063e985e9c514610926578063f0b37c041461096f578063f2fde38b1461098f578063fe9fbb80146109af57600080fd5b8063db78b67c146108ce578063dc96cdc8146108fe578063e086e5ec1461091e57600080fd5b8063c6682862116100d1578063c668286214610863578063c87b56dd14610878578063d5abeb0114610898578063da3ef23f146108ae57600080fd5b8063aff8781c14610803578063b6a5d7de14610823578063b88d4fde1461084357600080fd5b80638da5cb5b116101645780639bdedea51161013e5780639bdedea514610772578063a22cb46514610792578063a475b5dd146107b2578063afefbc0b146107d357600080fd5b80638da5cb5b1461072957806395d89b4114610747578063982d669e1461075c57600080fd5b806375c929f8146106905780637f00c7a6146106a55780637f51bb1f146106c55780638456cb59146106e557806385d749ac146106fa5780638cc54e7f1461071457600080fd5b806340c10f191161028557806355f804b3116102235780636352211e116101fd5780636352211e146106265780636c0360eb1461064657806370a082311461065b578063715018a61461067b57600080fd5b806355f804b3146105c55780635c975abb146105e557806361d027b31461060657600080fd5b806344a0d68a1161025f57806344a0d68a1461055057806349df728c146105705780634f6ccce714610590578063547743ef146105b057600080fd5b806340c10f19146104f057806342842e0e14610503578063438b63001461052357600080fd5b806318160ddd116102f2578063239c70ae116102cc578063239c70ae1461048557806323b872dd1461049b5780632f745c59146104bb5780633bd64968146104db57600080fd5b806318160ddd1461043a578063193ad7b41461044f5780631d07ae761461046557600080fd5b806301ffc9a71461034557806306fdde031461037a578063081812fc1461039c578063095ea7b3146103d45780631067fcc7146103f657806313faede61461041657600080fd5b3661034057005b600080fd5b34801561035157600080fd5b50610365610360366004612765565b6109cf565b60405190151581526020015b60405180910390f35b34801561038657600080fd5b5061038f6109fa565b60405161037191906127d2565b3480156103a857600080fd5b506103bc6103b73660046127e5565b610a8c565b6040516001600160a01b039091168152602001610371565b3480156103e057600080fd5b506103f46103ef366004612813565b610b26565b005b34801561040257600080fd5b506103f46104113660046128de565b610c3b565b34801561042257600080fd5b5061042c600e5481565b604051908152602001610371565b34801561044657600080fd5b5060085461042c565b34801561045b57600080fd5b5061042c60145481565b34801561047157600080fd5b506103f4610480366004612927565b610c70565b34801561049157600080fd5b5061042c60105481565b3480156104a757600080fd5b506103f46104b636600461294a565b610caf565b3480156104c757600080fd5b5061042c6104d6366004612813565b610ce0565b3480156104e757600080fd5b506103f4610d76565b6103f46104fe366004612813565b610dbc565b34801561050f57600080fd5b506103f461051e36600461294a565b610e80565b34801561052f57600080fd5b5061054361053e36600461298b565b610e9b565b60405161037191906129a8565b34801561055c57600080fd5b506103f461056b3660046127e5565b610f3d565b34801561057c57600080fd5b506103f461058b36600461298b565b610f67565b34801561059c57600080fd5b5061042c6105ab3660046127e5565b6110b7565b3480156105bc57600080fd5b506103f461114a565b3480156105d157600080fd5b506103f46105e03660046128de565b611183565b3480156105f157600080fd5b5060115461036590600160a01b900460ff1681565b34801561061257600080fd5b506011546103bc906001600160a01b031681565b34801561063257600080fd5b506103bc6106413660046127e5565b6111b4565b34801561065257600080fd5b5061038f61122b565b34801561066757600080fd5b5061042c61067636600461298b565b6112b9565b34801561068757600080fd5b506103f4611340565b34801561069c57600080fd5b506103f4611376565b3480156106b157600080fd5b506103f46106c03660046127e5565b61150e565b3480156106d157600080fd5b506103f46106e036600461298b565b611538565b3480156106f157600080fd5b506103f4611584565b34801561070657600080fd5b506016546103659060ff1681565b34801561072057600080fd5b5061038f6115d7565b34801561073557600080fd5b50600a546001600160a01b03166103bc565b34801561075357600080fd5b5061038f6115e4565b34801561076857600080fd5b5061042c60155481565b34801561077e57600080fd5b506103f461078d366004612a10565b6115f3565b34801561079e57600080fd5b506103f46107ad366004612ac9565b61173c565b3480156107be57600080fd5b5060115461036590600160a81b900460ff1681565b3480156107df57600080fd5b506103656107ee36600461298b565b60126020526000908152604090205460ff1681565b34801561080f57600080fd5b506103f461081e366004612b02565b611800565b34801561082f57600080fd5b506103f461083e36600461298b565b6118c9565b34801561084f57600080fd5b506103f461085e366004612b9c565b611917565b34801561086f57600080fd5b5061038f611949565b34801561088457600080fd5b5061038f6108933660046127e5565b611956565b3480156108a457600080fd5b5061042c600f5481565b3480156108ba57600080fd5b506103f46108c93660046128de565b611adc565b3480156108da57600080fd5b506103656108e936600461298b565b60136020526000908152604090205460ff1681565b34801561090a57600080fd5b506103f4610919366004612b02565b611b0d565b6103f4611bd5565b34801561093257600080fd5b50610365610941366004612c1c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561097b57600080fd5b506103f461098a36600461298b565b611c5d565b34801561099b57600080fd5b506103f46109aa36600461298b565b611ca8565b3480156109bb57600080fd5b506103656109ca36600461298b565b611d40565b60006001600160e01b0319821663780e9d6360e01b14806109f457506109f482611d5e565b92915050565b606060008054610a0990612c4a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3590612c4a565b8015610a825780601f10610a5757610100808354040283529160200191610a82565b820191906000526020600020905b815481529060010190602001808311610a6557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b0a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b31826111b4565b9050806001600160a01b0316836001600160a01b031603610b9e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b01565b336001600160a01b0382161480610bba5750610bba8133610941565b610c2c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b01565b610c368383611dae565b505050565b610c4433611d40565b610c605760405162461bcd60e51b8152600401610b0190612c84565b6017610c6c8282612cf7565b5050565b610c7933611d40565b610c955760405162461bcd60e51b8152600401610b0190612c84565b600f548160ff161115610ca757600080fd5b60ff16601555565b610cb93382611e1c565b610cd55760405162461bcd60e51b8152600401610b0190612db7565b610c36838383611f13565b6000610ceb836112b9565b8210610d4d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b01565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d7f33611d40565b610d9b5760405162461bcd60e51b8152600401610b0190612c84565b6011805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6000610dc760085490565b601154909150600160a01b900460ff1615610de157600080fd5b60008211610dee57600080fd5b601054821115610dfd57600080fd5b600f54610e0a8383612e1e565b1115610e1557600080fd5b336000908152600b602052604090205460ff161515600114610e4b5781600e54610e3f9190612e31565b341015610e4b57600080fd5b60015b828111610e7a57610e6884610e638385612e1e565b6120be565b80610e7281612e48565b915050610e4e565b50505050565b610c3683838360405180602001604052806000815250611917565b60606000610ea8836112b9565b905060008167ffffffffffffffff811115610ec557610ec561283f565b604051908082528060200260200182016040528015610eee578160200160208202803683370190505b50905060005b82811015610f3557610f068582610ce0565b828281518110610f1857610f18612e61565b602090810291909101015280610f2d81612e48565b915050610ef4565b509392505050565b610f4633611d40565b610f625760405162461bcd60e51b8152600401610b0190612c84565b600e55565b610f7033611d40565b610f8c5760405162461bcd60e51b8152600401610b0190612c84565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190612e77565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611049573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106d9190612e90565b50604080516001600160a01b03851681526020810183905233917f5aa586896a67fb05c3b86276f66eecee7da00719d0e7299c403596fa2ec58ca4910160405180910390a2505050565b60006110c260085490565b82106111255760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b01565b6008828154811061113857611138612e61565b90600052602060002001549050919050565b61115333611d40565b61116f5760405162461bcd60e51b8152600401610b0190612c84565b6016805460ff19811660ff90911615179055565b61118c33611d40565b6111a85760405162461bcd60e51b8152600401610b0190612c84565b600c610c6c8282612cf7565b6000818152600260205260408120546001600160a01b0316806109f45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b01565b600c805461123890612c4a565b80601f016020809104026020016040519081016040528092919081815260200182805461126490612c4a565b80156112b15780601f10611286576101008083540402835291602001916112b1565b820191906000526020600020905b81548152906001019060200180831161129457829003601f168201915b505050505081565b60006001600160a01b0382166113245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b01565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461136a5760405162461bcd60e51b8152600401610b0190612ead565b61137460006120d8565b565b600061138160085490565b60165490915060ff16156113d75760405162461bcd60e51b815260206004820152601960248201527f62757a7a6c697374206d696e74696e67206973206f76657221000000000000006044820152606401610b01565b3360009081526012602052604090205460ff1661142f5760405162461bcd60e51b8152602060048201526016602482015275165bdd48185c99481b9bdd08189d5e9e9b1a5cdd195960521b6044820152606401610b01565b600f5461143d826001612e1e565b11156114755760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610b01565b601554601454611486906001612e1e565b1061149057600080fd5b3360009081526013602052604090205460ff16156114ad57600080fd5b60015b600181116114d8576114c633610e638385612e1e565b806114d081612e48565b9150506114b0565b506001601460008282546114ec9190612e1e565b9091555050336000908152601360205260409020805460ff1916600117905550565b61151733611d40565b6115335760405162461bcd60e51b8152600401610b0190612c84565b601055565b600a546001600160a01b031633146115625760405162461bcd60e51b8152600401610b0190612ead565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b61158d33611d40565b6115a95760405162461bcd60e51b8152600401610b0190612c84565b6011805460ff60a01b198116600160a01b9182900460ff16159091021790556016805460ff19166001179055565b6017805461123890612c4a565b606060018054610a0990612c4a565b6115fc33611d40565b6116185760405162461bcd60e51b8152600401610b0190612c84565b8160005b8251811015610e7a57816001600160a01b03166342842e0e303386858151811061164857611648612e61565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b1580156116a257600080fd5b505af11580156116b6573d6000803e3d6000fd5b50505050336001600160a01b03167fb8dbf4ce06446b88ef02ffd28a948c2637ac80fb0bd4d3a31c70878c1046eb7f858584815181106116f8576116f8612e61565b60200260200101516040516117229291906001600160a01b03929092168252602082015260400190565b60405180910390a28061173481612e48565b91505061161c565b336001600160a01b038316036117945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b01565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61180933611d40565b6118255760405162461bcd60e51b8152600401610b0190612c84565b60008151116118615760405162461bcd60e51b81526020600482015260086024820152674e6f20557365727360c01b6044820152606401610b01565b60005b8151811015610c6c5760016012600084848151811061188557611885612e61565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806118c181612e48565b915050611864565b600a546001600160a01b031633146118f35760405162461bcd60e51b8152600401610b0190612ead565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6119213383611e1c565b61193d5760405162461bcd60e51b8152600401610b0190612db7565b610e7a84848484612142565b600d805461123890612c4a565b6000818152600260205260409020546060906001600160a01b03166119d55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b01565b601154600160a81b900460ff161515600003611a7d57601780546119f890612c4a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2490612c4a565b8015611a715780601f10611a4657610100808354040283529160200191611a71565b820191906000526020600020905b815481529060010190602001808311611a5457829003601f168201915b50505050509050919050565b6000611a87612175565b90506000815111611aa75760405180602001604052806000815250611ad5565b80611ab184612184565b600d604051602001611ac593929190612ee2565b6040516020818303038152906040525b9392505050565b611ae533611d40565b611b015760405162461bcd60e51b8152600401610b0190612c84565b600d610c6c8282612cf7565b611b1633611d40565b611b325760405162461bcd60e51b8152600401610b0190612c84565b6000815111611b6d5760405162461bcd60e51b81526020600482015260076024820152662737902ab9b2b960c91b6044820152606401610b01565b60005b8151811015610c6c57600060126000848481518110611b9157611b91612e61565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611bcd81612e48565b915050611b70565b611bde33611d40565b611bfa5760405162461bcd60e51b8152600401610b0190612c84565b6011546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611c47576040519150601f19603f3d011682016040523d82523d6000602084013e611c4c565b606091505b5050905080611c5a57600080fd5b50565b600a546001600160a01b03163314611c875760405162461bcd60e51b8152600401610b0190612ead565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b600a546001600160a01b03163314611cd25760405162461bcd60e51b8152600401610b0190612ead565b6001600160a01b038116611d375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b01565b611c5a816120d8565b6001600160a01b03166000908152600b602052604090205460ff1690565b60006001600160e01b031982166380ac58cd60e01b1480611d8f57506001600160e01b03198216635b5e139f60e01b145b806109f457506301ffc9a760e01b6001600160e01b03198316146109f4565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611de3826111b4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b01565b6000611ea0836111b4565b9050806001600160a01b0316846001600160a01b03161480611edb5750836001600160a01b0316611ed084610a8c565b6001600160a01b0316145b80611f0b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f26826111b4565b6001600160a01b031614611f8e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b01565b6001600160a01b038216611ff05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b01565b611ffb838383612285565b612006600082611dae565b6001600160a01b038316600090815260036020526040812080546001929061202f908490612f82565b90915550506001600160a01b038216600090815260036020526040812080546001929061205d908490612e1e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c6c82826040518060200160405280600081525061233d565b600a80546001600160a01b038381166001600160a01b0319831681179093556000838152600b6020526040808220805460ff191660011790555191909216929183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61214d848484611f13565b61215984848484612370565b610e7a5760405162461bcd60e51b8152600401610b0190612f95565b6060600c8054610a0990612c4a565b6060816000036121ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121d557806121bf81612e48565b91506121ce9050600a83612ffd565b91506121af565b60008167ffffffffffffffff8111156121f0576121f061283f565b6040519080825280601f01601f19166020018201604052801561221a576020820181803683370190505b5090505b8415611f0b5761222f600183612f82565b915061223c600a86613011565b612247906030612e1e565b60f81b81838151811061225c5761225c612e61565b60200101906001600160f81b031916908160001a90535061227e600a86612ffd565b945061221e565b6001600160a01b0383166122e0576122db81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612303565b816001600160a01b0316836001600160a01b031614612303576123038382612471565b6001600160a01b03821661231a57610c368161250e565b826001600160a01b0316826001600160a01b031614610c3657610c3682826125bd565b6123478383612601565b6123546000848484612370565b610c365760405162461bcd60e51b8152600401610b0190612f95565b60006001600160a01b0384163b1561246657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123b4903390899088908890600401613025565b6020604051808303816000875af19250505080156123ef575060408051601f3d908101601f191682019092526123ec91810190613062565b60015b61244c573d80801561241d576040519150601f19603f3d011682016040523d82523d6000602084013e612422565b606091505b5080516000036124445760405162461bcd60e51b8152600401610b0190612f95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f0b565b506001949350505050565b6000600161247e846112b9565b6124889190612f82565b6000838152600760205260409020549091508082146124db576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061252090600190612f82565b6000838152600960205260408120546008805493945090928490811061254857612548612e61565b90600052602060002001549050806008838154811061256957612569612e61565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125a1576125a161307f565b6001900381819060005260206000200160009055905550505050565b60006125c8836112b9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166126575760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b01565b6000818152600260205260409020546001600160a01b0316156126bc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b01565b6126c860008383612285565b6001600160a01b03821660009081526003602052604081208054600192906126f1908490612e1e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114611c5a57600080fd5b60006020828403121561277757600080fd5b8135611ad58161274f565b60005b8381101561279d578181015183820152602001612785565b50506000910152565b600081518084526127be816020860160208601612782565b601f01601f19169290920160200192915050565b602081526000611ad560208301846127a6565b6000602082840312156127f757600080fd5b5035919050565b6001600160a01b0381168114611c5a57600080fd5b6000806040838503121561282657600080fd5b8235612831816127fe565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561287e5761287e61283f565b604052919050565b600067ffffffffffffffff8311156128a0576128a061283f565b6128b3601f8401601f1916602001612855565b90508281528383830111156128c757600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128f057600080fd5b813567ffffffffffffffff81111561290757600080fd5b8201601f8101841361291857600080fd5b611f0b84823560208401612886565b60006020828403121561293957600080fd5b813560ff81168114611ad557600080fd5b60008060006060848603121561295f57600080fd5b833561296a816127fe565b9250602084013561297a816127fe565b929592945050506040919091013590565b60006020828403121561299d57600080fd5b8135611ad5816127fe565b6020808252825182820181905260009190848201906040850190845b818110156129e0578351835292840192918401916001016129c4565b50909695505050505050565b600067ffffffffffffffff821115612a0657612a0661283f565b5060051b60200190565b60008060408385031215612a2357600080fd5b8235612a2e816127fe565b915060208381013567ffffffffffffffff811115612a4b57600080fd5b8401601f81018613612a5c57600080fd5b8035612a6f612a6a826129ec565b612855565b81815260059190911b82018301908381019088831115612a8e57600080fd5b928401925b82841015612aac57833582529284019290840190612a93565b80955050505050509250929050565b8015158114611c5a57600080fd5b60008060408385031215612adc57600080fd5b8235612ae7816127fe565b91506020830135612af781612abb565b809150509250929050565b60006020808385031215612b1557600080fd5b823567ffffffffffffffff811115612b2c57600080fd5b8301601f81018513612b3d57600080fd5b8035612b4b612a6a826129ec565b81815260059190911b82018301908381019087831115612b6a57600080fd5b928401925b82841015612b91578335612b82816127fe565b82529284019290840190612b6f565b979650505050505050565b60008060008060808587031215612bb257600080fd5b8435612bbd816127fe565b93506020850135612bcd816127fe565b925060408501359150606085013567ffffffffffffffff811115612bf057600080fd5b8501601f81018713612c0157600080fd5b612c1087823560208401612886565b91505092959194509250565b60008060408385031215612c2f57600080fd5b8235612c3a816127fe565b91506020830135612af7816127fe565b600181811c90821680612c5e57607f821691505b602082108103612c7e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600b908201526a085055551213d49256915160aa1b604082015260600190565b601f821115610c3657600081815260208120601f850160051c81016020861015612cd05750805b601f850160051c820191505b81811015612cef57828155600101612cdc565b505050505050565b815167ffffffffffffffff811115612d1157612d1161283f565b612d2581612d1f8454612c4a565b84612ca9565b602080601f831160018114612d5a5760008415612d425750858301515b600019600386901b1c1916600185901b178555612cef565b600085815260208120601f198616915b82811015612d8957888601518255948401946001909101908401612d6a565b5085821015612da75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109f4576109f4612e08565b80820281158282048414176109f4576109f4612e08565b600060018201612e5a57612e5a612e08565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612e8957600080fd5b5051919050565b600060208284031215612ea257600080fd5b8151611ad581612abb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600084516020612ef58285838a01612782565b855191840191612f088184848a01612782565b8554920191600090612f1981612c4a565b60018281168015612f315760018114612f4657612f72565b60ff1984168752821515830287019450612f72565b896000528560002060005b84811015612f6a57815489820152908301908701612f51565b505082870194505b50929a9950505050505050505050565b818103818111156109f4576109f4612e08565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261300c5761300c612fe7565b500490565b60008261302057613020612fe7565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613058908301846127a6565b9695505050505050565b60006020828403121561307457600080fd5b8151611ad58161274f565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220bf307bbdc1deab3b274af325dd78603093e532541b73e93703a4dcda513d7e1a64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000b70cbc7549472d3889b2a30f8673a055f24a9683000000000000000000000000000000000000000000000000000000000000000a4e46546e6720506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e46544e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103395760003560e01c806375c929f8116101ab578063aff8781c116100f7578063db78b67c11610095578063e985e9c51161006f578063e985e9c514610926578063f0b37c041461096f578063f2fde38b1461098f578063fe9fbb80146109af57600080fd5b8063db78b67c146108ce578063dc96cdc8146108fe578063e086e5ec1461091e57600080fd5b8063c6682862116100d1578063c668286214610863578063c87b56dd14610878578063d5abeb0114610898578063da3ef23f146108ae57600080fd5b8063aff8781c14610803578063b6a5d7de14610823578063b88d4fde1461084357600080fd5b80638da5cb5b116101645780639bdedea51161013e5780639bdedea514610772578063a22cb46514610792578063a475b5dd146107b2578063afefbc0b146107d357600080fd5b80638da5cb5b1461072957806395d89b4114610747578063982d669e1461075c57600080fd5b806375c929f8146106905780637f00c7a6146106a55780637f51bb1f146106c55780638456cb59146106e557806385d749ac146106fa5780638cc54e7f1461071457600080fd5b806340c10f191161028557806355f804b3116102235780636352211e116101fd5780636352211e146106265780636c0360eb1461064657806370a082311461065b578063715018a61461067b57600080fd5b806355f804b3146105c55780635c975abb146105e557806361d027b31461060657600080fd5b806344a0d68a1161025f57806344a0d68a1461055057806349df728c146105705780634f6ccce714610590578063547743ef146105b057600080fd5b806340c10f19146104f057806342842e0e14610503578063438b63001461052357600080fd5b806318160ddd116102f2578063239c70ae116102cc578063239c70ae1461048557806323b872dd1461049b5780632f745c59146104bb5780633bd64968146104db57600080fd5b806318160ddd1461043a578063193ad7b41461044f5780631d07ae761461046557600080fd5b806301ffc9a71461034557806306fdde031461037a578063081812fc1461039c578063095ea7b3146103d45780631067fcc7146103f657806313faede61461041657600080fd5b3661034057005b600080fd5b34801561035157600080fd5b50610365610360366004612765565b6109cf565b60405190151581526020015b60405180910390f35b34801561038657600080fd5b5061038f6109fa565b60405161037191906127d2565b3480156103a857600080fd5b506103bc6103b73660046127e5565b610a8c565b6040516001600160a01b039091168152602001610371565b3480156103e057600080fd5b506103f46103ef366004612813565b610b26565b005b34801561040257600080fd5b506103f46104113660046128de565b610c3b565b34801561042257600080fd5b5061042c600e5481565b604051908152602001610371565b34801561044657600080fd5b5060085461042c565b34801561045b57600080fd5b5061042c60145481565b34801561047157600080fd5b506103f4610480366004612927565b610c70565b34801561049157600080fd5b5061042c60105481565b3480156104a757600080fd5b506103f46104b636600461294a565b610caf565b3480156104c757600080fd5b5061042c6104d6366004612813565b610ce0565b3480156104e757600080fd5b506103f4610d76565b6103f46104fe366004612813565b610dbc565b34801561050f57600080fd5b506103f461051e36600461294a565b610e80565b34801561052f57600080fd5b5061054361053e36600461298b565b610e9b565b60405161037191906129a8565b34801561055c57600080fd5b506103f461056b3660046127e5565b610f3d565b34801561057c57600080fd5b506103f461058b36600461298b565b610f67565b34801561059c57600080fd5b5061042c6105ab3660046127e5565b6110b7565b3480156105bc57600080fd5b506103f461114a565b3480156105d157600080fd5b506103f46105e03660046128de565b611183565b3480156105f157600080fd5b5060115461036590600160a01b900460ff1681565b34801561061257600080fd5b506011546103bc906001600160a01b031681565b34801561063257600080fd5b506103bc6106413660046127e5565b6111b4565b34801561065257600080fd5b5061038f61122b565b34801561066757600080fd5b5061042c61067636600461298b565b6112b9565b34801561068757600080fd5b506103f4611340565b34801561069c57600080fd5b506103f4611376565b3480156106b157600080fd5b506103f46106c03660046127e5565b61150e565b3480156106d157600080fd5b506103f46106e036600461298b565b611538565b3480156106f157600080fd5b506103f4611584565b34801561070657600080fd5b506016546103659060ff1681565b34801561072057600080fd5b5061038f6115d7565b34801561073557600080fd5b50600a546001600160a01b03166103bc565b34801561075357600080fd5b5061038f6115e4565b34801561076857600080fd5b5061042c60155481565b34801561077e57600080fd5b506103f461078d366004612a10565b6115f3565b34801561079e57600080fd5b506103f46107ad366004612ac9565b61173c565b3480156107be57600080fd5b5060115461036590600160a81b900460ff1681565b3480156107df57600080fd5b506103656107ee36600461298b565b60126020526000908152604090205460ff1681565b34801561080f57600080fd5b506103f461081e366004612b02565b611800565b34801561082f57600080fd5b506103f461083e36600461298b565b6118c9565b34801561084f57600080fd5b506103f461085e366004612b9c565b611917565b34801561086f57600080fd5b5061038f611949565b34801561088457600080fd5b5061038f6108933660046127e5565b611956565b3480156108a457600080fd5b5061042c600f5481565b3480156108ba57600080fd5b506103f46108c93660046128de565b611adc565b3480156108da57600080fd5b506103656108e936600461298b565b60136020526000908152604090205460ff1681565b34801561090a57600080fd5b506103f4610919366004612b02565b611b0d565b6103f4611bd5565b34801561093257600080fd5b50610365610941366004612c1c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561097b57600080fd5b506103f461098a36600461298b565b611c5d565b34801561099b57600080fd5b506103f46109aa36600461298b565b611ca8565b3480156109bb57600080fd5b506103656109ca36600461298b565b611d40565b60006001600160e01b0319821663780e9d6360e01b14806109f457506109f482611d5e565b92915050565b606060008054610a0990612c4a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3590612c4a565b8015610a825780601f10610a5757610100808354040283529160200191610a82565b820191906000526020600020905b815481529060010190602001808311610a6557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b0a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b31826111b4565b9050806001600160a01b0316836001600160a01b031603610b9e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b01565b336001600160a01b0382161480610bba5750610bba8133610941565b610c2c5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b01565b610c368383611dae565b505050565b610c4433611d40565b610c605760405162461bcd60e51b8152600401610b0190612c84565b6017610c6c8282612cf7565b5050565b610c7933611d40565b610c955760405162461bcd60e51b8152600401610b0190612c84565b600f548160ff161115610ca757600080fd5b60ff16601555565b610cb93382611e1c565b610cd55760405162461bcd60e51b8152600401610b0190612db7565b610c36838383611f13565b6000610ceb836112b9565b8210610d4d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b01565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d7f33611d40565b610d9b5760405162461bcd60e51b8152600401610b0190612c84565b6011805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6000610dc760085490565b601154909150600160a01b900460ff1615610de157600080fd5b60008211610dee57600080fd5b601054821115610dfd57600080fd5b600f54610e0a8383612e1e565b1115610e1557600080fd5b336000908152600b602052604090205460ff161515600114610e4b5781600e54610e3f9190612e31565b341015610e4b57600080fd5b60015b828111610e7a57610e6884610e638385612e1e565b6120be565b80610e7281612e48565b915050610e4e565b50505050565b610c3683838360405180602001604052806000815250611917565b60606000610ea8836112b9565b905060008167ffffffffffffffff811115610ec557610ec561283f565b604051908082528060200260200182016040528015610eee578160200160208202803683370190505b50905060005b82811015610f3557610f068582610ce0565b828281518110610f1857610f18612e61565b602090810291909101015280610f2d81612e48565b915050610ef4565b509392505050565b610f4633611d40565b610f625760405162461bcd60e51b8152600401610b0190612c84565b600e55565b610f7033611d40565b610f8c5760405162461bcd60e51b8152600401610b0190612c84565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190612e77565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611049573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106d9190612e90565b50604080516001600160a01b03851681526020810183905233917f5aa586896a67fb05c3b86276f66eecee7da00719d0e7299c403596fa2ec58ca4910160405180910390a2505050565b60006110c260085490565b82106111255760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b01565b6008828154811061113857611138612e61565b90600052602060002001549050919050565b61115333611d40565b61116f5760405162461bcd60e51b8152600401610b0190612c84565b6016805460ff19811660ff90911615179055565b61118c33611d40565b6111a85760405162461bcd60e51b8152600401610b0190612c84565b600c610c6c8282612cf7565b6000818152600260205260408120546001600160a01b0316806109f45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b01565b600c805461123890612c4a565b80601f016020809104026020016040519081016040528092919081815260200182805461126490612c4a565b80156112b15780601f10611286576101008083540402835291602001916112b1565b820191906000526020600020905b81548152906001019060200180831161129457829003601f168201915b505050505081565b60006001600160a01b0382166113245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b01565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461136a5760405162461bcd60e51b8152600401610b0190612ead565b61137460006120d8565b565b600061138160085490565b60165490915060ff16156113d75760405162461bcd60e51b815260206004820152601960248201527f62757a7a6c697374206d696e74696e67206973206f76657221000000000000006044820152606401610b01565b3360009081526012602052604090205460ff1661142f5760405162461bcd60e51b8152602060048201526016602482015275165bdd48185c99481b9bdd08189d5e9e9b1a5cdd195960521b6044820152606401610b01565b600f5461143d826001612e1e565b11156114755760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b6044820152606401610b01565b601554601454611486906001612e1e565b1061149057600080fd5b3360009081526013602052604090205460ff16156114ad57600080fd5b60015b600181116114d8576114c633610e638385612e1e565b806114d081612e48565b9150506114b0565b506001601460008282546114ec9190612e1e565b9091555050336000908152601360205260409020805460ff1916600117905550565b61151733611d40565b6115335760405162461bcd60e51b8152600401610b0190612c84565b601055565b600a546001600160a01b031633146115625760405162461bcd60e51b8152600401610b0190612ead565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b61158d33611d40565b6115a95760405162461bcd60e51b8152600401610b0190612c84565b6011805460ff60a01b198116600160a01b9182900460ff16159091021790556016805460ff19166001179055565b6017805461123890612c4a565b606060018054610a0990612c4a565b6115fc33611d40565b6116185760405162461bcd60e51b8152600401610b0190612c84565b8160005b8251811015610e7a57816001600160a01b03166342842e0e303386858151811061164857611648612e61565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b1580156116a257600080fd5b505af11580156116b6573d6000803e3d6000fd5b50505050336001600160a01b03167fb8dbf4ce06446b88ef02ffd28a948c2637ac80fb0bd4d3a31c70878c1046eb7f858584815181106116f8576116f8612e61565b60200260200101516040516117229291906001600160a01b03929092168252602082015260400190565b60405180910390a28061173481612e48565b91505061161c565b336001600160a01b038316036117945760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b01565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61180933611d40565b6118255760405162461bcd60e51b8152600401610b0190612c84565b60008151116118615760405162461bcd60e51b81526020600482015260086024820152674e6f20557365727360c01b6044820152606401610b01565b60005b8151811015610c6c5760016012600084848151811061188557611885612e61565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806118c181612e48565b915050611864565b600a546001600160a01b031633146118f35760405162461bcd60e51b8152600401610b0190612ead565b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b6119213383611e1c565b61193d5760405162461bcd60e51b8152600401610b0190612db7565b610e7a84848484612142565b600d805461123890612c4a565b6000818152600260205260409020546060906001600160a01b03166119d55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b01565b601154600160a81b900460ff161515600003611a7d57601780546119f890612c4a565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2490612c4a565b8015611a715780601f10611a4657610100808354040283529160200191611a71565b820191906000526020600020905b815481529060010190602001808311611a5457829003601f168201915b50505050509050919050565b6000611a87612175565b90506000815111611aa75760405180602001604052806000815250611ad5565b80611ab184612184565b600d604051602001611ac593929190612ee2565b6040516020818303038152906040525b9392505050565b611ae533611d40565b611b015760405162461bcd60e51b8152600401610b0190612c84565b600d610c6c8282612cf7565b611b1633611d40565b611b325760405162461bcd60e51b8152600401610b0190612c84565b6000815111611b6d5760405162461bcd60e51b81526020600482015260076024820152662737902ab9b2b960c91b6044820152606401610b01565b60005b8151811015610c6c57600060126000848481518110611b9157611b91612e61565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611bcd81612e48565b915050611b70565b611bde33611d40565b611bfa5760405162461bcd60e51b8152600401610b0190612c84565b6011546040516000916001600160a01b03169047908381818185875af1925050503d8060008114611c47576040519150601f19603f3d011682016040523d82523d6000602084013e611c4c565b606091505b5050905080611c5a57600080fd5b50565b600a546001600160a01b03163314611c875760405162461bcd60e51b8152600401610b0190612ead565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b600a546001600160a01b03163314611cd25760405162461bcd60e51b8152600401610b0190612ead565b6001600160a01b038116611d375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b01565b611c5a816120d8565b6001600160a01b03166000908152600b602052604090205460ff1690565b60006001600160e01b031982166380ac58cd60e01b1480611d8f57506001600160e01b03198216635b5e139f60e01b145b806109f457506301ffc9a760e01b6001600160e01b03198316146109f4565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611de3826111b4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e955760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b01565b6000611ea0836111b4565b9050806001600160a01b0316846001600160a01b03161480611edb5750836001600160a01b0316611ed084610a8c565b6001600160a01b0316145b80611f0b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f26826111b4565b6001600160a01b031614611f8e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b01565b6001600160a01b038216611ff05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b01565b611ffb838383612285565b612006600082611dae565b6001600160a01b038316600090815260036020526040812080546001929061202f908490612f82565b90915550506001600160a01b038216600090815260036020526040812080546001929061205d908490612e1e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c6c82826040518060200160405280600081525061233d565b600a80546001600160a01b038381166001600160a01b0319831681179093556000838152600b6020526040808220805460ff191660011790555191909216929183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61214d848484611f13565b61215984848484612370565b610e7a5760405162461bcd60e51b8152600401610b0190612f95565b6060600c8054610a0990612c4a565b6060816000036121ab5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121d557806121bf81612e48565b91506121ce9050600a83612ffd565b91506121af565b60008167ffffffffffffffff8111156121f0576121f061283f565b6040519080825280601f01601f19166020018201604052801561221a576020820181803683370190505b5090505b8415611f0b5761222f600183612f82565b915061223c600a86613011565b612247906030612e1e565b60f81b81838151811061225c5761225c612e61565b60200101906001600160f81b031916908160001a90535061227e600a86612ffd565b945061221e565b6001600160a01b0383166122e0576122db81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612303565b816001600160a01b0316836001600160a01b031614612303576123038382612471565b6001600160a01b03821661231a57610c368161250e565b826001600160a01b0316826001600160a01b031614610c3657610c3682826125bd565b6123478383612601565b6123546000848484612370565b610c365760405162461bcd60e51b8152600401610b0190612f95565b60006001600160a01b0384163b1561246657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123b4903390899088908890600401613025565b6020604051808303816000875af19250505080156123ef575060408051601f3d908101601f191682019092526123ec91810190613062565b60015b61244c573d80801561241d576040519150601f19603f3d011682016040523d82523d6000602084013e612422565b606091505b5080516000036124445760405162461bcd60e51b8152600401610b0190612f95565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f0b565b506001949350505050565b6000600161247e846112b9565b6124889190612f82565b6000838152600760205260409020549091508082146124db576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061252090600190612f82565b6000838152600960205260408120546008805493945090928490811061254857612548612e61565b90600052602060002001549050806008838154811061256957612569612e61565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125a1576125a161307f565b6001900381819060005260206000200160009055905550505050565b60006125c8836112b9565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166126575760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b01565b6000818152600260205260409020546001600160a01b0316156126bc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b01565b6126c860008383612285565b6001600160a01b03821660009081526003602052604081208054600192906126f1908490612e1e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114611c5a57600080fd5b60006020828403121561277757600080fd5b8135611ad58161274f565b60005b8381101561279d578181015183820152602001612785565b50506000910152565b600081518084526127be816020860160208601612782565b601f01601f19169290920160200192915050565b602081526000611ad560208301846127a6565b6000602082840312156127f757600080fd5b5035919050565b6001600160a01b0381168114611c5a57600080fd5b6000806040838503121561282657600080fd5b8235612831816127fe565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561287e5761287e61283f565b604052919050565b600067ffffffffffffffff8311156128a0576128a061283f565b6128b3601f8401601f1916602001612855565b90508281528383830111156128c757600080fd5b828260208301376000602084830101529392505050565b6000602082840312156128f057600080fd5b813567ffffffffffffffff81111561290757600080fd5b8201601f8101841361291857600080fd5b611f0b84823560208401612886565b60006020828403121561293957600080fd5b813560ff81168114611ad557600080fd5b60008060006060848603121561295f57600080fd5b833561296a816127fe565b9250602084013561297a816127fe565b929592945050506040919091013590565b60006020828403121561299d57600080fd5b8135611ad5816127fe565b6020808252825182820181905260009190848201906040850190845b818110156129e0578351835292840192918401916001016129c4565b50909695505050505050565b600067ffffffffffffffff821115612a0657612a0661283f565b5060051b60200190565b60008060408385031215612a2357600080fd5b8235612a2e816127fe565b915060208381013567ffffffffffffffff811115612a4b57600080fd5b8401601f81018613612a5c57600080fd5b8035612a6f612a6a826129ec565b612855565b81815260059190911b82018301908381019088831115612a8e57600080fd5b928401925b82841015612aac57833582529284019290840190612a93565b80955050505050509250929050565b8015158114611c5a57600080fd5b60008060408385031215612adc57600080fd5b8235612ae7816127fe565b91506020830135612af781612abb565b809150509250929050565b60006020808385031215612b1557600080fd5b823567ffffffffffffffff811115612b2c57600080fd5b8301601f81018513612b3d57600080fd5b8035612b4b612a6a826129ec565b81815260059190911b82018301908381019087831115612b6a57600080fd5b928401925b82841015612b91578335612b82816127fe565b82529284019290840190612b6f565b979650505050505050565b60008060008060808587031215612bb257600080fd5b8435612bbd816127fe565b93506020850135612bcd816127fe565b925060408501359150606085013567ffffffffffffffff811115612bf057600080fd5b8501601f81018713612c0157600080fd5b612c1087823560208401612886565b91505092959194509250565b60008060408385031215612c2f57600080fd5b8235612c3a816127fe565b91506020830135612af7816127fe565b600181811c90821680612c5e57607f821691505b602082108103612c7e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252600b908201526a085055551213d49256915160aa1b604082015260600190565b601f821115610c3657600081815260208120601f850160051c81016020861015612cd05750805b601f850160051c820191505b81811015612cef57828155600101612cdc565b505050505050565b815167ffffffffffffffff811115612d1157612d1161283f565b612d2581612d1f8454612c4a565b84612ca9565b602080601f831160018114612d5a5760008415612d425750858301515b600019600386901b1c1916600185901b178555612cef565b600085815260208120601f198616915b82811015612d8957888601518255948401946001909101908401612d6a565b5085821015612da75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b808201808211156109f4576109f4612e08565b80820281158282048414176109f4576109f4612e08565b600060018201612e5a57612e5a612e08565b5060010190565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612e8957600080fd5b5051919050565b600060208284031215612ea257600080fd5b8151611ad581612abb565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600084516020612ef58285838a01612782565b855191840191612f088184848a01612782565b8554920191600090612f1981612c4a565b60018281168015612f315760018114612f4657612f72565b60ff1984168752821515830287019450612f72565b896000528560002060005b84811015612f6a57815489820152908301908701612f51565b505082870194505b50929a9950505050505050505050565b818103818111156109f4576109f4612e08565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261300c5761300c612fe7565b500490565b60008261302057613020612fe7565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613058908301846127a6565b9695505050505050565b60006020828403121561307457600080fd5b8151611ad58161274f565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220bf307bbdc1deab3b274af325dd78603093e532541b73e93703a4dcda513d7e1a64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000b70cbc7549472d3889b2a30f8673a055f24a9683000000000000000000000000000000000000000000000000000000000000000a4e46546e6720506173730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e46544e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): NFTng Pass
Arg [1] : _symbol (string): NFTN
Arg [2] : _treasury (address): 0xB70CBC7549472d3889b2A30f8673a055f24a9683

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000b70cbc7549472d3889b2a30f8673a055f24a9683
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4e46546e67205061737300000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4e46544e00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45223:6181:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38451:300;;;;;;;;;;-1:-1:-1;38451:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38451:300:0;;;;;;;;25696:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27389:308::-;;;;;;;;;;-1:-1:-1;27389:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;27389:308:0;1533:203:1;26912:411:0;;;;;;;;;;-1:-1:-1;26912:411:0;;;;;:::i;:::-;;:::i;:::-;;48780:109;;;;;;;;;;-1:-1:-1;48780:109:0;;;;;:::i;:::-;;:::i;45384:29::-;;;;;;;;;;;;;;;;;;;3623:25:1;;;3611:2;3596:18;45384:29:0;3477:177:1;39254:113:0;;;;;;;;;;-1:-1:-1;39342:10:0;:17;39254:113;;45700:39;;;;;;;;;;;;;;;;47315:201;;;;;;;;;;-1:-1:-1;47315:201:0;;;;;:::i;:::-;;:::i;45457:32::-;;;;;;;;;;;;;;;;28448:376;;;;;;;;;;-1:-1:-1;28448:376:0;;;;;:::i;:::-;;:::i;38835:343::-;;;;;;;;;;-1:-1:-1;38835:343:0;;;;;:::i;:::-;;:::i;49491:78::-;;;;;;;;;;;;;:::i;46202:537::-;;;;;;:::i;:::-;;:::i;28895:185::-;;;;;;;;;;-1:-1:-1;28895:185:0;;;;;:::i;:::-;;:::i;47524:390::-;;;;;;;;;;-1:-1:-1;47524:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48685:87::-;;;;;;;;;;-1:-1:-1;48685:87:0;;;;;:::i;:::-;;:::i;50411:323::-;;;;;;;;;;-1:-1:-1;50411:323:0;;;;;:::i;:::-;;:::i;39444:320::-;;;;;;;;;;-1:-1:-1;39444:320:0;;;;;:::i;:::-;;:::i;49405:78::-;;;;;;;;;;;;;:::i;49028:105::-;;;;;;;;;;-1:-1:-1;49028:105:0;;;;;:::i;:::-;;:::i;45534:26::-;;;;;;;;;;-1:-1:-1;45534:26:0;;;;-1:-1:-1;;;45534:26:0;;;;;;45496:31;;;;;;;;;;-1:-1:-1;45496:31:0;;;;-1:-1:-1;;;;;45496:31:0;;;25303:326;;;;;;;;;;-1:-1:-1;25303:326:0;;;;;:::i;:::-;;:::i;45312:21::-;;;;;;;;;;;;;:::i;24946:295::-;;;;;;;;;;-1:-1:-1;24946:295:0;;;;;:::i;:::-;;:::i;5205:94::-;;;;;;;;;;;;;:::i;46747:560::-;;;;;;;;;;;;;:::i;48897:123::-;;;;;;;;;;-1:-1:-1;48897:123:0;;;;;:::i;:::-;;:::i;50248:122::-;;;;;;;;;;-1:-1:-1;50248:122:0;;;;;:::i;:::-;;:::i;49301:96::-;;;;;;;;;;;;;:::i;45789:28::-;;;;;;;;;;-1:-1:-1;45789:28:0;;;;;;;;45824:23;;;;;;;;;;;;;:::i;4554:87::-;;;;;;;;;;-1:-1:-1;4627:6:0;;-1:-1:-1;;;;;4627:6:0;4554:87;;25865:104;;;;;;;;;;;;;:::i;45746:36::-;;;;;;;;;;;;;;;;50801:367;;;;;;;;;;-1:-1:-1;50801:367:0;;;;;:::i;:::-;;:::i;27769:327::-;;;;;;;;;;-1:-1:-1;27769:327:0;;;;;:::i;:::-;;:::i;45567:25::-;;;;;;;;;;-1:-1:-1;45567:25:0;;;;-1:-1:-1;;;45567:25:0;;;;;;45599:44;;;;;;;;;;-1:-1:-1;45599:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49577:227;;;;;;;;;;-1:-1:-1;49577:227:0;;;;;:::i;:::-;;:::i;4206:94::-;;;;;;;;;;-1:-1:-1;4206:94:0;;;;;:::i;:::-;;:::i;29151:365::-;;;;;;;;;;-1:-1:-1;29151:365:0;;;;;:::i;:::-;;:::i;45340:37::-;;;;;;;;;;;;;:::i;47922:737::-;;;;;;;;;;-1:-1:-1;47922:737:0;;;;;:::i;:::-;;:::i;45420:30::-;;;;;;;;;;;;;;;;49141:152;;;;;;;;;;-1:-1:-1;49141:152:0;;;;;:::i;:::-;;:::i;45650:43::-;;;;;;;;;;-1:-1:-1;45650:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49809:202;;;;;;;;;;-1:-1:-1;49809:202:0;;;;;:::i;:::-;;:::i;50046:194::-;;;:::i;28167:214::-;;;;;;;;;;-1:-1:-1;28167:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;28338:25:0;;;28309:4;28338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28167:214;4376:97;;;;;;;;;;-1:-1:-1;4376:97:0;;;;;:::i;:::-;;:::i;5454:229::-;;;;;;;;;;-1:-1:-1;5454:229:0;;;;;:::i;:::-;;:::i;4035:107::-;;;;;;;;;;-1:-1:-1;4035:107:0;;;;;:::i;:::-;;:::i;38451:300::-;38598:4;-1:-1:-1;;;;;;38640:50:0;;-1:-1:-1;;;38640:50:0;;:103;;;38707:36;38731:11;38707:23;:36::i;:::-;38620:123;38451:300;-1:-1:-1;;38451:300:0:o;25696:100::-;25750:13;25783:5;25776:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25696:100;:::o;27389:308::-;27510:7;31152:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31152:16:0;27535:110;;;;-1:-1:-1;;;27535:110:0;;10247:2:1;27535:110:0;;;10229:21:1;10286:2;10266:18;;;10259:30;10325:34;10305:18;;;10298:62;-1:-1:-1;;;10376:18:1;;;10369:42;10428:19;;27535:110:0;;;;;;;;;-1:-1:-1;27665:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27665:24:0;;27389:308::o;26912:411::-;26993:13;27009:23;27024:7;27009:14;:23::i;:::-;26993:39;;27057:5;-1:-1:-1;;;;;27051:11:0;:2;-1:-1:-1;;;;;27051:11:0;;27043:57;;;;-1:-1:-1;;;27043:57:0;;10660:2:1;27043:57:0;;;10642:21:1;10699:2;10679:18;;;10672:30;10738:34;10718:18;;;10711:62;-1:-1:-1;;;10789:18:1;;;10782:31;10830:19;;27043:57:0;10458:397:1;27043:57:0;2816:10;-1:-1:-1;;;;;27135:21:0;;;;:62;;-1:-1:-1;27160:37:0;27177:5;2816:10;28167:214;:::i;27160:37::-;27113:168;;;;-1:-1:-1;;;27113:168:0;;11062:2:1;27113:168:0;;;11044:21:1;11101:2;11081:18;;;11074:30;11140:34;11120:18;;;11113:62;11211:26;11191:18;;;11184:54;11255:19;;27113:168:0;10860:420:1;27113:168:0;27294:21;27303:2;27307:7;27294:8;:21::i;:::-;26982:341;26912:411;;:::o;48780:109::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;48859:9:::1;:22;48871:10:::0;48859:9;:22:::1;:::i;:::-;;48780:109:::0;:::o;47315:201::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;47422:9:::1;;47403:15;:28;;;;47395:37;;;::::0;::::1;;47443:32;;:14;:32:::0;47315:201::o;28448:376::-;28657:41;2816:10;28690:7;28657:18;:41::i;:::-;28635:140;;;;-1:-1:-1;;;28635:140:0;;;;;;;:::i;:::-;28788:28;28798:4;28804:2;28808:7;28788:9;:28::i;38835:343::-;38977:7;39032:23;39049:5;39032:16;:23::i;:::-;39024:5;:31;39002:124;;;;-1:-1:-1;;;39002:124:0;;14449:2:1;39002:124:0;;;14431:21:1;14488:2;14468:18;;;14461:30;14527:34;14507:18;;;14500:62;-1:-1:-1;;;14578:18:1;;;14571:41;14629:19;;39002:124:0;14247:407:1;39002:124:0;-1:-1:-1;;;;;;39144:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38835:343::o;49491:78::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;49555:6:::1;::::0;;-1:-1:-1;;;;49545:16:0;::::1;-1:-1:-1::0;;;49555:6:0;;;::::1;;;49554:7;49545:16:::0;;::::1;;::::0;;49491:78::o;46202:537::-;46276:14;46293:13;39342:10;:17;;39254:113;46293:13;46326:6;;46276:30;;-1:-1:-1;;;;46326:6:0;;;;46325:7;46317:16;;;;;;46366:1;46352:11;:15;46344:24;;;;;;46402:13;;46387:11;:28;;46379:37;;;;;;46459:9;;46435:20;46444:11;46435:6;:20;:::i;:::-;:33;;46427:42;;;;;;46501:10;46486:26;;;;:14;:26;;;;;;;;:34;;:26;:34;46482:142;;46595:11;46588:4;;:18;;;;:::i;:::-;46575:9;:31;;46567:40;;;;;;46653:1;46636:96;46661:11;46656:1;:16;46636:96;;46694:26;46704:3;46709:10;46718:1;46709:6;:10;:::i;:::-;46694:9;:26::i;:::-;46674:3;;;;:::i;:::-;;;;46636:96;;;;46265:474;46202:537;;:::o;28895:185::-;29033:39;29050:4;29056:2;29060:7;29033:39;;;;;;;;;;;;:16;:39::i;47524:390::-;47611:16;47645:23;47671:17;47681:6;47671:9;:17::i;:::-;47645:43;;47699:25;47741:15;47727:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47727:30:0;;47699:58;;47773:9;47768:113;47788:15;47784:1;:19;47768:113;;;47839:30;47859:6;47867:1;47839:19;:30::i;:::-;47825:8;47834:1;47825:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;47805:3;;;;:::i;:::-;;;;47768:113;;;-1:-1:-1;47898:8:0;47524:390;-1:-1:-1;;;47524:390:0:o;48685:87::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;48749:4:::1;:15:::0;48685:87::o;50411:323::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;50564:38:::1;::::0;-1:-1:-1;;;50564:38:0;;50596:4:::1;50564:38;::::0;::::1;1679:51:1::0;50520:14:0;;50490:20:::1;::::0;-1:-1:-1;;;;;50564:23:0;::::1;::::0;::::1;::::0;1652:18:1;;50564:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50613:43;::::0;-1:-1:-1;;;50613:43:0;;50636:10:::1;50613:43;::::0;::::1;15729:51:1::0;15796:18;;;15789:34;;;50546:56:0;;-1:-1:-1;;;;;;50613:22:0;::::1;::::0;::::1;::::0;15702:18:1;;50613:43:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;50672:54:0::1;::::0;;-1:-1:-1;;;;;15747:32:1;;15729:51;;15811:2;15796:18;;15789:34;;;50692:10:0::1;::::0;50672:54:::1;::::0;15702:18:1;50672:54:0::1;;;;;;;50479:255;;50411:323:::0;:::o;39444:320::-;39564:7;39619:30;39342:10;:17;;39254:113;39619:30;39611:5;:38;39589:132;;;;-1:-1:-1;;;39589:132:0;;16286:2:1;39589:132:0;;;16268:21:1;16325:2;16305:18;;;16298:30;16364:34;16344:18;;;16337:62;-1:-1:-1;;;16415:18:1;;;16408:42;16467:19;;39589:132:0;16084:408:1;39589:132:0;39739:10;39750:5;39739:17;;;;;;;;:::i;:::-;;;;;;;;;39732:24;;39444:320;;;:::o;49405:78::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;49467:8:::1;::::0;;-1:-1:-1;;49455:20:0;::::1;49467:8;::::0;;::::1;49466:9;49455:20;::::0;;49405:78::o;49028:105::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;49104:7:::1;:21;49114:11:::0;49104:7;:21:::1;:::i;25303:326::-:0;25420:7;25461:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25461:16:0;;25488:110;;;;-1:-1:-1;;;25488:110:0;;16699:2:1;25488:110:0;;;16681:21:1;16738:2;16718:18;;;16711:30;16777:34;16757:18;;;16750:62;-1:-1:-1;;;16828:18:1;;;16821:39;16877:19;;25488:110:0;16497:405:1;45312:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24946:295::-;25063:7;-1:-1:-1;;;;;25110:19:0;;25088:111;;;;-1:-1:-1;;;25088:111:0;;17109:2:1;25088:111:0;;;17091:21:1;17148:2;17128:18;;;17121:30;17187:34;17167:18;;;17160:62;-1:-1:-1;;;17238:18:1;;;17231:40;17288:19;;25088:111:0;16907:406:1;25088:111:0;-1:-1:-1;;;;;;25217:16:0;;;;;:9;:16;;;;;;;24946:295::o;5205:94::-;4627:6;;-1:-1:-1;;;;;4627:6:0;2816:10;4774:23;4766:68;;;;-1:-1:-1;;;4766:68:0;;;;;;;:::i;:::-;5270:21:::1;5288:1;5270:9;:21::i;:::-;5205:94::o:0;46747:560::-;46791:14;46808:13;39342:10;:17;;39254:113;46808:13;46843:8;;46791:30;;-1:-1:-1;46843:8:0;;46842:9;46834:47;;;;-1:-1:-1;;;46834:47:0;;17881:2:1;46834:47:0;;;17863:21:1;17920:2;17900:18;;;17893:30;17959:27;17939:18;;;17932:55;18004:18;;46834:47:0;17679:349:1;46834:47:0;46913:10;46900:24;;;;:12;:24;;;;;;;;46892:60;;;;-1:-1:-1;;;46892:60:0;;18235:2:1;46892:60:0;;;18217:21:1;18274:2;18254:18;;;18247:30;-1:-1:-1;;;18293:18:1;;;18286:52;18355:18;;46892:60:0;18033:346:1;46892:60:0;46987:9;;46973:10;:6;46982:1;46973:10;:::i;:::-;:23;;46965:43;;;;-1:-1:-1;;;46965:43:0;;18586:2:1;46965:43:0;;;18568:21:1;18625:1;18605:18;;;18598:29;-1:-1:-1;;;18643:18:1;;;18636:37;18690:18;;46965:43:0;18384:330:1;46965:43:0;47054:14;;47027:20;;:24;;47050:1;47027:24;:::i;:::-;:41;47019:50;;;;;;47101:10;47089:23;;;;:11;:23;;;;;;;;47088:24;47080:33;;;;;;47143:1;47126:94;47151:1;47146;:6;47126:94;;47174:33;47184:10;47196;47205:1;47196:6;:10;:::i;47174:33::-;47154:3;;;;:::i;:::-;;;;47126:94;;;;47257:1;47233:20;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;47281:10:0;47269:23;;;;:11;:23;;;;;:30;;-1:-1:-1;;47269:30:0;47295:4;47269:30;;;-1:-1:-1;46747:560:0:o;48897:123::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;48979:13:::1;:33:::0;48897:123::o;50248:122::-;4627:6;;-1:-1:-1;;;;;4627:6:0;2816:10;4774:23;4766:68;;;;-1:-1:-1;;;4766:68:0;;;;;;;:::i;:::-;50330:8:::1;:32:::0;;-1:-1:-1;;;;;;50330:32:0::1;-1:-1:-1::0;;;;;50330:32:0;;;::::1;::::0;;;::::1;::::0;;50248:122::o;49301:96::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;49357:6:::1;::::0;;-1:-1:-1;;;;49347:16:0;::::1;-1:-1:-1::0;;;49357:6:0;;;::::1;;;49356:7;49347:16:::0;;::::1;;::::0;;49374:8:::1;:15:::0;;-1:-1:-1;;49374:15:0::1;-1:-1:-1::0;49374:15:0::1;::::0;;49301:96::o;45824:23::-;;;;;;;:::i;25865:104::-;25921:13;25954:7;25947:14;;;;;:::i;50801:367::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;50931:14;50899:21:::1;50957:204;50981:3;:10;50977:1;:14;50957:204;;;51013:13;-1:-1:-1::0;;;;;51013:30:0::1;;51052:4;51059:10;51071:3;51075:1;51071:6;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;51013:65:::1;::::0;-1:-1:-1;;;;;;51013:65:0::1;::::0;;;;;;-1:-1:-1;;;;;18977:15:1;;;51013:65:0::1;::::0;::::1;18959:34:1::0;19029:15;;;;19009:18;;;19002:43;19061:18;;;19054:34;18894:18;;51013:65:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51116:10;-1:-1:-1::0;;;;;51098:51:0::1;;51127:14;51142:3;51146:1;51142:6;;;;;;;;:::i;:::-;;;;;;;51098:51;;;;;;-1:-1:-1::0;;;;;15747:32:1;;;;15729:51;;15811:2;15796:18;;15789:34;15717:2;15702:18;;15555:274;51098:51:0::1;;;;;;;;50993:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50957:204;;27769:327:::0;2816:10;-1:-1:-1;;;;;27904:24:0;;;27896:62;;;;-1:-1:-1;;;27896:62:0;;19301:2:1;27896:62:0;;;19283:21:1;19340:2;19320:18;;;19313:30;19379:27;19359:18;;;19352:55;19424:18;;27896:62:0;19099:349:1;27896:62:0;2816:10;27971:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27971:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27971:53:0;;;;;;;;;;28040:48;;540:41:1;;;27971:42:0;;2816:10;28040:48;;513:18:1;28040:48:0;;;;;;;27769:327;;:::o;49577:227::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;49672:1:::1;49656:6;:13;:17;49648:37;;;::::0;-1:-1:-1;;;49648:37:0;;19655:2:1;49648:37:0::1;::::0;::::1;19637:21:1::0;19694:1;19674:18;;;19667:29;-1:-1:-1;;;19712:18:1;;;19705:38;19760:18;;49648:37:0::1;19453:331:1::0;49648:37:0::1;49701:9;49696:101;49720:6;:13;49716:1;:17;49696:101;;;49781:4;49755:12;:23;49768:6;49775:1;49768:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;49755:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;49755:23:0;:30;;-1:-1:-1;;49755:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49735:3;::::1;::::0;::::1;:::i;:::-;;;;49696:101;;4206:94:::0;4627:6;;-1:-1:-1;;;;;4627:6:0;2816:10;4774:23;4766:68;;;;-1:-1:-1;;;4766:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4266:19:0::1;;::::0;;;:14:::1;:19;::::0;;;;:26;;-1:-1:-1;;4266:26:0::1;4288:4;4266:26;::::0;;4206:94::o;29151:365::-;29340:41;2816:10;29373:7;29340:18;:41::i;:::-;29318:140;;;;-1:-1:-1;;;29318:140:0;;;;;;;:::i;:::-;29469:39;29483:4;29489:2;29493:7;29502:5;29469:13;:39::i;45340:37::-;;;;;;;:::i;47922:737::-;31128:4;31152:16;;;:7;:16;;;;;;48040:13;;-1:-1:-1;;;;;31152:16:0;48071:113;;;;-1:-1:-1;;;48071:113:0;;19991:2:1;48071:113:0;;;19973:21:1;20030:2;20010:18;;;20003:30;20069:34;20049:18;;;20042:62;-1:-1:-1;;;20120:18:1;;;20113:45;20175:19;;48071:113:0;19789:411:1;48071:113:0;48202:6;;-1:-1:-1;;;48202:6:0;;;;:15;;48212:5;48202:15;48197:455;;48241:9;48234:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47922:737;;;:::o;48197:455::-;48279:28;48310:10;:8;:10::i;:::-;48279:41;;48382:1;48357:14;48351:28;:32;:287;;;;;;;;;;;;;;;;;48475:14;48516:18;:7;:16;:18::i;:::-;48561:13;48432:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48351:287;48331:307;47922:737;-1:-1:-1;;;47922:737:0:o;49141:152::-;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;49252:13:::1;:33;49268:17:::0;49252:13;:33:::1;:::i;49809:202::-:0;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;49907:1:::1;49892:5;:12;:16;49884:35;;;::::0;-1:-1:-1;;;49884:35:0;;21668:2:1;49884:35:0::1;::::0;::::1;21650:21:1::0;21707:1;21687:18;;;21680:29;-1:-1:-1;;;21725:18:1;;;21718:37;21772:18;;49884:35:0::1;21466:330:1::0;49884:35:0::1;49928:9;49924:79;49946:5;:12;49942:1;:16;49924:79;;;49998:5;49973:12;:22;49986:5;49992:1;49986:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;49973:22:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;49973:22:0;:30;;-1:-1:-1;;49973:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49959:3;::::1;::::0;::::1;:::i;:::-;;;;49924:79;;50046:194:::0;3976:24;3989:10;3976:12;:24::i;:::-;3968:48;;;;-1:-1:-1;;;3968:48:0;;;;;;;:::i;:::-;50133:8:::1;::::0;50125:80:::1;::::0;50107:12:::1;::::0;-1:-1:-1;;;;;50133:8:0::1;::::0;50169:21:::1;::::0;50107:12;50125:80;50107:12;50125:80;50169:21;50133:8;50125:80:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50106:99;;;50224:7;50216:16;;;::::0;::::1;;50095:145;50046:194::o:0;4376:97::-;4627:6;;-1:-1:-1;;;;;4627:6:0;2816:10;4774:23;4766:68;;;;-1:-1:-1;;;4766:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4438:19:0::1;4460:5;4438:19:::0;;;:14:::1;:19;::::0;;;;:27;;-1:-1:-1;;4438:27:0::1;::::0;;4376:97::o;5454:229::-;4627:6;;-1:-1:-1;;;;;4627:6:0;2816:10;4774:23;4766:68;;;;-1:-1:-1;;;4766:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5557:22:0;::::1;5535:110;;;::::0;-1:-1:-1;;;5535:110:0;;22213:2:1;5535:110:0::1;::::0;::::1;22195:21:1::0;22252:2;22232:18;;;22225:30;22291:34;22271:18;;;22264:62;-1:-1:-1;;;22342:18:1;;;22335:36;22388:19;;5535:110:0::1;22011:402:1::0;5535:110:0::1;5656:19;5666:8;5656:9;:19::i;4035:107::-:0;-1:-1:-1;;;;;4115:19:0;4091:4;4115:19;;;:14;:19;;;;;;;;;4035:107::o;24527:355::-;24674:4;-1:-1:-1;;;;;;24716:40:0;;-1:-1:-1;;;24716:40:0;;:105;;-1:-1:-1;;;;;;;24773:48:0;;-1:-1:-1;;;24773:48:0;24716:105;:158;;;-1:-1:-1;;;;;;;;;;16859:40:0;;;24838:36;16700:207;35213:174;35288:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35288:29:0;-1:-1:-1;;;;;35288:29:0;;;;;;;;:24;;35342:23;35288:24;35342:14;:23::i;:::-;-1:-1:-1;;;;;35333:46:0;;;;;;;;;;;35213:174;;:::o;31384:452::-;31513:4;31152:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31152:16:0;31535:110;;;;-1:-1:-1;;;31535:110:0;;22620:2:1;31535:110:0;;;22602:21:1;22659:2;22639:18;;;22632:30;22698:34;22678:18;;;22671:62;-1:-1:-1;;;22749:18:1;;;22742:42;22801:19;;31535:110:0;22418:408:1;31535:110:0;31656:13;31672:23;31687:7;31672:14;:23::i;:::-;31656:39;;31725:5;-1:-1:-1;;;;;31714:16:0;:7;-1:-1:-1;;;;;31714:16:0;;:64;;;;31771:7;-1:-1:-1;;;;;31747:31:0;:20;31759:7;31747:11;:20::i;:::-;-1:-1:-1;;;;;31747:31:0;;31714:64;:113;;;-1:-1:-1;;;;;;28338:25:0;;;28309:4;28338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31795:32;31706:122;31384:452;-1:-1:-1;;;;31384:452:0:o;34480:615::-;34653:4;-1:-1:-1;;;;;34626:31:0;:23;34641:7;34626:14;:23::i;:::-;-1:-1:-1;;;;;34626:31:0;;34604:122;;;;-1:-1:-1;;;34604:122:0;;23033:2:1;34604:122:0;;;23015:21:1;23072:2;23052:18;;;23045:30;23111:34;23091:18;;;23084:62;-1:-1:-1;;;23162:18:1;;;23155:39;23211:19;;34604:122:0;22831:405:1;34604:122:0;-1:-1:-1;;;;;34745:16:0;;34737:65;;;;-1:-1:-1;;;34737:65:0;;23443:2:1;34737:65:0;;;23425:21:1;23482:2;23462:18;;;23455:30;23521:34;23501:18;;;23494:62;-1:-1:-1;;;23572:18:1;;;23565:34;23616:19;;34737:65:0;23241:400:1;34737:65:0;34815:39;34836:4;34842:2;34846:7;34815:20;:39::i;:::-;34919:29;34936:1;34940:7;34919:8;:29::i;:::-;-1:-1:-1;;;;;34961:15:0;;;;;;:9;:15;;;;;:20;;34980:1;;34961:15;:20;;34980:1;;34961:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34992:13:0;;;;;;:9;:13;;;;;:18;;35009:1;;34992:13;:18;;35009:1;;34992:18;:::i;:::-;;;;-1:-1:-1;;35021:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35021:21:0;-1:-1:-1;;;;;35021:21:0;;;;;;;;;35060:27;;35021:16;;35060:27;;;;;;;34480:615;;;:::o;32178:110::-;32254:26;32264:2;32268:7;32254:26;;;;;;;;;;;;:9;:26::i;5691:213::-;5766:6;;;-1:-1:-1;;;;;5783:17:0;;;-1:-1:-1;;;;;;5783:17:0;;;;;;;5747:16;5811:22;;;:14;:22;;;;;;:29;;-1:-1:-1;;5811:29:0;5766:6;5811:29;;;5856:40;5766:6;;;;;5783:17;5766:6;;5856:40;;5747:16;5856:40;5736:168;5691:213;:::o;30398:352::-;30555:28;30565:4;30571:2;30575:7;30555:9;:28::i;:::-;30616:48;30639:4;30645:2;30649:7;30658:5;30616:22;:48::i;:::-;30594:148;;;;-1:-1:-1;;;30594:148:0;;;;;;;:::i;46071:108::-;46131:13;46164:7;46157:14;;;;;:::i;403:723::-;459:13;680:5;689:1;680:10;676:53;;-1:-1:-1;;707:10:0;;;;;;;;;;;;-1:-1:-1;;;707:10:0;;;;;403:723::o;676:53::-;754:5;739:12;795:78;802:9;;795:78;;828:8;;;;:::i;:::-;;-1:-1:-1;851:10:0;;-1:-1:-1;859:2:0;851:10;;:::i;:::-;;;795:78;;;883:19;915:6;905:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;905:17:0;;883:39;;933:154;940:10;;933:154;;967:11;977:1;967:11;;:::i;:::-;;-1:-1:-1;1036:10:0;1044:2;1036:5;:10;:::i;:::-;1023:24;;:2;:24;:::i;:::-;1010:39;;993:6;1000;993:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;993:56:0;;;;;;;;-1:-1:-1;1064:11:0;1073:2;1064:11;;:::i;:::-;;;933:154;;40377:589;-1:-1:-1;;;;;40583:18:0;;40579:187;;40618:40;40650:7;41793:10;:17;;41766:24;;;;:15;:24;;;;;:44;;;41821:24;;;;;;;;;;;;41689:164;40618:40;40579:187;;;40688:2;-1:-1:-1;;;;;40680:10:0;:4;-1:-1:-1;;;;;40680:10:0;;40676:90;;40707:47;40740:4;40746:7;40707:32;:47::i;:::-;-1:-1:-1;;;;;40780:16:0;;40776:183;;40813:45;40850:7;40813:36;:45::i;40776:183::-;40886:4;-1:-1:-1;;;;;40880:10:0;:2;-1:-1:-1;;;;;40880:10:0;;40876:83;;40907:40;40935:2;40939:7;40907:27;:40::i;32515:321::-;32645:18;32651:2;32655:7;32645:5;:18::i;:::-;32696:54;32727:1;32731:2;32735:7;32744:5;32696:22;:54::i;:::-;32674:154;;;;-1:-1:-1;;;32674:154:0;;;;;;;:::i;35952:980::-;36107:4;-1:-1:-1;;;;;36128:13:0;;6915:20;6963:8;36124:801;;36181:175;;-1:-1:-1;;;36181:175:0;;-1:-1:-1;;;;;36181:36:0;;;;;:175;;2816:10;;36275:4;;36302:7;;36332:5;;36181:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36181:175:0;;;;;;;;-1:-1:-1;;36181:175:0;;;;;;;;;;;;:::i;:::-;;;36160:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36539:6;:13;36556:1;36539:18;36535:320;;36582:108;;-1:-1:-1;;;36582:108:0;;;;;;;:::i;36535:320::-;36805:6;36799:13;36790:6;36786:2;36782:15;36775:38;36160:710;-1:-1:-1;;;;;;36420:51:0;-1:-1:-1;;;36420:51:0;;-1:-1:-1;36413:58:0;;36124:801;-1:-1:-1;36909:4:0;35952:980;;;;;;:::o;42480:1002::-;42760:22;42810:1;42785:22;42802:4;42785:16;:22::i;:::-;:26;;;;:::i;:::-;42822:18;42843:26;;;:17;:26;;;;;;42760:51;;-1:-1:-1;42976:28:0;;;42972:328;;-1:-1:-1;;;;;43043:18:0;;43021:19;43043:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43094:30;;;;;;:44;;;43211:30;;:17;:30;;;;;:43;;;42972:328;-1:-1:-1;43396:26:0;;;;:17;:26;;;;;;;;43389:33;;;-1:-1:-1;;;;;43440:18:0;;;;;:12;:18;;;;;:34;;;;;;;43433:41;42480:1002::o;43777:1079::-;44055:10;:17;44030:22;;44055:21;;44075:1;;44055:21;:::i;:::-;44087:18;44108:24;;;:15;:24;;;;;;44481:10;:26;;44030:46;;-1:-1:-1;44108:24:0;;44030:46;;44481:26;;;;;;:::i;:::-;;;;;;;;;44459:48;;44545:11;44520:10;44531;44520:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44625:28;;;:15;:28;;;;;;;:41;;;44797:24;;;;;44790:31;44832:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43848:1008;;;43777:1079;:::o;41267:221::-;41352:14;41369:20;41386:2;41369:16;:20::i;:::-;-1:-1:-1;;;;;41400:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41445:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41267:221:0:o;33172:382::-;-1:-1:-1;;;;;33252:16:0;;33244:61;;;;-1:-1:-1;;;33244:61:0;;25654:2:1;33244:61:0;;;25636:21:1;;;25673:18;;;25666:30;25732:34;25712:18;;;25705:62;25784:18;;33244:61:0;25452:356:1;33244:61:0;31128:4;31152:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31152:16:0;:30;33316:58;;;;-1:-1:-1;;;33316:58:0;;26015:2:1;33316:58:0;;;25997:21:1;26054:2;26034:18;;;26027:30;26093;26073:18;;;26066:58;26141:18;;33316:58:0;25813:352:1;33316:58:0;33387:45;33416:1;33420:2;33424:7;33387:20;:45::i;:::-;-1:-1:-1;;;;;33445:13:0;;;;;;:9;:13;;;;;:18;;33462:1;;33445:13;:18;;33462:1;;33445:18;:::i;:::-;;;;-1:-1:-1;;33474:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33474:21:0;-1:-1:-1;;;;;33474:21:0;;;;;;;;33513:33;;33474:16;;;33513:33;;33474:16;;33513:33;33172:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:131::-;-1:-1:-1;;;;;1816:31:1;;1806:42;;1796:70;;1862:1;1859;1852:12;1877:315;1945:6;1953;2006:2;1994:9;1985:7;1981:23;1977:32;1974:52;;;2022:1;2019;2012:12;1974:52;2061:9;2048:23;2080:31;2105:5;2080:31;:::i;:::-;2130:5;2182:2;2167:18;;;;2154:32;;-1:-1:-1;;;1877:315:1:o;2197:127::-;2258:10;2253:3;2249:20;2246:1;2239:31;2289:4;2286:1;2279:15;2313:4;2310:1;2303:15;2329:275;2400:2;2394:9;2465:2;2446:13;;-1:-1:-1;;2442:27:1;2430:40;;2500:18;2485:34;;2521:22;;;2482:62;2479:88;;;2547:18;;:::i;:::-;2583:2;2576:22;2329:275;;-1:-1:-1;2329:275:1:o;2609:407::-;2674:5;2708:18;2700:6;2697:30;2694:56;;;2730:18;;:::i;:::-;2768:57;2813:2;2792:15;;-1:-1:-1;;2788:29:1;2819:4;2784:40;2768:57;:::i;:::-;2759:66;;2848:6;2841:5;2834:21;2888:3;2879:6;2874:3;2870:16;2867:25;2864:45;;;2905:1;2902;2895:12;2864:45;2954:6;2949:3;2942:4;2935:5;2931:16;2918:43;3008:1;3001:4;2992:6;2985:5;2981:18;2977:29;2970:40;2609:407;;;;;:::o;3021:451::-;3090:6;3143:2;3131:9;3122:7;3118:23;3114:32;3111:52;;;3159:1;3156;3149:12;3111:52;3199:9;3186:23;3232:18;3224:6;3221:30;3218:50;;;3264:1;3261;3254:12;3218:50;3287:22;;3340:4;3332:13;;3328:27;-1:-1:-1;3318:55:1;;3369:1;3366;3359:12;3318:55;3392:74;3458:7;3453:2;3440:16;3435:2;3431;3427:11;3392:74;:::i;3659:269::-;3716:6;3769:2;3757:9;3748:7;3744:23;3740:32;3737:52;;;3785:1;3782;3775:12;3737:52;3824:9;3811:23;3874:4;3867:5;3863:16;3856:5;3853:27;3843:55;;3894:1;3891;3884:12;3933:456;4010:6;4018;4026;4079:2;4067:9;4058:7;4054:23;4050:32;4047:52;;;4095:1;4092;4085:12;4047:52;4134:9;4121:23;4153:31;4178:5;4153:31;:::i;:::-;4203:5;-1:-1:-1;4260:2:1;4245:18;;4232:32;4273:33;4232:32;4273:33;:::i;:::-;3933:456;;4325:7;;-1:-1:-1;;;4379:2:1;4364:18;;;;4351:32;;3933:456::o;4394:247::-;4453:6;4506:2;4494:9;4485:7;4481:23;4477:32;4474:52;;;4522:1;4519;4512:12;4474:52;4561:9;4548:23;4580:31;4605:5;4580:31;:::i;4646:632::-;4817:2;4869:21;;;4939:13;;4842:18;;;4961:22;;;4788:4;;4817:2;5040:15;;;;5014:2;4999:18;;;4788:4;5083:169;5097:6;5094:1;5091:13;5083:169;;;5158:13;;5146:26;;5227:15;;;;5192:12;;;;5119:1;5112:9;5083:169;;;-1:-1:-1;5269:3:1;;4646:632;-1:-1:-1;;;;;;4646:632:1:o;5767:183::-;5827:4;5860:18;5852:6;5849:30;5846:56;;;5882:18;;:::i;:::-;-1:-1:-1;5927:1:1;5923:14;5939:4;5919:25;;5767:183::o;5955:1026::-;6048:6;6056;6109:2;6097:9;6088:7;6084:23;6080:32;6077:52;;;6125:1;6122;6115:12;6077:52;6164:9;6151:23;6183:31;6208:5;6183:31;:::i;:::-;6233:5;-1:-1:-1;6257:2:1;6295:18;;;6282:32;6337:18;6326:30;;6323:50;;;6369:1;6366;6359:12;6323:50;6392:22;;6445:4;6437:13;;6433:27;-1:-1:-1;6423:55:1;;6474:1;6471;6464:12;6423:55;6510:2;6497:16;6533:60;6549:43;6589:2;6549:43;:::i;:::-;6533:60;:::i;:::-;6627:15;;;6709:1;6705:10;;;;6697:19;;6693:28;;;6658:12;;;;6733:19;;;6730:39;;;6765:1;6762;6755:12;6730:39;6789:11;;;;6809:142;6825:6;6820:3;6817:15;6809:142;;;6891:17;;6879:30;;6842:12;;;;6929;;;;6809:142;;;6970:5;6960:15;;;;;;;5955:1026;;;;;:::o;6986:118::-;7072:5;7065:13;7058:21;7051:5;7048:32;7038:60;;7094:1;7091;7084:12;7109:382;7174:6;7182;7235:2;7223:9;7214:7;7210:23;7206:32;7203:52;;;7251:1;7248;7241:12;7203:52;7290:9;7277:23;7309:31;7334:5;7309:31;:::i;:::-;7359:5;-1:-1:-1;7416:2:1;7401:18;;7388:32;7429:30;7388:32;7429:30;:::i;:::-;7478:7;7468:17;;;7109:382;;;;;:::o;7496:966::-;7580:6;7611:2;7654;7642:9;7633:7;7629:23;7625:32;7622:52;;;7670:1;7667;7660:12;7622:52;7710:9;7697:23;7743:18;7735:6;7732:30;7729:50;;;7775:1;7772;7765:12;7729:50;7798:22;;7851:4;7843:13;;7839:27;-1:-1:-1;7829:55:1;;7880:1;7877;7870:12;7829:55;7916:2;7903:16;7939:60;7955:43;7995:2;7955:43;:::i;7939:60::-;8033:15;;;8115:1;8111:10;;;;8103:19;;8099:28;;;8064:12;;;;8139:19;;;8136:39;;;8171:1;8168;8161:12;8136:39;8195:11;;;;8215:217;8231:6;8226:3;8223:15;8215:217;;;8311:3;8298:17;8328:31;8353:5;8328:31;:::i;:::-;8372:18;;8248:12;;;;8410;;;;8215:217;;;8451:5;7496:966;-1:-1:-1;;;;;;;7496:966:1:o;8467:795::-;8562:6;8570;8578;8586;8639:3;8627:9;8618:7;8614:23;8610:33;8607:53;;;8656:1;8653;8646:12;8607:53;8695:9;8682:23;8714:31;8739:5;8714:31;:::i;:::-;8764:5;-1:-1:-1;8821:2:1;8806:18;;8793:32;8834:33;8793:32;8834:33;:::i;:::-;8886:7;-1:-1:-1;8940:2:1;8925:18;;8912:32;;-1:-1:-1;8995:2:1;8980:18;;8967:32;9022:18;9011:30;;9008:50;;;9054:1;9051;9044:12;9008:50;9077:22;;9130:4;9122:13;;9118:27;-1:-1:-1;9108:55:1;;9159:1;9156;9149:12;9108:55;9182:74;9248:7;9243:2;9230:16;9225:2;9221;9217:11;9182:74;:::i;:::-;9172:84;;;8467:795;;;;;;;:::o;9267:388::-;9335:6;9343;9396:2;9384:9;9375:7;9371:23;9367:32;9364:52;;;9412:1;9409;9402:12;9364:52;9451:9;9438:23;9470:31;9495:5;9470:31;:::i;:::-;9520:5;-1:-1:-1;9577:2:1;9562:18;;9549:32;9590:33;9549:32;9590:33;:::i;9660:380::-;9739:1;9735:12;;;;9782;;;9803:61;;9857:4;9849:6;9845:17;9835:27;;9803:61;9910:2;9902:6;9899:14;9879:18;9876:38;9873:161;;9956:10;9951:3;9947:20;9944:1;9937:31;9991:4;9988:1;9981:15;10019:4;10016:1;10009:15;9873:161;;9660:380;;;:::o;11285:335::-;11487:2;11469:21;;;11526:2;11506:18;;;11499:30;-1:-1:-1;;;11560:2:1;11545:18;;11538:41;11611:2;11596:18;;11285:335::o;11751:545::-;11853:2;11848:3;11845:11;11842:448;;;11889:1;11914:5;11910:2;11903:17;11959:4;11955:2;11945:19;12029:2;12017:10;12013:19;12010:1;12006:27;12000:4;11996:38;12065:4;12053:10;12050:20;12047:47;;;-1:-1:-1;12088:4:1;12047:47;12143:2;12138:3;12134:12;12131:1;12127:20;12121:4;12117:31;12107:41;;12198:82;12216:2;12209:5;12206:13;12198:82;;;12261:17;;;12242:1;12231:13;12198:82;;;12202:3;;;11751:545;;;:::o;12472:1352::-;12598:3;12592:10;12625:18;12617:6;12614:30;12611:56;;;12647:18;;:::i;:::-;12676:97;12766:6;12726:38;12758:4;12752:11;12726:38;:::i;:::-;12720:4;12676:97;:::i;:::-;12828:4;;12892:2;12881:14;;12909:1;12904:663;;;;13611:1;13628:6;13625:89;;;-1:-1:-1;13680:19:1;;;13674:26;13625:89;-1:-1:-1;;12429:1:1;12425:11;;;12421:24;12417:29;12407:40;12453:1;12449:11;;;12404:57;13727:81;;12874:944;;12904:663;11698:1;11691:14;;;11735:4;11722:18;;-1:-1:-1;;12940:20:1;;;13058:236;13072:7;13069:1;13066:14;13058:236;;;13161:19;;;13155:26;13140:42;;13253:27;;;;13221:1;13209:14;;;;13088:19;;13058:236;;;13062:3;13322:6;13313:7;13310:19;13307:201;;;13383:19;;;13377:26;-1:-1:-1;;13466:1:1;13462:14;;;13478:3;13458:24;13454:37;13450:42;13435:58;13420:74;;13307:201;-1:-1:-1;;;;;13554:1:1;13538:14;;;13534:22;13521:36;;-1:-1:-1;12472:1352:1:o;13829:413::-;14031:2;14013:21;;;14070:2;14050:18;;;14043:30;14109:34;14104:2;14089:18;;14082:62;-1:-1:-1;;;14175:2:1;14160:18;;14153:47;14232:3;14217:19;;13829:413::o;14659:127::-;14720:10;14715:3;14711:20;14708:1;14701:31;14751:4;14748:1;14741:15;14775:4;14772:1;14765:15;14791:125;14856:9;;;14877:10;;;14874:36;;;14890:18;;:::i;14921:168::-;14994:9;;;15025;;15042:15;;;15036:22;;15022:37;15012:71;;15063:18;;:::i;15094:135::-;15133:3;15154:17;;;15151:43;;15174:18;;:::i;:::-;-1:-1:-1;15221:1:1;15210:13;;15094:135::o;15234:127::-;15295:10;15290:3;15286:20;15283:1;15276:31;15326:4;15323:1;15316:15;15350:4;15347:1;15340:15;15366:184;15436:6;15489:2;15477:9;15468:7;15464:23;15460:32;15457:52;;;15505:1;15502;15495:12;15457:52;-1:-1:-1;15528:16:1;;15366:184;-1:-1:-1;15366:184:1:o;15834:245::-;15901:6;15954:2;15942:9;15933:7;15929:23;15925:32;15922:52;;;15970:1;15967;15960:12;15922:52;16002:9;15996:16;16021:28;16043:5;16021:28;:::i;17318:356::-;17520:2;17502:21;;;17539:18;;;17532:30;17598:34;17593:2;17578:18;;17571:62;17665:2;17650:18;;17318:356::o;20205:1256::-;20429:3;20467:6;20461:13;20493:4;20506:64;20563:6;20558:3;20553:2;20545:6;20541:15;20506:64;:::i;:::-;20633:13;;20592:16;;;;20655:68;20633:13;20592:16;20690:15;;;20655:68;:::i;:::-;20812:13;;20745:20;;;20785:1;;20850:36;20812:13;20850:36;:::i;:::-;20905:1;20922:18;;;20949:141;;;;21104:1;21099:337;;;;20915:521;;20949:141;-1:-1:-1;;20984:24:1;;20970:39;;21061:16;;21054:24;21040:39;;21029:51;;;-1:-1:-1;20949:141:1;;21099:337;21130:6;21127:1;21120:17;21178:2;21175:1;21165:16;21203:1;21217:169;21231:8;21228:1;21225:15;21217:169;;;21313:14;;21298:13;;;21291:37;21356:16;;;;21248:10;;21217:169;;;21221:3;;21417:8;21410:5;21406:20;21399:27;;20915:521;-1:-1:-1;21452:3:1;;20205:1256;-1:-1:-1;;;;;;;;;;20205:1256:1:o;23646:128::-;23713:9;;;23734:11;;;23731:37;;;23748:18;;:::i;23779:414::-;23981:2;23963:21;;;24020:2;24000:18;;;23993:30;24059:34;24054:2;24039:18;;24032:62;-1:-1:-1;;;24125:2:1;24110:18;;24103:48;24183:3;24168:19;;23779:414::o;24198:127::-;24259:10;24254:3;24250:20;24247:1;24240:31;24290:4;24287:1;24280:15;24314:4;24311:1;24304:15;24330:120;24370:1;24396;24386:35;;24401:18;;:::i;:::-;-1:-1:-1;24435:9:1;;24330:120::o;24455:112::-;24487:1;24513;24503:35;;24518:18;;:::i;:::-;-1:-1:-1;24552:9:1;;24455:112::o;24572:489::-;-1:-1:-1;;;;;24841:15:1;;;24823:34;;24893:15;;24888:2;24873:18;;24866:43;24940:2;24925:18;;24918:34;;;24988:3;24983:2;24968:18;;24961:31;;;24766:4;;25009:46;;25035:19;;25027:6;25009:46;:::i;:::-;25001:54;24572:489;-1:-1:-1;;;;;;24572:489:1:o;25066:249::-;25135:6;25188:2;25176:9;25167:7;25163:23;25159:32;25156:52;;;25204:1;25201;25194:12;25156:52;25236:9;25230:16;25255:30;25279:5;25255:30;:::i;25320:127::-;25381:10;25376:3;25372:20;25369:1;25362:31;25412:4;25409:1;25402:15;25436:4;25433:1;25426:15

Swarm Source

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