ETH Price: $3,119.23 (+0.83%)
Gas: 2 Gwei

Token

Nudie Community (NCN)
 

Overview

Max Total Supply

10,000 NCN

Holders

4,224

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Apecoin: APE Token
Balance
1 NCN
0x4d224452801aced8b2f0aebe155379bb5d594381
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:
NudieCommunityNFT

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.11;

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);
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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);
}

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

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);
}

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);
}

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);
            }
        }
    }
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) 
        public 
        view 
        virtual 
        override 
        returns (bool) 
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) 
        public 
        view 
        virtual 
        override 
        returns (string memory) 
    {
        require(
            _exists(tokenId), 
            "ERC721Metadata: URI query for nonexistent token"
        );

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId), 
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId), 
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data), 
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from, 
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) 
        internal 
        pure 
        returns (bool, uint256) 
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) 
        internal 
        pure 
        returns (bool, uint256) 
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) 
        internal 
        pure 
        returns (bool, uint256) 
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) 
        internal 
        pure 
        returns (bool, uint256) 
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) 
        internal 
        pure 
        returns (bool, uint256) 
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

/* 
     __   ___   _____  _____ 
    |  \ | | | | |   \| | __|
    |   \| | |_| | |) | | _| 
    |_|\___|\___/|___/|_|___|

 */
/**
 * @title A contract for NUDIE COMMUNITY
 * @author Hiro
 * @notice NFT Minting
 */
contract NudieCommunityNFT is ERC721, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;
    using SafeMath for uint256;
    using SafeMath for uint8;

    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant MINT_PRICE = 0.07 ether;
    uint256 public constant MINT_PRICE_PUBLIC = 0.07 ether;
    uint256 public constant MAX_MINT_PER_TX = 10;
    uint256 public constant MAX_MINT_PER_WL = 2;
    uint256 public constant MAX_MINT_PER_VIP = 5;
    uint256 public constant MAX_MINT_PER_WHALE = 20;
    uint256 public constant GIVEAWAY_SUPPLY = 200;
    uint256 public totalSupply = 0;

    bool public saleStarted = false;
    bool public preSaleStarted = false;
    bool public revealed = false;

    string public baseExtension = ".json";
    string public baseURI;
    string public notRevealedURI;

    // Merkle Tree Root
    bytes32 private _merkleRoot;

    // Team wallet
    address[] private _royaltyAddresses = [
        0xe2F5fa401aac8bF406863f61AEBA4fB17073C85b, // Wallet 1 address
        0x68Bf599600F01B056b5Ea831Ee7a72FA6f6D6F37, // Wallet 2 address
        0xfa9727c0a5B3fa203E3775e33E600248c9a5aB89, // Wallet 3 address
        0x9FB36a94e0CC99b5ba717c9E6D0EB0e370ddDDa1, // Wallet 4 address
        0xfE3Ef407AAa9ca27AEC0CA2c3C5789431749f892, // Wallet 5 address
        0x412aAbb45DAF6687Ab689b584101d18050DD7353, // Wallet 6 address
        0x27eA5D3eAE66a66b1164d2137403FFd9Ae1049eA, // Wallet 7 address
        0x86D7c4e370e9661A907bBaB77448bCe9203Ecb75, // Wallet 8 address
        0xAbEec041894DCE885fdc04cbDDecEE09CE2C53c2  // Wallet 9 address
    ];

    mapping(address => uint256) private _royaltyShares;
    mapping(address => uint256) balanceOfAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedURI);

        _royaltyShares[_royaltyAddresses[0]] = 20; // Royalty for Wallet 1
        _royaltyShares[_royaltyAddresses[1]] = 20; // Royalty for Wallet 2
        _royaltyShares[_royaltyAddresses[2]] = 20; // Royalty for Wallet 3
        _royaltyShares[_royaltyAddresses[3]] = 13; // Royalty for Wallet 4
        _royaltyShares[_royaltyAddresses[4]] = 13; //  Royalty for Wallet 5
        _royaltyShares[_royaltyAddresses[5]] = 7;  //  Royalty for Wallet 6
        _royaltyShares[_royaltyAddresses[6]] = 5;  //  Royalty for Wallet 7
        _royaltyShares[_royaltyAddresses[7]] = 1;  //  Royalty for Wallet 8
        _royaltyShares[_royaltyAddresses[8]] = 1;  //  Royalty for Wallet 9
    }

    /// @dev    Getter for the base URI 
    /// @return String of the base URI
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    /// @dev Mint NFTs for giveway
    function mintForGiveaway() external onlyOwner {
        require(totalSupply == 0, "MINT_ALREADY_STARTED");

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

    /// @dev   Admin mint for allocated NFTs
    /// @param _amount Number of NFTs to mint
    /// @param _to NFT receiver
    function mintAdmin(uint256 _amount, address _to) external onlyOwner {
        require(totalSupply + _amount <= MAX_SUPPLY, "MAX_SUPPLY_REACHED");
        require(totalSupply >= GIVEAWAY_SUPPLY, "GIVEAWAY_NOT_MINTED");
        require(msg.sender == owner(), "MINT_NOT_OWNER");


        for (uint256 i = 1; i <= _amount; i++) {
            _safeMint(_to, totalSupply + i);
        }
        totalSupply += _amount;
    }

    /// @dev    Add a hashed address to the merkle tree as a leaf
    /// @param  account Leaf address for MerkleTree
    /// @return bytes32 hashed version of the merkle leaf address
    function _leaf(address account) private pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    /// @dev    Verify the whitelist using the merkle tree
    /// @param  leaf Hashed address leaf from _leaf() to search for
    /// @param  proof Submitted root proof from MerkleTree
    /// @return bool True if address is allowed to mint
    function verifyWhitelist(bytes32 leaf, bytes32[] memory proof)
        private
        view
        returns (bool)
    {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash < proofElement) {
                computedHash = keccak256(
                    abi.encodePacked(computedHash, proofElement)
                );
            } else {
                computedHash = keccak256(
                    abi.encodePacked(proofElement, computedHash)
                );
            }
        }

        return computedHash == _merkleRoot;
    }

    /// @dev   General whitelist presale mint
    /// @param _count Amount to mint
    /// @param _proof Root merkle proof to submit
    function mintWhitelist(uint256 _count, bytes32[] memory _proof)
        external
        payable
    {
        require(preSaleStarted, "MINT_NOT_STARTED");
        require(
            verifyWhitelist(_leaf(msg.sender), _proof) == true,
            "ADDRESS_INVALID"
        );

        uint256 ownerTokenCount = balanceOf(msg.sender);
        require(
            _count > 0 && ownerTokenCount + _count <= MAX_MINT_PER_WL,
            "COUNT_INVALID"
        );
        require(totalSupply + _count <= MAX_SUPPLY, "MAX_SUPPLY_REACHED");
        require(totalSupply >= GIVEAWAY_SUPPLY, "GIVEAWAY_NOT_MINTED");

        if (msg.sender != owner()) {
            require(msg.value >= MINT_PRICE * _count);
        }

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

    /// @dev   VIP whitelist presale mint
    /// @param _count Amount to mint
    /// @param _proof Root merkle proof to submit
    function mintWhitelistForVIP(uint256 _count, bytes32[] memory _proof)
        external
        payable
    {
        require(preSaleStarted, "MINT_NOT_STARTED");
        require(
            verifyWhitelist(_leaf(msg.sender), _proof) == true,
            "ADDRESS_INVALID"
        );

        uint256 ownerTokenCount = balanceOf(msg.sender);
        require(
            _count > 0 && ownerTokenCount + _count <= MAX_MINT_PER_VIP,
            "COUNT_INVALID"
        );
        require(totalSupply + _count <= MAX_SUPPLY, "MAX_SUPPLY_REACHED");
        require(totalSupply >= GIVEAWAY_SUPPLY, "GIVEAWAY_NOT_MINTED");

        if (msg.sender != owner()) {
            require(msg.value >= MINT_PRICE * _count);
        }

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

    /// @dev   Whale whitelist presale mint
    /// @param _count Amount to mint
    /// @param _proof Root merkle proof to submit
    function mintWhitelistForWhale(uint256 _count, bytes32[] memory _proof)
        external
        payable
    {
        require(preSaleStarted, "MINT_NOT_STARTED");
        require(
            verifyWhitelist(_leaf(msg.sender), _proof) == true,
            "ADDRESS_INVALID"
        );

        uint256 ownerTokenCount = balanceOf(msg.sender);
        require(
            _count > 0 && ownerTokenCount + _count <= MAX_MINT_PER_WHALE,
            "COUNT_INVALID"
        );
        require(totalSupply + _count <= MAX_SUPPLY, "MAX_SUPPLY_REACHED");
        require(totalSupply >= GIVEAWAY_SUPPLY, "GIVEAWAY_NOT_MINTED");

        if (msg.sender != owner()) {
            require(msg.value >= MINT_PRICE * _count);
        }

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

    /// @dev   Mint a single NFT
    /// @param _count Number of NFTs to mint
    function mint(uint256 _count) public payable {
        require(saleStarted, "MINT_NOT_STARTED");
        uint256 ownerTokenCount = balanceOf(msg.sender);
        require(
            _count > 0 && ownerTokenCount + _count <= MAX_MINT_PER_TX,
            "COUNT_INVALID"
        );
        require(totalSupply >= GIVEAWAY_SUPPLY, "GIVEAWAY_NOT_MINTED");
        require(totalSupply + _count <= MAX_SUPPLY, "MAX_SUPPLY_REACHED");

        if (msg.sender != owner()) {
            require(msg.value >= MINT_PRICE_PUBLIC * _count);
        }

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

    /// @dev    Override the current tokenURI
    /// @param  tokenId Token ID that you want to override
    /// @return String of new tokenURI
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

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

    /// @dev Withdraw ether from the smart contract
    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "EMPTY_BALANCE");
        uint256 balance = address(this).balance;

        for (uint256 i = 0; i < _royaltyAddresses.length; i++) {
            payable(_royaltyAddresses[i]).transfer(
                balance.div(100).mul(_royaltyShares[_royaltyAddresses[i]])
            );
        }
    }

    /// @dev Set the sale to starting
    /// @param _hasStarted Boolean to set sale to starting
    function setSaleStarted(bool _hasStarted) external onlyOwner {
        require(saleStarted != _hasStarted, "SALE_STARTED_ALREADY_SET");
        saleStarted = _hasStarted;
    }

    /// @dev   Set the presale to starting
    /// @param _hasStarted Boolean to set presale to starting
    function setPreSaleStarted(bool _hasStarted) external onlyOwner {
        require(preSaleStarted != _hasStarted, "PRESALE_STARTED_ALREADY_SET");
        preSaleStarted = _hasStarted;
    }

    /// @dev   Set a new base URI for the NFT metadata
    /// @param _newBaseURI String of new baseURI
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    /// @dev Open the reveal gates!
    function reveal() public onlyOwner {
        revealed = true;
    }

    /// @dev   Set the new tokenURI for a specific token
    /// @param _notRevealedURI String of not revealed URI
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedURI = _notRevealedURI;
    }

    /// @dev Set the merkle root
    /// @param _merkleRootValue String of merkle root
    /// @return Bytes32 merkle root
    function setMerkleRoot(bytes32 _merkleRootValue)
        external
        onlyOwner
        returns (bytes32)
    {
        _merkleRoot = _merkleRootValue;
        return _merkleRoot;
    }

    /// @dev Pause the contract as an emergency switch
    function pause() external onlyOwner {
        require(!paused(), "ALREADY_PAUSED");
        _pause();
    }

    /// @dev Unpause the contract as an emergency switch
    function unpause() external onlyOwner {
        require(paused(), "ALREADY_UNPAUSED");
        _unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"GIVEAWAY_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_VIP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_WHALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"mintAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintForGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelistForVIP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintWhitelistForWhale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":[],"name":"preSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootValue","type":"bytes32"}],"name":"setMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setPreSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_hasStarted","type":"bool"}],"name":"setSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60006008556009805462ffffff1916905560c06040526005608081905264173539b7b760d91b60a09081526200003991600a91906200058a565b50604080516101208101825273e2f5fa401aac8bf406863f61aeba4fb17073c85b81527368bf599600f01b056b5ea831ee7a72fa6f6d6f37602082015273fa9727c0a5b3fa203e3775e33e600248c9a5ab8991810191909152739fb36a94e0cc99b5ba717c9e6d0eb0e370dddda1606082015273fe3ef407aaa9ca27aec0ca2c3c5789431749f892608082015273412aabb45daf6687ab689b584101d18050dd735360a08201527327ea5d3eae66a66b1164d2137403ffd9ae1049ea60c08201527386d7c4e370e9661a907bbab77448bce9203ecb7560e082015273abeec041894dce885fdc04cbddecee09ce2c53c26101008201526200013f90600e90600962000619565b503480156200014d57600080fd5b506040516200355b3803806200355b833981016040819052620001709162000755565b835184908490620001899060009060208501906200058a565b5080516200019f9060019060208401906200058a565b505050620001bc620001b66200047160201b60201c565b62000475565b6006805460ff60a01b191690556001600755620001d982620004c7565b620001e4816200052f565b6014600f6000600e6000815481106200020157620002016200080e565b60009182526020808320909101546001600160a01b03168352820192909252604001812091909155600e8054601492600f92909160019081106200024957620002496200080e565b60009182526020808320909101546001600160a01b03168352820192909252604001812091909155600e8054601492600f92909160029081106200029157620002916200080e565b60009182526020808320909101546001600160a01b03168352820192909252604001812091909155600e8054600d92600f9290916003908110620002d957620002d96200080e565b60009182526020808320909101546001600160a01b03168352820192909252604001812091909155600e8054600d92600f92909160049081106200032157620003216200080e565b60009182526020808320909101546001600160a01b03168352820192909252604001812091909155600e8054600792600f92909160059081106200036957620003696200080e565b60009182526020808320909101546001600160a01b03168352820192909252604001812091909155600e8054600592600f9290916006908110620003b157620003b16200080e565b60009182526020808320909101546001600160a01b03168352820192909252604001812091909155600e8054600192600f9290916007908110620003f957620003f96200080e565b60009182526020808320909101546001600160a01b03168352820192909252604001812091909155600e8054600192600f92909160089081106200044157620004416200080e565b60009182526020808320909101546001600160a01b03168352820192909252604001902055506200086192505050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620005165760405162461bcd60e51b815260206004820181905260248201526000805160206200353b83398151915260448201526064015b60405180910390fd5b80516200052b90600b9060208401906200058a565b5050565b6006546001600160a01b031633146200057a5760405162461bcd60e51b815260206004820181905260248201526000805160206200353b83398151915260448201526064016200050d565b80516200052b90600c9060208401905b828054620005989062000824565b90600052602060002090601f016020900481019282620005bc576000855562000607565b82601f10620005d757805160ff191683800117855562000607565b8280016001018555821562000607579182015b8281111562000607578251825591602001919060010190620005ea565b506200061592915062000671565b5090565b82805482825590600052602060002090810192821562000607579160200282015b828111156200060757825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200063a565b5b8082111562000615576000815560010162000672565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620006b057600080fd5b81516001600160401b0380821115620006cd57620006cd62000688565b604051601f8301601f19908116603f01168101908282118183101715620006f857620006f862000688565b816040528381526020925086838588010111156200071557600080fd5b600091505b838210156200073957858201830151818301840152908201906200071a565b838211156200074b5760008385830101525b9695505050505050565b600080600080608085870312156200076c57600080fd5b84516001600160401b03808211156200078457600080fd5b62000792888389016200069e565b95506020870151915080821115620007a957600080fd5b620007b7888389016200069e565b94506040870151915080821115620007ce57600080fd5b620007dc888389016200069e565b93506060870151915080821115620007f357600080fd5b5062000802878288016200069e565b91505092959194509250565b634e487b7160e01b600052603260045260246000fd5b600181811c908216806200083957607f821691505b602082108114156200085b57634e487b7160e01b600052602260045260246000fd5b50919050565b612cca80620008716000396000f3fe6080604052600436106102885760003560e01c806370a082311161015a578063a475b5dd116100c1578063c66828621161007a578063c6682862146106db578063c87b56dd146106f0578063e59ee01414610710578063e985e9c514610730578063f2c4ce1e14610779578063f2fde38b1461079957600080fd5b8063a475b5dd14610656578063a854ffba1461066b578063b0ec6dff1461068b578063b88d4fde146106a0578063c002d23d146106c0578063c3151fed146106c057600080fd5b80638da5cb5b116101135780638da5cb5b146105bb5780638ecad721146105d957806395d89b41146105ee5780639d034fe914610603578063a0712d6814610623578063a22cb4651461063657600080fd5b806370a0823114610527578063715018a614610547578063722503801461055c5780637b6236f8146105715780637cb64759146105865780638456cb59146105a657600080fd5b806339dace12116101fe57806355f804b3116101b757806355f804b31461047a5780635c474f9e1461049a5780635c975abb146104b45780636352211e146104d3578063690cf0d1146104f35780636c0360eb1461051257600080fd5b806339dace12146103e85780633b8e09ef146103fb5780633ccfd60b146104105780633f4ba83a1461042557806342842e0e1461043a578063518302271461045a57600080fd5b806318160ddd1161025057806318160ddd146103515780631d7fd7aa146103755780631e7f598f1461038a57806323b872dd1461039d57806332cb6b0c146103bd57806338c44a6d146103d357600080fd5b806301ffc9a71461028d578063061431a8146102c257806306fdde03146102d7578063081812fc146102f9578063095ea7b314610331575b600080fd5b34801561029957600080fd5b506102ad6102a83660046124c3565b6107b9565b60405190151581526020015b60405180910390f35b6102d56102d0366004612527565b61080b565b005b3480156102e357600080fd5b506102ec610982565b6040516102b99190612631565b34801561030557600080fd5b50610319610314366004612644565b610a14565b6040516001600160a01b0390911681526020016102b9565b34801561033d57600080fd5b506102d561034c366004612674565b610aa9565b34801561035d57600080fd5b5061036760085481565b6040519081526020016102b9565b34801561038157600080fd5b50610367600281565b6102d5610398366004612527565b610bbf565b3480156103a957600080fd5b506102d56103b836600461269e565b610d05565b3480156103c957600080fd5b5061036761271081565b3480156103df57600080fd5b50610367600581565b6102d56103f6366004612527565b610d36565b34801561040757600080fd5b50610367601481565b34801561041c57600080fd5b506102d5610e7c565b34801561043157600080fd5b506102d5610fb3565b34801561044657600080fd5b506102d561045536600461269e565b611033565b34801561046657600080fd5b506009546102ad9062010000900460ff1681565b34801561048657600080fd5b506102d5610495366004612732565b61104e565b3480156104a657600080fd5b506009546102ad9060ff1681565b3480156104c057600080fd5b50600654600160a01b900460ff166102ad565b3480156104df57600080fd5b506103196104ee366004612644565b61108b565b3480156104ff57600080fd5b506009546102ad90610100900460ff1681565b34801561051e57600080fd5b506102ec611102565b34801561053357600080fd5b5061036761054236600461277b565b611190565b34801561055357600080fd5b506102d5611217565b34801561056857600080fd5b506102ec61124b565b34801561057d57600080fd5b506102d5611258565b34801561059257600080fd5b506103676105a1366004612644565b611313565b3480156105b257600080fd5b506102d561134d565b3480156105c757600080fd5b506006546001600160a01b0316610319565b3480156105e557600080fd5b50610367600a81565b3480156105fa57600080fd5b506102ec6113ca565b34801561060f57600080fd5b506102d561061e366004612796565b6113d9565b6102d5610631366004612644565b6114ea565b34801561064257600080fd5b506102d56106513660046127d2565b6115fe565b34801561066257600080fd5b506102d56116c3565b34801561067757600080fd5b506102d56106863660046127fc565b611700565b34801561069757600080fd5b5061036760c881565b3480156106ac57600080fd5b506102d56106bb366004612817565b611796565b3480156106cc57600080fd5b5061036766f8b0a10e47000081565b3480156106e757600080fd5b506102ec6117ce565b3480156106fc57600080fd5b506102ec61070b366004612644565b6117db565b34801561071c57600080fd5b506102d561072b3660046127fc565b611948565b34801561073c57600080fd5b506102ad61074b366004612893565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078557600080fd5b506102d5610794366004612732565b6119eb565b3480156107a557600080fd5b506102d56107b436600461277b565b611a28565b60006001600160e01b031982166380ac58cd60e01b14806107ea57506001600160e01b03198216635b5e139f60e01b145b8061080557506301ffc9a760e01b6001600160e01b03198316145b92915050565b600954610100900460ff1661083b5760405162461bcd60e51b8152600401610832906128bd565b60405180910390fd5b61084d61084733611ac3565b82611b02565b151560011461086e5760405162461bcd60e51b8152600401610832906128e7565b600061087933611190565b9050600083118015610895575060026108928483612926565b11155b6108b15760405162461bcd60e51b81526004016108329061293e565b612710836008546108c29190612926565b11156108e05760405162461bcd60e51b815260040161083290612965565b60c860085410156109035760405162461bcd60e51b815260040161083290612991565b6006546001600160a01b03163314610932576109268366f8b0a10e4700006129be565b34101561093257600080fd5b60015b83811161096557610953338260085461094e9190612926565b611bb3565b8061095d816129dd565b915050610935565b5082600860008282546109789190612926565b9091555050505050565b606060008054610991906129f8565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd906129f8565b8015610a0a5780601f106109df57610100808354040283529160200191610a0a565b820191906000526020600020905b8154815290600101906020018083116109ed57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a8d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610832565b506000908152600460205260409020546001600160a01b031690565b6000610ab48261108b565b9050806001600160a01b0316836001600160a01b03161415610b225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610832565b336001600160a01b0382161480610b3e5750610b3e813361074b565b610bb05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610832565b610bba8383611bcd565b505050565b600954610100900460ff16610be65760405162461bcd60e51b8152600401610832906128bd565b610bf261084733611ac3565b1515600114610c135760405162461bcd60e51b8152600401610832906128e7565b6000610c1e33611190565b9050600083118015610c3a57506005610c378483612926565b11155b610c565760405162461bcd60e51b81526004016108329061293e565b61271083600854610c679190612926565b1115610c855760405162461bcd60e51b815260040161083290612965565b60c86008541015610ca85760405162461bcd60e51b815260040161083290612991565b6006546001600160a01b03163314610cd757610ccb8366f8b0a10e4700006129be565b341015610cd757600080fd5b60015b83811161096557610cf3338260085461094e9190612926565b80610cfd816129dd565b915050610cda565b610d0f3382611c3b565b610d2b5760405162461bcd60e51b815260040161083290612a33565b610bba838383611d32565b600954610100900460ff16610d5d5760405162461bcd60e51b8152600401610832906128bd565b610d6961084733611ac3565b1515600114610d8a5760405162461bcd60e51b8152600401610832906128e7565b6000610d9533611190565b9050600083118015610db157506014610dae8483612926565b11155b610dcd5760405162461bcd60e51b81526004016108329061293e565b61271083600854610dde9190612926565b1115610dfc5760405162461bcd60e51b815260040161083290612965565b60c86008541015610e1f5760405162461bcd60e51b815260040161083290612991565b6006546001600160a01b03163314610e4e57610e428366f8b0a10e4700006129be565b341015610e4e57600080fd5b60015b83811161096557610e6a338260085461094e9190612926565b80610e74816129dd565b915050610e51565b6006546001600160a01b03163314610ea65760405162461bcd60e51b815260040161083290612a84565b60004711610ee65760405162461bcd60e51b815260206004820152600d60248201526c454d5054595f42414c414e434560981b6044820152606401610832565b4760005b600e54811015610faf57600e8181548110610f0757610f07612ab9565b6000918252602082200154600e80546001600160a01b03909216926108fc92610f7492600f929187908110610f3e57610f3e612ab9565b60009182526020808320909101546001600160a01b03168352820192909252604001902054610f6e866064611ed2565b90611ede565b6040518115909202916000818181858888f19350505050158015610f9c573d6000803e3d6000fd5b5080610fa7816129dd565b915050610eea565b5050565b6006546001600160a01b03163314610fdd5760405162461bcd60e51b815260040161083290612a84565b600654600160a01b900460ff166110295760405162461bcd60e51b815260206004820152601060248201526f1053149150511657d55394105554d15160821b6044820152606401610832565b611031611eea565b565b610bba83838360405180602001604052806000815250611796565b6006546001600160a01b031633146110785760405162461bcd60e51b815260040161083290612a84565b8051610faf90600b906020840190612414565b6000818152600260205260408120546001600160a01b0316806108055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610832565b600b805461110f906129f8565b80601f016020809104026020016040519081016040528092919081815260200182805461113b906129f8565b80156111885780601f1061115d57610100808354040283529160200191611188565b820191906000526020600020905b81548152906001019060200180831161116b57829003601f168201915b505050505081565b60006001600160a01b0382166111fb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610832565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112415760405162461bcd60e51b815260040161083290612a84565b6110316000611f87565b600c805461110f906129f8565b6006546001600160a01b031633146112825760405162461bcd60e51b815260040161083290612a84565b600854156112c95760405162461bcd60e51b81526020600482015260146024820152731352539517d053149150511657d4d5105495115160621b6044820152606401610832565b60015b60c881116112f8576112e6338260085461094e9190612926565b806112f0816129dd565b9150506112cc565b5060c86008600082825461130c9190612926565b9091555050565b6006546000906001600160a01b031633146113405760405162461bcd60e51b815260040161083290612a84565b50600d819055805b919050565b6006546001600160a01b031633146113775760405162461bcd60e51b815260040161083290612a84565b600654600160a01b900460ff16156113c25760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d4105554d15160921b6044820152606401610832565b611031611fd9565b606060018054610991906129f8565b6006546001600160a01b031633146114035760405162461bcd60e51b815260040161083290612a84565b612710826008546114149190612926565b11156114325760405162461bcd60e51b815260040161083290612965565b60c860085410156114555760405162461bcd60e51b815260040161083290612991565b6006546001600160a01b031633146114a05760405162461bcd60e51b815260206004820152600e60248201526d26a4a72a2fa727aa2fa7aba722a960911b6044820152606401610832565b60015b8281116114ce576114bc828260085461094e9190612926565b806114c6816129dd565b9150506114a3565b5081600860008282546114e19190612926565b90915550505050565b60095460ff1661150c5760405162461bcd60e51b8152600401610832906128bd565b600061151733611190565b90506000821180156115335750600a6115308383612926565b11155b61154f5760405162461bcd60e51b81526004016108329061293e565b60c860085410156115725760405162461bcd60e51b815260040161083290612991565b612710826008546115839190612926565b11156115a15760405162461bcd60e51b815260040161083290612965565b6006546001600160a01b031633146115d0576115c48266f8b0a10e4700006129be565b3410156115d057600080fd5b60015b8281116114ce576115ec338260085461094e9190612926565b806115f6816129dd565b9150506115d3565b6001600160a01b0382163314156116575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610832565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b031633146116ed5760405162461bcd60e51b815260040161083290612a84565b6009805462ff0000191662010000179055565b6006546001600160a01b0316331461172a5760405162461bcd60e51b815260040161083290612a84565b60095460ff16151581151514156117835760405162461bcd60e51b815260206004820152601860248201527f53414c455f535441525445445f414c52454144595f53455400000000000000006044820152606401610832565b6009805460ff1916911515919091179055565b6117a03383611c3b565b6117bc5760405162461bcd60e51b815260040161083290612a33565b6117c884848484612061565b50505050565b600a805461110f906129f8565b6000818152600260205260409020546060906001600160a01b03166118395760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610832565b60408051602081019091526000815260095462010000900460ff166118ea57600c8054611865906129f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611891906129f8565b80156118de5780601f106118b3576101008083540402835291602001916118de565b820191906000526020600020905b8154815290600101906020018083116118c157829003601f168201915b505050505090506118f5565b6118f2612094565b90505b60008151116119135760405180602001604052806000815250611941565b8061191d846120a3565b600a60405160200161193193929190612acf565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146119725760405162461bcd60e51b815260040161083290612a84565b60095460ff61010090910416151581151514156119d15760405162461bcd60e51b815260206004820152601b60248201527f50524553414c455f535441525445445f414c52454144595f53455400000000006044820152606401610832565b600980549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314611a155760405162461bcd60e51b815260040161083290612a84565b8051610faf90600c906020840190612414565b6006546001600160a01b03163314611a525760405162461bcd60e51b815260040161083290612a84565b6001600160a01b038116611ab75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610832565b611ac081611f87565b50565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b600082815b8351811015611ba7576000848281518110611b2457611b24612ab9565b6020026020010151905080831015611b67576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611b94565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611b9f816129dd565b915050611b07565b50600d54149392505050565b610faf8282604051806020016040528060008152506121a1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c028261108b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611cb45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610832565b6000611cbf8361108b565b9050806001600160a01b0316846001600160a01b03161480611cfa5750836001600160a01b0316611cef84610a14565b6001600160a01b0316145b80611d2a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d458261108b565b6001600160a01b031614611dad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610832565b6001600160a01b038216611e0f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610832565b611e1a600082611bcd565b6001600160a01b0383166000908152600360205260408120805460019290611e43908490612b93565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e71908490612926565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006119418284612bc0565b600061194182846129be565b600654600160a01b900460ff16611f3a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610832565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600654600160a01b900460ff16156120265760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610832565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f6a3390565b61206c848484611d32565b612078848484846121d4565b6117c85760405162461bcd60e51b815260040161083290612bd4565b6060600b8054610991906129f8565b6060816120c75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120f157806120db816129dd565b91506120ea9050600a83612bc0565b91506120cb565b60008167ffffffffffffffff81111561210c5761210c6124e0565b6040519080825280601f01601f191660200182016040528015612136576020820181803683370190505b5090505b8415611d2a5761214b600183612b93565b9150612158600a86612c26565b612163906030612926565b60f81b81838151811061217857612178612ab9565b60200101906001600160f81b031916908160001a90535061219a600a86612bc0565b945061213a565b6121ab83836122d2565b6121b860008484846121d4565b610bba5760405162461bcd60e51b815260040161083290612bd4565b60006001600160a01b0384163b156122c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612218903390899088908890600401612c3a565b6020604051808303816000875af1925050508015612253575060408051601f3d908101601f1916820190925261225091810190612c77565b60015b6122ad573d808015612281576040519150601f19603f3d011682016040523d82523d6000602084013e612286565b606091505b5080516122a55760405162461bcd60e51b815260040161083290612bd4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d2a565b506001949350505050565b6001600160a01b0382166123285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610832565b6000818152600260205260409020546001600160a01b03161561238d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610832565b6001600160a01b03821660009081526003602052604081208054600192906123b6908490612926565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612420906129f8565b90600052602060002090601f0160209004810192826124425760008555612488565b82601f1061245b57805160ff1916838001178555612488565b82800160010185558215612488579182015b8281111561248857825182559160200191906001019061246d565b50612494929150612498565b5090565b5b808211156124945760008155600101612499565b6001600160e01b031981168114611ac057600080fd5b6000602082840312156124d557600080fd5b8135611941816124ad565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561251f5761251f6124e0565b604052919050565b6000806040838503121561253a57600080fd5b8235915060208084013567ffffffffffffffff8082111561255a57600080fd5b818601915086601f83011261256e57600080fd5b813581811115612580576125806124e0565b8060051b91506125918483016124f6565b81815291830184019184810190898411156125ab57600080fd5b938501935b838510156125c9578435825293850193908501906125b0565b8096505050505050509250929050565b60005b838110156125f45781810151838201526020016125dc565b838111156117c85750506000910152565b6000815180845261261d8160208601602086016125d9565b601f01601f19169290920160200192915050565b6020815260006119416020830184612605565b60006020828403121561265657600080fd5b5035919050565b80356001600160a01b038116811461134857600080fd5b6000806040838503121561268757600080fd5b6126908361265d565b946020939093013593505050565b6000806000606084860312156126b357600080fd5b6126bc8461265d565b92506126ca6020850161265d565b9150604084013590509250925092565b600067ffffffffffffffff8311156126f4576126f46124e0565b612707601f8401601f19166020016124f6565b905082815283838301111561271b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561274457600080fd5b813567ffffffffffffffff81111561275b57600080fd5b8201601f8101841361276c57600080fd5b611d2a848235602084016126da565b60006020828403121561278d57600080fd5b6119418261265d565b600080604083850312156127a957600080fd5b823591506127b96020840161265d565b90509250929050565b8035801515811461134857600080fd5b600080604083850312156127e557600080fd5b6127ee8361265d565b91506127b9602084016127c2565b60006020828403121561280e57600080fd5b611941826127c2565b6000806000806080858703121561282d57600080fd5b6128368561265d565b93506128446020860161265d565b925060408501359150606085013567ffffffffffffffff81111561286757600080fd5b8501601f8101871361287857600080fd5b612887878235602084016126da565b91505092959194509250565b600080604083850312156128a657600080fd5b6128af8361265d565b91506127b96020840161265d565b60208082526010908201526f1352539517d393d517d4d5105495115160821b604082015260600190565b6020808252600f908201526e105111149154d4d7d2539590531251608a1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561293957612939612910565b500190565b6020808252600d908201526c10d3d5539517d2539590531251609a1b604082015260600190565b60208082526012908201527113505617d4d55414131657d4915050d2115160721b604082015260600190565b60208082526013908201527211d255915055d05657d393d517d35253951151606a1b604082015260600190565b60008160001904831182151516156129d8576129d8612910565b500290565b60006000198214156129f1576129f1612910565b5060010190565b600181811c90821680612a0c57607f821691505b60208210811415612a2d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600084516020612ae28285838a016125d9565b855191840191612af58184848a016125d9565b8554920191600090600181811c9080831680612b1257607f831692505b858310811415612b3057634e487b7160e01b85526022600452602485fd5b808015612b445760018114612b5557612b82565b60ff19851688528388019550612b82565b60008b81526020902060005b85811015612b7a5781548a820152908401908801612b61565b505083880195505b50939b9a5050505050505050505050565b600082821015612ba557612ba5612910565b500390565b634e487b7160e01b600052601260045260246000fd5b600082612bcf57612bcf612baa565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612c3557612c35612baa565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c6d90830184612605565b9695505050505050565b600060208284031215612c8957600080fd5b8151611941816124ad56fea2646970667358221220d845cf10b0d788e5767bd889f9952ba7b1dfd2dad2972559eb4df1f2e852c0de64736f6c634300080b00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000f4e7564696520436f6d6d756e697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e434e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d575a68525a4137473346773732353179334a796b526d476362726461506d57737870623164473134694a4a332f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f6e75646965636f6d6d756e6974792e6d7970696e6174612e636c6f75642f697066732f516d527737556e6b7848766331425365334b7846324d4465736a544568706d7857366e597255563643537275536a2f000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c806370a082311161015a578063a475b5dd116100c1578063c66828621161007a578063c6682862146106db578063c87b56dd146106f0578063e59ee01414610710578063e985e9c514610730578063f2c4ce1e14610779578063f2fde38b1461079957600080fd5b8063a475b5dd14610656578063a854ffba1461066b578063b0ec6dff1461068b578063b88d4fde146106a0578063c002d23d146106c0578063c3151fed146106c057600080fd5b80638da5cb5b116101135780638da5cb5b146105bb5780638ecad721146105d957806395d89b41146105ee5780639d034fe914610603578063a0712d6814610623578063a22cb4651461063657600080fd5b806370a0823114610527578063715018a614610547578063722503801461055c5780637b6236f8146105715780637cb64759146105865780638456cb59146105a657600080fd5b806339dace12116101fe57806355f804b3116101b757806355f804b31461047a5780635c474f9e1461049a5780635c975abb146104b45780636352211e146104d3578063690cf0d1146104f35780636c0360eb1461051257600080fd5b806339dace12146103e85780633b8e09ef146103fb5780633ccfd60b146104105780633f4ba83a1461042557806342842e0e1461043a578063518302271461045a57600080fd5b806318160ddd1161025057806318160ddd146103515780631d7fd7aa146103755780631e7f598f1461038a57806323b872dd1461039d57806332cb6b0c146103bd57806338c44a6d146103d357600080fd5b806301ffc9a71461028d578063061431a8146102c257806306fdde03146102d7578063081812fc146102f9578063095ea7b314610331575b600080fd5b34801561029957600080fd5b506102ad6102a83660046124c3565b6107b9565b60405190151581526020015b60405180910390f35b6102d56102d0366004612527565b61080b565b005b3480156102e357600080fd5b506102ec610982565b6040516102b99190612631565b34801561030557600080fd5b50610319610314366004612644565b610a14565b6040516001600160a01b0390911681526020016102b9565b34801561033d57600080fd5b506102d561034c366004612674565b610aa9565b34801561035d57600080fd5b5061036760085481565b6040519081526020016102b9565b34801561038157600080fd5b50610367600281565b6102d5610398366004612527565b610bbf565b3480156103a957600080fd5b506102d56103b836600461269e565b610d05565b3480156103c957600080fd5b5061036761271081565b3480156103df57600080fd5b50610367600581565b6102d56103f6366004612527565b610d36565b34801561040757600080fd5b50610367601481565b34801561041c57600080fd5b506102d5610e7c565b34801561043157600080fd5b506102d5610fb3565b34801561044657600080fd5b506102d561045536600461269e565b611033565b34801561046657600080fd5b506009546102ad9062010000900460ff1681565b34801561048657600080fd5b506102d5610495366004612732565b61104e565b3480156104a657600080fd5b506009546102ad9060ff1681565b3480156104c057600080fd5b50600654600160a01b900460ff166102ad565b3480156104df57600080fd5b506103196104ee366004612644565b61108b565b3480156104ff57600080fd5b506009546102ad90610100900460ff1681565b34801561051e57600080fd5b506102ec611102565b34801561053357600080fd5b5061036761054236600461277b565b611190565b34801561055357600080fd5b506102d5611217565b34801561056857600080fd5b506102ec61124b565b34801561057d57600080fd5b506102d5611258565b34801561059257600080fd5b506103676105a1366004612644565b611313565b3480156105b257600080fd5b506102d561134d565b3480156105c757600080fd5b506006546001600160a01b0316610319565b3480156105e557600080fd5b50610367600a81565b3480156105fa57600080fd5b506102ec6113ca565b34801561060f57600080fd5b506102d561061e366004612796565b6113d9565b6102d5610631366004612644565b6114ea565b34801561064257600080fd5b506102d56106513660046127d2565b6115fe565b34801561066257600080fd5b506102d56116c3565b34801561067757600080fd5b506102d56106863660046127fc565b611700565b34801561069757600080fd5b5061036760c881565b3480156106ac57600080fd5b506102d56106bb366004612817565b611796565b3480156106cc57600080fd5b5061036766f8b0a10e47000081565b3480156106e757600080fd5b506102ec6117ce565b3480156106fc57600080fd5b506102ec61070b366004612644565b6117db565b34801561071c57600080fd5b506102d561072b3660046127fc565b611948565b34801561073c57600080fd5b506102ad61074b366004612893565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078557600080fd5b506102d5610794366004612732565b6119eb565b3480156107a557600080fd5b506102d56107b436600461277b565b611a28565b60006001600160e01b031982166380ac58cd60e01b14806107ea57506001600160e01b03198216635b5e139f60e01b145b8061080557506301ffc9a760e01b6001600160e01b03198316145b92915050565b600954610100900460ff1661083b5760405162461bcd60e51b8152600401610832906128bd565b60405180910390fd5b61084d61084733611ac3565b82611b02565b151560011461086e5760405162461bcd60e51b8152600401610832906128e7565b600061087933611190565b9050600083118015610895575060026108928483612926565b11155b6108b15760405162461bcd60e51b81526004016108329061293e565b612710836008546108c29190612926565b11156108e05760405162461bcd60e51b815260040161083290612965565b60c860085410156109035760405162461bcd60e51b815260040161083290612991565b6006546001600160a01b03163314610932576109268366f8b0a10e4700006129be565b34101561093257600080fd5b60015b83811161096557610953338260085461094e9190612926565b611bb3565b8061095d816129dd565b915050610935565b5082600860008282546109789190612926565b9091555050505050565b606060008054610991906129f8565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd906129f8565b8015610a0a5780601f106109df57610100808354040283529160200191610a0a565b820191906000526020600020905b8154815290600101906020018083116109ed57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a8d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610832565b506000908152600460205260409020546001600160a01b031690565b6000610ab48261108b565b9050806001600160a01b0316836001600160a01b03161415610b225760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610832565b336001600160a01b0382161480610b3e5750610b3e813361074b565b610bb05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610832565b610bba8383611bcd565b505050565b600954610100900460ff16610be65760405162461bcd60e51b8152600401610832906128bd565b610bf261084733611ac3565b1515600114610c135760405162461bcd60e51b8152600401610832906128e7565b6000610c1e33611190565b9050600083118015610c3a57506005610c378483612926565b11155b610c565760405162461bcd60e51b81526004016108329061293e565b61271083600854610c679190612926565b1115610c855760405162461bcd60e51b815260040161083290612965565b60c86008541015610ca85760405162461bcd60e51b815260040161083290612991565b6006546001600160a01b03163314610cd757610ccb8366f8b0a10e4700006129be565b341015610cd757600080fd5b60015b83811161096557610cf3338260085461094e9190612926565b80610cfd816129dd565b915050610cda565b610d0f3382611c3b565b610d2b5760405162461bcd60e51b815260040161083290612a33565b610bba838383611d32565b600954610100900460ff16610d5d5760405162461bcd60e51b8152600401610832906128bd565b610d6961084733611ac3565b1515600114610d8a5760405162461bcd60e51b8152600401610832906128e7565b6000610d9533611190565b9050600083118015610db157506014610dae8483612926565b11155b610dcd5760405162461bcd60e51b81526004016108329061293e565b61271083600854610dde9190612926565b1115610dfc5760405162461bcd60e51b815260040161083290612965565b60c86008541015610e1f5760405162461bcd60e51b815260040161083290612991565b6006546001600160a01b03163314610e4e57610e428366f8b0a10e4700006129be565b341015610e4e57600080fd5b60015b83811161096557610e6a338260085461094e9190612926565b80610e74816129dd565b915050610e51565b6006546001600160a01b03163314610ea65760405162461bcd60e51b815260040161083290612a84565b60004711610ee65760405162461bcd60e51b815260206004820152600d60248201526c454d5054595f42414c414e434560981b6044820152606401610832565b4760005b600e54811015610faf57600e8181548110610f0757610f07612ab9565b6000918252602082200154600e80546001600160a01b03909216926108fc92610f7492600f929187908110610f3e57610f3e612ab9565b60009182526020808320909101546001600160a01b03168352820192909252604001902054610f6e866064611ed2565b90611ede565b6040518115909202916000818181858888f19350505050158015610f9c573d6000803e3d6000fd5b5080610fa7816129dd565b915050610eea565b5050565b6006546001600160a01b03163314610fdd5760405162461bcd60e51b815260040161083290612a84565b600654600160a01b900460ff166110295760405162461bcd60e51b815260206004820152601060248201526f1053149150511657d55394105554d15160821b6044820152606401610832565b611031611eea565b565b610bba83838360405180602001604052806000815250611796565b6006546001600160a01b031633146110785760405162461bcd60e51b815260040161083290612a84565b8051610faf90600b906020840190612414565b6000818152600260205260408120546001600160a01b0316806108055760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610832565b600b805461110f906129f8565b80601f016020809104026020016040519081016040528092919081815260200182805461113b906129f8565b80156111885780601f1061115d57610100808354040283529160200191611188565b820191906000526020600020905b81548152906001019060200180831161116b57829003601f168201915b505050505081565b60006001600160a01b0382166111fb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610832565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112415760405162461bcd60e51b815260040161083290612a84565b6110316000611f87565b600c805461110f906129f8565b6006546001600160a01b031633146112825760405162461bcd60e51b815260040161083290612a84565b600854156112c95760405162461bcd60e51b81526020600482015260146024820152731352539517d053149150511657d4d5105495115160621b6044820152606401610832565b60015b60c881116112f8576112e6338260085461094e9190612926565b806112f0816129dd565b9150506112cc565b5060c86008600082825461130c9190612926565b9091555050565b6006546000906001600160a01b031633146113405760405162461bcd60e51b815260040161083290612a84565b50600d819055805b919050565b6006546001600160a01b031633146113775760405162461bcd60e51b815260040161083290612a84565b600654600160a01b900460ff16156113c25760405162461bcd60e51b815260206004820152600e60248201526d1053149150511657d4105554d15160921b6044820152606401610832565b611031611fd9565b606060018054610991906129f8565b6006546001600160a01b031633146114035760405162461bcd60e51b815260040161083290612a84565b612710826008546114149190612926565b11156114325760405162461bcd60e51b815260040161083290612965565b60c860085410156114555760405162461bcd60e51b815260040161083290612991565b6006546001600160a01b031633146114a05760405162461bcd60e51b815260206004820152600e60248201526d26a4a72a2fa727aa2fa7aba722a960911b6044820152606401610832565b60015b8281116114ce576114bc828260085461094e9190612926565b806114c6816129dd565b9150506114a3565b5081600860008282546114e19190612926565b90915550505050565b60095460ff1661150c5760405162461bcd60e51b8152600401610832906128bd565b600061151733611190565b90506000821180156115335750600a6115308383612926565b11155b61154f5760405162461bcd60e51b81526004016108329061293e565b60c860085410156115725760405162461bcd60e51b815260040161083290612991565b612710826008546115839190612926565b11156115a15760405162461bcd60e51b815260040161083290612965565b6006546001600160a01b031633146115d0576115c48266f8b0a10e4700006129be565b3410156115d057600080fd5b60015b8281116114ce576115ec338260085461094e9190612926565b806115f6816129dd565b9150506115d3565b6001600160a01b0382163314156116575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610832565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b031633146116ed5760405162461bcd60e51b815260040161083290612a84565b6009805462ff0000191662010000179055565b6006546001600160a01b0316331461172a5760405162461bcd60e51b815260040161083290612a84565b60095460ff16151581151514156117835760405162461bcd60e51b815260206004820152601860248201527f53414c455f535441525445445f414c52454144595f53455400000000000000006044820152606401610832565b6009805460ff1916911515919091179055565b6117a03383611c3b565b6117bc5760405162461bcd60e51b815260040161083290612a33565b6117c884848484612061565b50505050565b600a805461110f906129f8565b6000818152600260205260409020546060906001600160a01b03166118395760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610832565b60408051602081019091526000815260095462010000900460ff166118ea57600c8054611865906129f8565b80601f0160208091040260200160405190810160405280929190818152602001828054611891906129f8565b80156118de5780601f106118b3576101008083540402835291602001916118de565b820191906000526020600020905b8154815290600101906020018083116118c157829003601f168201915b505050505090506118f5565b6118f2612094565b90505b60008151116119135760405180602001604052806000815250611941565b8061191d846120a3565b600a60405160200161193193929190612acf565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146119725760405162461bcd60e51b815260040161083290612a84565b60095460ff61010090910416151581151514156119d15760405162461bcd60e51b815260206004820152601b60248201527f50524553414c455f535441525445445f414c52454144595f53455400000000006044820152606401610832565b600980549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314611a155760405162461bcd60e51b815260040161083290612a84565b8051610faf90600c906020840190612414565b6006546001600160a01b03163314611a525760405162461bcd60e51b815260040161083290612a84565b6001600160a01b038116611ab75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610832565b611ac081611f87565b50565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b600082815b8351811015611ba7576000848281518110611b2457611b24612ab9565b6020026020010151905080831015611b67576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611b94565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611b9f816129dd565b915050611b07565b50600d54149392505050565b610faf8282604051806020016040528060008152506121a1565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c028261108b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611cb45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610832565b6000611cbf8361108b565b9050806001600160a01b0316846001600160a01b03161480611cfa5750836001600160a01b0316611cef84610a14565b6001600160a01b0316145b80611d2a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d458261108b565b6001600160a01b031614611dad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610832565b6001600160a01b038216611e0f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610832565b611e1a600082611bcd565b6001600160a01b0383166000908152600360205260408120805460019290611e43908490612b93565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e71908490612926565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006119418284612bc0565b600061194182846129be565b600654600160a01b900460ff16611f3a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610832565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600654600160a01b900460ff16156120265760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610832565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f6a3390565b61206c848484611d32565b612078848484846121d4565b6117c85760405162461bcd60e51b815260040161083290612bd4565b6060600b8054610991906129f8565b6060816120c75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120f157806120db816129dd565b91506120ea9050600a83612bc0565b91506120cb565b60008167ffffffffffffffff81111561210c5761210c6124e0565b6040519080825280601f01601f191660200182016040528015612136576020820181803683370190505b5090505b8415611d2a5761214b600183612b93565b9150612158600a86612c26565b612163906030612926565b60f81b81838151811061217857612178612ab9565b60200101906001600160f81b031916908160001a90535061219a600a86612bc0565b945061213a565b6121ab83836122d2565b6121b860008484846121d4565b610bba5760405162461bcd60e51b815260040161083290612bd4565b60006001600160a01b0384163b156122c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612218903390899088908890600401612c3a565b6020604051808303816000875af1925050508015612253575060408051601f3d908101601f1916820190925261225091810190612c77565b60015b6122ad573d808015612281576040519150601f19603f3d011682016040523d82523d6000602084013e612286565b606091505b5080516122a55760405162461bcd60e51b815260040161083290612bd4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d2a565b506001949350505050565b6001600160a01b0382166123285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610832565b6000818152600260205260409020546001600160a01b03161561238d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610832565b6001600160a01b03821660009081526003602052604081208054600192906123b6908490612926565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612420906129f8565b90600052602060002090601f0160209004810192826124425760008555612488565b82601f1061245b57805160ff1916838001178555612488565b82800160010185558215612488579182015b8281111561248857825182559160200191906001019061246d565b50612494929150612498565b5090565b5b808211156124945760008155600101612499565b6001600160e01b031981168114611ac057600080fd5b6000602082840312156124d557600080fd5b8135611941816124ad565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561251f5761251f6124e0565b604052919050565b6000806040838503121561253a57600080fd5b8235915060208084013567ffffffffffffffff8082111561255a57600080fd5b818601915086601f83011261256e57600080fd5b813581811115612580576125806124e0565b8060051b91506125918483016124f6565b81815291830184019184810190898411156125ab57600080fd5b938501935b838510156125c9578435825293850193908501906125b0565b8096505050505050509250929050565b60005b838110156125f45781810151838201526020016125dc565b838111156117c85750506000910152565b6000815180845261261d8160208601602086016125d9565b601f01601f19169290920160200192915050565b6020815260006119416020830184612605565b60006020828403121561265657600080fd5b5035919050565b80356001600160a01b038116811461134857600080fd5b6000806040838503121561268757600080fd5b6126908361265d565b946020939093013593505050565b6000806000606084860312156126b357600080fd5b6126bc8461265d565b92506126ca6020850161265d565b9150604084013590509250925092565b600067ffffffffffffffff8311156126f4576126f46124e0565b612707601f8401601f19166020016124f6565b905082815283838301111561271b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561274457600080fd5b813567ffffffffffffffff81111561275b57600080fd5b8201601f8101841361276c57600080fd5b611d2a848235602084016126da565b60006020828403121561278d57600080fd5b6119418261265d565b600080604083850312156127a957600080fd5b823591506127b96020840161265d565b90509250929050565b8035801515811461134857600080fd5b600080604083850312156127e557600080fd5b6127ee8361265d565b91506127b9602084016127c2565b60006020828403121561280e57600080fd5b611941826127c2565b6000806000806080858703121561282d57600080fd5b6128368561265d565b93506128446020860161265d565b925060408501359150606085013567ffffffffffffffff81111561286757600080fd5b8501601f8101871361287857600080fd5b612887878235602084016126da565b91505092959194509250565b600080604083850312156128a657600080fd5b6128af8361265d565b91506127b96020840161265d565b60208082526010908201526f1352539517d393d517d4d5105495115160821b604082015260600190565b6020808252600f908201526e105111149154d4d7d2539590531251608a1b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561293957612939612910565b500190565b6020808252600d908201526c10d3d5539517d2539590531251609a1b604082015260600190565b60208082526012908201527113505617d4d55414131657d4915050d2115160721b604082015260600190565b60208082526013908201527211d255915055d05657d393d517d35253951151606a1b604082015260600190565b60008160001904831182151516156129d8576129d8612910565b500290565b60006000198214156129f1576129f1612910565b5060010190565b600181811c90821680612a0c57607f821691505b60208210811415612a2d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600084516020612ae28285838a016125d9565b855191840191612af58184848a016125d9565b8554920191600090600181811c9080831680612b1257607f831692505b858310811415612b3057634e487b7160e01b85526022600452602485fd5b808015612b445760018114612b5557612b82565b60ff19851688528388019550612b82565b60008b81526020902060005b85811015612b7a5781548a820152908401908801612b61565b505083880195505b50939b9a5050505050505050505050565b600082821015612ba557612ba5612910565b500390565b634e487b7160e01b600052601260045260246000fd5b600082612bcf57612bcf612baa565b500490565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612c3557612c35612baa565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c6d90830184612605565b9695505050505050565b600060208284031215612c8957600080fd5b8151611941816124ad56fea2646970667358221220d845cf10b0d788e5767bd889f9952ba7b1dfd2dad2972559eb4df1f2e852c0de64736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000f4e7564696520436f6d6d756e697479000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e434e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d575a68525a4137473346773732353179334a796b526d476362726461506d57737870623164473134694a4a332f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f6e75646965636f6d6d756e6974792e6d7970696e6174612e636c6f75642f697066732f516d527737556e6b7848766331425365334b7846324d4465736a544568706d7857366e597255563643537275536a2f000000000000

-----Decoded View---------------
Arg [0] : _name (string): Nudie Community
Arg [1] : _symbol (string): NCN
Arg [2] : _initBaseURI (string): https://gateway.pinata.cloud/ipfs/QmWZhRZA7G3Fw7251y3JykRmGcbrdaPmWsxpb1dG14iJJ3/
Arg [3] : _initNotRevealedURI (string): https://nudiecommunity.mypinata.cloud/ipfs/QmRw7UnkxHvc1BSe3KxF2MDesjTEhpmxW6nYrUV6CSruSj/

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 4e7564696520436f6d6d756e6974790000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4e434e0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [9] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [10] : 732f516d575a68525a4137473346773732353179334a796b526d476362726461
Arg [11] : 506d57737870623164473134694a4a332f000000000000000000000000000000
Arg [12] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [13] : 68747470733a2f2f6e75646965636f6d6d756e6974792e6d7970696e6174612e
Arg [14] : 636c6f75642f697066732f516d527737556e6b7848766331425365334b784632
Arg [15] : 4d4465736a544568706d7857366e597255563643537275536a2f000000000000


Deployed Bytecode Sourcemap

43929:12152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20279:361;;;;;;;;;;-1:-1:-1;20279:361:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20279:361:0;;;;;;;;49140:886;;;;;;:::i;:::-;;:::i;:::-;;21468:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23171:315::-;;;;;;;;;;-1:-1:-1;23171:315:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3123:32:1;;;3105:51;;3093:2;3078:18;23171:315:0;2959:203:1;22694:411:0;;;;;;;;;;-1:-1:-1;22694:411:0;;;;;:::i;:::-;;:::i;44529:30::-;;;;;;;;;;;;;;;;;;;3750:25:1;;;3738:2;3723:18;44529:30:0;3604:177:1;44322:43:0;;;;;;;;;;;;44364:1;44322:43;;50166:893;;;;;;:::i;:::-;;:::i;24247:377::-;;;;;;;;;;-1:-1:-1;24247:377:0;;;;;:::i;:::-;;:::i;44107:42::-;;;;;;;;;;;;44144:5;44107:42;;44372:44;;;;;;;;;;;;44415:1;44372:44;;51201:897;;;;;;:::i;:::-;;:::i;44423:47::-;;;;;;;;;;;;44468:2;44423:47;;53835:383;;;;;;;;;;;;;:::i;55963:115::-;;;;;;;;;;;;;:::i;24695:185::-;;;;;;;;;;-1:-1:-1;24695:185:0;;;;;:::i;:::-;;:::i;44647:28::-;;;;;;;;;;-1:-1:-1;44647:28:0;;;;;;;;;;;54924:104;;;;;;;;;;-1:-1:-1;54924:104:0;;;;;:::i;:::-;;:::i;44568:31::-;;;;;;;;;;-1:-1:-1;44568:31:0;;;;;;;;2909:86;;;;;;;;;;-1:-1:-1;2980:7:0;;-1:-1:-1;;;2980:7:0;;;;2909:86;;21068:333;;;;;;;;;;-1:-1:-1;21068:333:0;;;;;:::i;:::-;;:::i;44606:34::-;;;;;;;;;;-1:-1:-1;44606:34:0;;;;;;;;;;;44728:21;;;;;;;;;;;;;:::i;20704:302::-;;;;;;;;;;-1:-1:-1;20704:302:0;;;;;:::i;:::-;;:::i;41204:94::-;;;;;;;;;;;;;:::i;44756:28::-;;;;;;;;;;;;;:::i;46906:279::-;;;;;;;;;;;;;:::i;55527:196::-;;;;;;;;;;-1:-1:-1;55527:196:0;;;;;:::i;:::-;;:::i;55787:110::-;;;;;;;;;;;;;:::i;40553:87::-;;;;;;;;;;-1:-1:-1;40626:6:0;;-1:-1:-1;;;;;40626:6:0;40553:87;;44271:44;;;;;;;;;;;;44313:2;44271:44;;21637:104;;;;;;;;;;;;;:::i;47319:429::-;;;;;;;;;;-1:-1:-1;47319:429:0;;;;;:::i;:::-;;:::i;52186:703::-;;;;;;:::i;:::-;;:::i;23558:331::-;;;;;;;;;;-1:-1:-1;23558:331:0;;;;;:::i;:::-;;:::i;55073:69::-;;;;;;;;;;;;;:::i;54325:179::-;;;;;;;;;;-1:-1:-1;54325:179:0;;;;;:::i;:::-;;:::i;44477:45::-;;;;;;;;;;;;44519:3;44477:45;;24951:366;;;;;;;;;;-1:-1:-1;24951:366:0;;;;;:::i;:::-;;:::i;44156:47::-;;;;;;;;;;;;44193:10;44156:47;;44684:37;;;;;;;;;;;;;:::i;53044:730::-;;;;;;;;;;-1:-1:-1;53044:730:0;;;;;:::i;:::-;;:::i;54619:191::-;;;;;;;;;;-1:-1:-1;54619:191:0;;;;;:::i;:::-;;:::i;23960:220::-;;;;;;;;;;-1:-1:-1;23960:220:0;;;;;:::i;:::-;-1:-1:-1;;;;;24137:25:0;;;24107:4;24137:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23960:220;55267:126;;;;;;;;;;-1:-1:-1;55267:126:0;;;;;:::i;:::-;;:::i;41453:230::-;;;;;;;;;;-1:-1:-1;41453:230:0;;;;;:::i;:::-;;:::i;20279:361::-;20431:4;-1:-1:-1;;;;;;20474:40:0;;-1:-1:-1;;;20474:40:0;;:105;;-1:-1:-1;;;;;;;20531:48:0;;-1:-1:-1;;;20531:48:0;20474:105;:158;;;-1:-1:-1;;;;;;;;;;19249:40:0;;;20596:36;20454:178;20279:361;-1:-1:-1;;20279:361:0:o;49140:886::-;49263:14;;;;;;;49255:43;;;;-1:-1:-1;;;49255:43:0;;;;;;;:::i;:::-;;;;;;;;;49331:42;49347:17;49353:10;49347:5;:17::i;:::-;49366:6;49331:15;:42::i;:::-;:50;;49377:4;49331:50;49309:115;;;;-1:-1:-1;;;49309:115:0;;;;;;;:::i;:::-;49437:23;49463:21;49473:10;49463:9;:21::i;:::-;49437:47;;49526:1;49517:6;:10;:57;;;;-1:-1:-1;44364:1:0;49531:24;49549:6;49531:15;:24;:::i;:::-;:43;;49517:57;49495:120;;;;-1:-1:-1;;;49495:120:0;;;;;;;:::i;:::-;44144:5;49648:6;49634:11;;:20;;;;:::i;:::-;:34;;49626:65;;;;-1:-1:-1;;;49626:65:0;;;;;;;:::i;:::-;44519:3;49710:11;;:30;;49702:62;;;;-1:-1:-1;;;49702:62:0;;;;;;;:::i;:::-;40626:6;;-1:-1:-1;;;;;40626:6:0;49781:10;:21;49777:95;;49840:19;49853:6;44193:10;49840:19;:::i;:::-;49827:9;:32;;49819:41;;;;;;49901:1;49884:103;49909:6;49904:1;:11;49884:103;;49937:38;49947:10;49973:1;49959:11;;:15;;;;:::i;:::-;49937:9;:38::i;:::-;49917:3;;;;:::i;:::-;;;;49884:103;;;;50012:6;49997:11;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;49140:886:0:o;21468:100::-;21522:13;21555:5;21548:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21468:100;:::o;23171:315::-;23297:7;26954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26954:16:0;23323:111;;;;-1:-1:-1;;;23323:111:0;;10241:2:1;23323:111:0;;;10223:21:1;10280:2;10260:18;;;10253:30;10319:34;10299:18;;;10292:62;-1:-1:-1;;;10370:18:1;;;10363:42;10422:19;;23323:111:0;10039:408:1;23323:111:0;-1:-1:-1;23454:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23454:24:0;;23171:315::o;22694:411::-;22775:13;22791:23;22806:7;22791:14;:23::i;:::-;22775:39;;22839:5;-1:-1:-1;;;;;22833:11:0;:2;-1:-1:-1;;;;;22833:11:0;;;22825:57;;;;-1:-1:-1;;;22825:57:0;;10654:2:1;22825:57:0;;;10636:21:1;10693:2;10673:18;;;10666:30;10732:34;10712:18;;;10705:62;-1:-1:-1;;;10783:18:1;;;10776:31;10824:19;;22825:57:0;10452:397:1;22825:57:0;2241:10;-1:-1:-1;;;;;22917:21:0;;;;:62;;-1:-1:-1;22942:37:0;22959:5;2241:10;23960:220;:::i;22942:37::-;22895:168;;;;-1:-1:-1;;;22895:168:0;;11056:2:1;22895:168:0;;;11038:21:1;11095:2;11075:18;;;11068:30;11134:34;11114:18;;;11107:62;11205:26;11185:18;;;11178:54;11249:19;;22895:168:0;10854:420:1;22895:168:0;23076:21;23085:2;23089:7;23076:8;:21::i;:::-;22764:341;22694:411;;:::o;50166:893::-;50295:14;;;;;;;50287:43;;;;-1:-1:-1;;;50287:43:0;;;;;;;:::i;:::-;50363:42;50379:17;50385:10;50379:5;:17::i;50363:42::-;:50;;50409:4;50363:50;50341:115;;;;-1:-1:-1;;;50341:115:0;;;;;;;:::i;:::-;50469:23;50495:21;50505:10;50495:9;:21::i;:::-;50469:47;;50558:1;50549:6;:10;:58;;;;-1:-1:-1;44415:1:0;50563:24;50581:6;50563:15;:24;:::i;:::-;:44;;50549:58;50527:121;;;;-1:-1:-1;;;50527:121:0;;;;;;;:::i;:::-;44144:5;50681:6;50667:11;;:20;;;;:::i;:::-;:34;;50659:65;;;;-1:-1:-1;;;50659:65:0;;;;;;;:::i;:::-;44519:3;50743:11;;:30;;50735:62;;;;-1:-1:-1;;;50735:62:0;;;;;;;:::i;:::-;40626:6;;-1:-1:-1;;;;;40626:6:0;50814:10;:21;50810:95;;50873:19;50886:6;44193:10;50873:19;:::i;:::-;50860:9;:32;;50852:41;;;;;;50934:1;50917:103;50942:6;50937:1;:11;50917:103;;50970:38;50980:10;51006:1;50992:11;;:15;;;;:::i;50970:38::-;50950:3;;;;:::i;:::-;;;;50917:103;;24247:377;24456:41;2241:10;24489:7;24456:18;:41::i;:::-;24434:141;;;;-1:-1:-1;;;24434:141:0;;;;;;;:::i;:::-;24588:28;24598:4;24604:2;24608:7;24588:9;:28::i;51201:897::-;51332:14;;;;;;;51324:43;;;;-1:-1:-1;;;51324:43:0;;;;;;;:::i;:::-;51400:42;51416:17;51422:10;51416:5;:17::i;51400:42::-;:50;;51446:4;51400:50;51378:115;;;;-1:-1:-1;;;51378:115:0;;;;;;;:::i;:::-;51506:23;51532:21;51542:10;51532:9;:21::i;:::-;51506:47;;51595:1;51586:6;:10;:60;;;;-1:-1:-1;44468:2:0;51600:24;51618:6;51600:15;:24;:::i;:::-;:46;;51586:60;51564:123;;;;-1:-1:-1;;;51564:123:0;;;;;;;:::i;:::-;44144:5;51720:6;51706:11;;:20;;;;:::i;:::-;:34;;51698:65;;;;-1:-1:-1;;;51698:65:0;;;;;;;:::i;:::-;44519:3;51782:11;;:30;;51774:62;;;;-1:-1:-1;;;51774:62:0;;;;;;;:::i;:::-;40626:6;;-1:-1:-1;;;;;40626:6:0;51853:10;:21;51849:95;;51912:19;51925:6;44193:10;51912:19;:::i;:::-;51899:9;:32;;51891:41;;;;;;51973:1;51956:103;51981:6;51976:1;:11;51956:103;;52009:38;52019:10;52045:1;52031:11;;:15;;;;:::i;52009:38::-;51989:3;;;;:::i;:::-;;;;51956:103;;53835:383;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;53917:1:::1;53893:21;:25;53885:51;;;::::0;-1:-1:-1;;;53885:51:0;;12260:2:1;53885:51:0::1;::::0;::::1;12242:21:1::0;12299:2;12279:18;;;12272:30;-1:-1:-1;;;12318:18:1;;;12311:43;12371:18;;53885:51:0::1;12058:337:1::0;53885:51:0::1;53965:21;53947:15;53999:212;54023:17;:24:::0;54019:28;::::1;53999:212;;;54077:17;54095:1;54077:20;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;::::1;::::0;54162:17:::1;:20:::0;;-1:-1:-1;;;;;54077:20:0;;::::1;::::0;54069:130:::1;::::0;54126:58:::1;::::0;54147:14:::1;::::0;54077:20;54180:1;;54162:20;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;54162:20:0::1;54147:36:::0;;;::::1;::::0;;;;;;;;;54126:16:::1;:7:::0;54138:3:::1;54126:11;:16::i;:::-;:20:::0;::::1;:58::i;:::-;54069:130;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;54049:3:0;::::1;::::0;::::1;:::i;:::-;;;;53999:212;;;;53874:344;53835:383::o:0;55963:115::-;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;2980:7;;-1:-1:-1;;;2980:7:0;;;;56012:37:::1;;;::::0;-1:-1:-1;;;56012:37:0;;12734:2:1;56012:37:0::1;::::0;::::1;12716:21:1::0;12773:2;12753:18;;;12746:30;-1:-1:-1;;;12792:18:1;;;12785:46;12848:18;;56012:37:0::1;12532:340:1::0;56012:37:0::1;56060:10;:8;:10::i;:::-;55963:115::o:0;24695:185::-;24833:39;24850:4;24856:2;24860:7;24833:39;;;;;;;;;;;;:16;:39::i;54924:104::-;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;54999:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;21068:333::-:0;21190:7;21232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21232:16:0;21281:19;21259:111;;;;-1:-1:-1;;;21259:111:0;;13079:2:1;21259:111:0;;;13061:21:1;13118:2;13098:18;;;13091:30;13157:34;13137:18;;;13130:62;-1:-1:-1;;;13208:18:1;;;13201:39;13257:19;;21259:111:0;12877:405:1;44728:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20704:302::-;20826:7;-1:-1:-1;;;;;20874:19:0;;20852:112;;;;-1:-1:-1;;;20852:112:0;;13489:2:1;20852:112:0;;;13471:21:1;13528:2;13508:18;;;13501:30;13567:34;13547:18;;;13540:62;-1:-1:-1;;;13618:18:1;;;13611:40;13668:19;;20852:112:0;13287:406:1;20852:112:0;-1:-1:-1;;;;;;20982:16:0;;;;;:9;:16;;;;;;;20704:302::o;41204:94::-;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;41269:21:::1;41287:1;41269:9;:21::i;44756:28::-:0;;;;;;;:::i;46906:279::-;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;46971:11:::1;::::0;:16;46963:49:::1;;;::::0;-1:-1:-1;;;46963:49:0;;13900:2:1;46963:49:0::1;::::0;::::1;13882:21:1::0;13939:2;13919:18;;;13912:30;-1:-1:-1;;;13958:18:1;;;13951:50;14018:18;;46963:49:0::1;13698:344:1::0;46963:49:0::1;47042:1;47025:112;44519:3;47045:1;:20;47025:112;;47087:38;47097:10;47123:1;47109:11;;:15;;;;:::i;47087:38::-;47067:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47025:112;;;;44519:3;47147:11;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;46906:279:0:o;55527:196::-;40626:6;;55631:7;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;-1:-1:-1;55656:11:0::1;:30:::0;;;55670:16;40844:1:::1;55527:196:::0;;;:::o;55787:110::-;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;2980:7;;-1:-1:-1;;;2980:7:0;;;;55842:9:::1;55834:36;;;::::0;-1:-1:-1;;;55834:36:0;;14249:2:1;55834:36:0::1;::::0;::::1;14231:21:1::0;14288:2;14268:18;;;14261:30;-1:-1:-1;;;14307:18:1;;;14300:44;14361:18;;55834:36:0::1;14047:338:1::0;55834:36:0::1;55881:8;:6;:8::i;21637:104::-:0;21693:13;21726:7;21719:14;;;;;:::i;47319:429::-;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;44144:5:::1;47420:7;47406:11;;:21;;;;:::i;:::-;:35;;47398:66;;;;-1:-1:-1::0;;;47398:66:0::1;;;;;;;:::i;:::-;44519:3;47483:11;;:30;;47475:62;;;;-1:-1:-1::0;;;47475:62:0::1;;;;;;;:::i;:::-;40626:6:::0;;-1:-1:-1;;;;;40626:6:0;47556:10:::1;:21;47548:48;;;::::0;-1:-1:-1;;;47548:48:0;;14592:2:1;47548:48:0::1;::::0;::::1;14574:21:1::0;14631:2;14611:18;;;14604:30;-1:-1:-1;;;14650:18:1;;;14643:44;14704:18;;47548:48:0::1;14390:338:1::0;47548:48:0::1;47628:1;47611:97;47636:7;47631:1;:12;47611:97;;47665:31;47675:3;47694:1;47680:11;;:15;;;;:::i;47665:31::-;47645:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47611:97;;;;47733:7;47718:11;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;47319:429:0:o;52186:703::-;52250:11;;;;52242:40;;;;-1:-1:-1;;;52242:40:0;;;;;;;:::i;:::-;52293:23;52319:21;52329:10;52319:9;:21::i;:::-;52293:47;;52382:1;52373:6;:10;:57;;;;-1:-1:-1;44313:2:0;52387:24;52405:6;52387:15;:24;:::i;:::-;:43;;52373:57;52351:120;;;;-1:-1:-1;;;52351:120:0;;;;;;;:::i;:::-;44519:3;52490:11;;:30;;52482:62;;;;-1:-1:-1;;;52482:62:0;;;;;;;:::i;:::-;44144:5;52577:6;52563:11;;:20;;;;:::i;:::-;:34;;52555:65;;;;-1:-1:-1;;;52555:65:0;;;;;;;:::i;:::-;40626:6;;-1:-1:-1;;;;;40626:6:0;52637:10;:21;52633:102;;52696:26;52716:6;44254:10;52696:26;:::i;:::-;52683:9;:39;;52675:48;;;;;;52764:1;52747:103;52772:6;52767:1;:11;52747:103;;52800:38;52810:10;52836:1;52822:11;;:15;;;;:::i;52800:38::-;52780:3;;;;:::i;:::-;;;;52747:103;;23558:331;-1:-1:-1;;;;;23697:24:0;;2241:10;23697:24;;23689:62;;;;-1:-1:-1;;;23689:62:0;;14935:2:1;23689:62:0;;;14917:21:1;14974:2;14954:18;;;14947:30;15013:27;14993:18;;;14986:55;15058:18;;23689:62:0;14733:349:1;23689:62:0;2241:10;23764:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23764:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23764:53:0;;;;;;;;;;23833:48;;540:41:1;;;23764:42:0;;2241:10;23833:48;;513:18:1;23833:48:0;;;;;;;23558:331;;:::o;55073:69::-;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;55119:8:::1;:15:::0;;-1:-1:-1;;55119:15:0::1;::::0;::::1;::::0;;55073:69::o;54325:179::-;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;54405:11:::1;::::0;::::1;;:26;;::::0;::::1;;;;54397:63;;;::::0;-1:-1:-1;;;54397:63:0;;15289:2:1;54397:63:0::1;::::0;::::1;15271:21:1::0;15328:2;15308:18;;;15301:30;15367:26;15347:18;;;15340:54;15411:18;;54397:63:0::1;15087:348:1::0;54397:63:0::1;54471:11;:25:::0;;-1:-1:-1;;54471:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54325:179::o;24951:366::-;25140:41;2241:10;25173:7;25140:18;:41::i;:::-;25118:141;;;;-1:-1:-1;;;25118:141:0;;;;;;;:::i;:::-;25270:39;25284:4;25290:2;25294:7;25303:5;25270:13;:39::i;:::-;24951:366;;;;:::o;44684:37::-;;;;;;;:::i;53044:730::-;26930:4;26954:16;;;:7;:16;;;;;;53162:13;;-1:-1:-1;;;;;26954:16:0;53193:49;;;;-1:-1:-1;;;53193:49:0;;15642:2:1;53193:49:0;;;15624:21:1;15681:2;15661:18;;;15654:30;-1:-1:-1;;;15700:18:1;;;15693:50;15760:18;;53193:49:0;15440:344:1;53193:49:0;53255:33;;;;;;;;;-1:-1:-1;53255:33:0;;53303:8;;;;;;;53299:150;;53354:14;53337:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53299:150;;;53427:10;:8;:10::i;:::-;53410:27;;53299:150;53510:1;53485:14;53479:28;:32;:287;;;;;;;;;;;;;;;;;53603:14;53644:18;:7;:16;:18::i;:::-;53689:13;53560:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53479:287;53459:307;53044:730;-1:-1:-1;;;53044:730:0:o;54619:191::-;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;54702:14:::1;::::0;::::1;;::::0;;::::1;;:29;;::::0;::::1;;;;54694:69;;;::::0;-1:-1:-1;;;54694:69:0;;17649:2:1;54694:69:0::1;::::0;::::1;17631:21:1::0;17688:2;17668:18;;;17661:30;17727:29;17707:18;;;17700:57;17774:18;;54694:69:0::1;17447:351:1::0;54694:69:0::1;54774:14;:28:::0;;;::::1;;;;-1:-1:-1::0;;54774:28:0;;::::1;::::0;;;::::1;::::0;;54619:191::o;55267:126::-;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;55353:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;41453:230::-:0;40626:6;;-1:-1:-1;;;;;40626:6:0;2241:10;40773:23;40765:68;;;;-1:-1:-1;;;40765:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41556:22:0;::::1;41534:111;;;::::0;-1:-1:-1;;;41534:111:0;;18005:2:1;41534:111:0::1;::::0;::::1;17987:21:1::0;18044:2;18024:18;;;18017:30;18083:34;18063:18;;;18056:62;-1:-1:-1;;;18134:18:1;;;18127:36;18180:19;;41534:111:0::1;17803:402:1::0;41534:111:0::1;41656:19;41666:8;41656:9;:19::i;:::-;41453:230:::0;:::o;47943:125::-;48034:25;;-1:-1:-1;;18359:2:1;18355:15;;;18351:53;48034:25:0;;;18339:66:1;47997:7:0;;18421:12:1;;48034:25:0;;;;;;;;;;;;48024:36;;;;;;48017:43;;47943:125;;;:::o;48322:674::-;48434:4;48479;48434;48496:446;48520:5;:12;48516:1;:16;48496:446;;;48554:20;48577:5;48583:1;48577:8;;;;;;;;:::i;:::-;;;;;;;48554:31;;48621:12;48606;:27;48602:329;;;48701:44;;;;;;18601:19:1;;;18636:12;;;18629:28;;;18673:12;;48701:44:0;;;;;;;;;;;;48669:95;;;;;;48654:110;;48602:329;;;48852:44;;;;;;18601:19:1;;;18636:12;;;18629:28;;;18673:12;;48852:44:0;;;;;;;;;;;;48820:95;;;;;;48805:110;;48602:329;-1:-1:-1;48534:3:0;;;;:::i;:::-;;;;48496:446;;;-1:-1:-1;48977:11:0;;48961:27;;48322:674;-1:-1:-1;;;48322:674:0:o;27961:110::-;28037:26;28047:2;28051:7;28037:26;;;;;;;;;;;;:9;:26::i;30997:174::-;31072:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31072:29:0;-1:-1:-1;;;;;31072:29:0;;;;;;;;:24;;31126:23;31072:24;31126:14;:23::i;:::-;-1:-1:-1;;;;;31117:46:0;;;;;;;;;;;30997:174;;:::o;27159:460::-;27292:4;26954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26954:16:0;27315:111;;;;-1:-1:-1;;;27315:111:0;;18898:2:1;27315:111:0;;;18880:21:1;18937:2;18917:18;;;18910:30;18976:34;18956:18;;;18949:62;-1:-1:-1;;;19027:18:1;;;19020:42;19079:19;;27315:111:0;18696:408:1;27315:111:0;27437:13;27453:23;27468:7;27453:14;:23::i;:::-;27437:39;;27506:5;-1:-1:-1;;;;;27495:16:0;:7;-1:-1:-1;;;;;27495:16:0;;:65;;;;27553:7;-1:-1:-1;;;;;27529:31:0;:20;27541:7;27529:11;:20::i;:::-;-1:-1:-1;;;;;27529:31:0;;27495:65;:115;;;-1:-1:-1;;;;;;24137:25:0;;;24107:4;24137:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27578:32;27487:124;27159:460;-1:-1:-1;;;;27159:460:0:o;30263:616::-;30436:4;-1:-1:-1;;;;;30409:31:0;:23;30424:7;30409:14;:23::i;:::-;-1:-1:-1;;;;;30409:31:0;;30387:123;;;;-1:-1:-1;;;30387:123:0;;19311:2:1;30387:123:0;;;19293:21:1;19350:2;19330:18;;;19323:30;19389:34;19369:18;;;19362:62;-1:-1:-1;;;19440:18:1;;;19433:39;19489:19;;30387:123:0;19109:405:1;30387:123:0;-1:-1:-1;;;;;30529:16:0;;30521:65;;;;-1:-1:-1;;;30521:65:0;;19721:2:1;30521:65:0;;;19703:21:1;19760:2;19740:18;;;19733:30;19799:34;19779:18;;;19772:62;-1:-1:-1;;;19850:18:1;;;19843:34;19894:19;;30521:65:0;19519:400:1;30521:65:0;30703:29;30720:1;30724:7;30703:8;:29::i;:::-;-1:-1:-1;;;;;30745:15:0;;;;;;:9;:15;;;;;:20;;30764:1;;30745:15;:20;;30764:1;;30745:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30776:13:0;;;;;;:9;:13;;;;;:18;;30793:1;;30776:13;:18;;30793:1;;30776:18;:::i;:::-;;;;-1:-1:-1;;30805:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30805:21:0;-1:-1:-1;;;;;30805:21:0;;;;;;;;;30844:27;;30805:16;;30844:27;;;;;;;30263:616;;;:::o;37096:98::-;37154:7;37181:5;37185:1;37181;:5;:::i;36697:98::-;36755:7;36782:5;36786:1;36782;:5;:::i;3968:120::-;2980:7;;-1:-1:-1;;;2980:7:0;;;;3504:41;;;;-1:-1:-1;;;3504:41:0;;20513:2:1;3504:41:0;;;20495:21:1;20552:2;20532:18;;;20525:30;-1:-1:-1;;;20571:18:1;;;20564:50;20631:18;;3504:41:0;20311:344:1;3504:41:0;4027:7:::1;:15:::0;;-1:-1:-1;;;;4027:15:0::1;::::0;;4058:22:::1;2241:10:::0;4067:12:::1;4058:22;::::0;-1:-1:-1;;;;;3123:32:1;;;3105:51;;3093:2;3078:18;4058:22:0::1;;;;;;;3968:120::o:0;41691:173::-;41766:6;;;-1:-1:-1;;;;;41783:17:0;;;-1:-1:-1;;;;;;41783:17:0;;;;;;;41816:40;;41766:6;;;41783:17;41766:6;;41816:40;;41747:16;;41816:40;41736:128;41691:173;:::o;3709:118::-;2980:7;;-1:-1:-1;;;2980:7:0;;;;3234:9;3226:38;;;;-1:-1:-1;;;3226:38:0;;20862:2:1;3226:38:0;;;20844:21:1;20901:2;20881:18;;;20874:30;-1:-1:-1;;;20920:18:1;;;20913:46;20976:18;;3226:38:0;20660:340:1;3226:38:0;3769:7:::1;:14:::0;;-1:-1:-1;;;;3769:14:0::1;-1:-1:-1::0;;;3769:14:0::1;::::0;;3799:20:::1;3806:12;2241:10:::0;;2161:98;26199:353;26356:28;26366:4;26372:2;26376:7;26356:9;:28::i;:::-;26417:48;26440:4;26446:2;26450:7;26459:5;26417:22;:48::i;:::-;26395:149;;;;-1:-1:-1;;;26395:149:0;;;;;;;:::i;46754:108::-;46814:13;46847:7;46840:14;;;;;:::i;333:723::-;389:13;610:10;606:53;;-1:-1:-1;;637:10:0;;;;;;;;;;;;-1:-1:-1;;;637:10:0;;;;;333:723::o;606:53::-;684:5;669:12;725:78;732:9;;725:78;;758:8;;;;:::i;:::-;;-1:-1:-1;781:10:0;;-1:-1:-1;789:2:0;781:10;;:::i;:::-;;;725:78;;;813:19;845:6;835:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;835:17:0;;813:39;;863:154;870:10;;863:154;;897:11;907:1;897:11;;:::i;:::-;;-1:-1:-1;966:10:0;974:2;966:5;:10;:::i;:::-;953:24;;:2;:24;:::i;:::-;940:39;;923:6;930;923:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;923:56:0;;;;;;;;-1:-1:-1;994:11:0;1003:2;994:11;;:::i;:::-;;;863:154;;28298:321;28428:18;28434:2;28438:7;28428:5;:18::i;:::-;28479:54;28510:1;28514:2;28518:7;28527:5;28479:22;:54::i;:::-;28457:154;;;;-1:-1:-1;;;28457:154:0;;;;;;;:::i;31736:985::-;31891:4;-1:-1:-1;;;;;31912:13:0;;11479:20;11527:8;31908:806;;31966:178;;-1:-1:-1;;;31966:178:0;;-1:-1:-1;;;;;31966:36:0;;;;;:178;;2241:10;;32061:4;;32089:7;;32120:5;;31966:178;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31966:178:0;;;;;;;;-1:-1:-1;;31966:178:0;;;;;;;;;;;;:::i;:::-;;;31944:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32328:13:0;;32324:320;;32371:108;;-1:-1:-1;;;32371:108:0;;;;;;;:::i;32324:320::-;32594:6;32588:13;32579:6;32575:2;32571:15;32564:38;31944:715;-1:-1:-1;;;;;;32209:51:0;-1:-1:-1;;;32209:51:0;;-1:-1:-1;32202:58:0;;31908:806;-1:-1:-1;32698:4:0;31736:985;;;;;;:::o;28955:382::-;-1:-1:-1;;;;;29035:16:0;;29027:61;;;;-1:-1:-1;;;29027:61:0;;22491:2:1;29027:61:0;;;22473:21:1;;;22510:18;;;22503:30;22569:34;22549:18;;;22542:62;22621:18;;29027:61:0;22289:356:1;29027:61:0;26930:4;26954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26954:16:0;:30;29099:58;;;;-1:-1:-1;;;29099:58:0;;22852:2:1;29099:58:0;;;22834:21:1;22891:2;22871:18;;;22864:30;22930;22910:18;;;22903:58;22978:18;;29099:58:0;22650:352:1;29099:58:0;-1:-1:-1;;;;;29228:13:0;;;;;;:9;:13;;;;;:18;;29245:1;;29228:13;:18;;29245:1;;29228:18;:::i;:::-;;;;-1:-1:-1;;29257:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29257:21:0;-1:-1:-1;;;;;29257:21:0;;;;;;;;29296:33;;29257:16;;;29296:33;;29257:16;;29296:33;28955:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:127::-;653:10;648:3;644:20;641:1;634:31;684:4;681:1;674:15;708:4;705:1;698:15;724:275;795:2;789:9;860:2;841:13;;-1:-1:-1;;837:27:1;825:40;;895:18;880:34;;916:22;;;877:62;874:88;;;942:18;;:::i;:::-;978:2;971:22;724:275;;-1:-1:-1;724:275:1:o;1004:1014::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:52;;;1174:1;1171;1164:12;1126:52;1210:9;1197:23;1187:33;;1239:2;1292;1281:9;1277:18;1264:32;1315:18;1356:2;1348:6;1345:14;1342:34;;;1372:1;1369;1362:12;1342:34;1410:6;1399:9;1395:22;1385:32;;1455:7;1448:4;1444:2;1440:13;1436:27;1426:55;;1477:1;1474;1467:12;1426:55;1513:2;1500:16;1535:2;1531;1528:10;1525:36;;;1541:18;;:::i;:::-;1587:2;1584:1;1580:10;1570:20;;1610:28;1634:2;1630;1626:11;1610:28;:::i;:::-;1672:15;;;1742:11;;;1738:20;;;1703:12;;;;1770:19;;;1767:39;;;1802:1;1799;1792:12;1767:39;1826:11;;;;1846:142;1862:6;1857:3;1854:15;1846:142;;;1928:17;;1916:30;;1879:12;;;;1966;;;;1846:142;;;2007:5;1997:15;;;;;;;;1004:1014;;;;;:::o;2023:258::-;2095:1;2105:113;2119:6;2116:1;2113:13;2105:113;;;2195:11;;;2189:18;2176:11;;;2169:39;2141:2;2134:10;2105:113;;;2236:6;2233:1;2230:13;2227:48;;;-1:-1:-1;;2271:1:1;2253:16;;2246:27;2023:258::o;2286:::-;2328:3;2366:5;2360:12;2393:6;2388:3;2381:19;2409:63;2465:6;2458:4;2453:3;2449:14;2442:4;2435:5;2431:16;2409:63;:::i;:::-;2526:2;2505:15;-1:-1:-1;;2501:29:1;2492:39;;;;2533:4;2488:50;;2286:258;-1:-1:-1;;2286:258:1:o;2549:220::-;2698:2;2687:9;2680:21;2661:4;2718:45;2759:2;2748:9;2744:18;2736:6;2718:45;:::i;2774:180::-;2833:6;2886:2;2874:9;2865:7;2861:23;2857:32;2854:52;;;2902:1;2899;2892:12;2854:52;-1:-1:-1;2925:23:1;;2774:180;-1:-1:-1;2774:180:1:o;3167:173::-;3235:20;;-1:-1:-1;;;;;3284:31:1;;3274:42;;3264:70;;3330:1;3327;3320:12;3345:254;3413:6;3421;3474:2;3462:9;3453:7;3449:23;3445:32;3442:52;;;3490:1;3487;3480:12;3442:52;3513:29;3532:9;3513:29;:::i;:::-;3503:39;3589:2;3574:18;;;;3561:32;;-1:-1:-1;;;3345:254:1:o;3786:328::-;3863:6;3871;3879;3932:2;3920:9;3911:7;3907:23;3903:32;3900:52;;;3948:1;3945;3938:12;3900:52;3971:29;3990:9;3971:29;:::i;:::-;3961:39;;4019:38;4053:2;4042:9;4038:18;4019:38;:::i;:::-;4009:48;;4104:2;4093:9;4089:18;4076:32;4066:42;;3786:328;;;;;:::o;4119:407::-;4184:5;4218:18;4210:6;4207:30;4204:56;;;4240:18;;:::i;:::-;4278:57;4323:2;4302:15;;-1:-1:-1;;4298:29:1;4329:4;4294:40;4278:57;:::i;:::-;4269:66;;4358:6;4351:5;4344:21;4398:3;4389:6;4384:3;4380:16;4377:25;4374:45;;;4415:1;4412;4405:12;4374:45;4464:6;4459:3;4452:4;4445:5;4441:16;4428:43;4518:1;4511:4;4502:6;4495:5;4491:18;4487:29;4480:40;4119:407;;;;;:::o;4531:451::-;4600:6;4653:2;4641:9;4632:7;4628:23;4624:32;4621:52;;;4669:1;4666;4659:12;4621:52;4709:9;4696:23;4742:18;4734:6;4731:30;4728:50;;;4774:1;4771;4764:12;4728:50;4797:22;;4850:4;4842:13;;4838:27;-1:-1:-1;4828:55:1;;4879:1;4876;4869:12;4828:55;4902:74;4968:7;4963:2;4950:16;4945:2;4941;4937:11;4902:74;:::i;4987:186::-;5046:6;5099:2;5087:9;5078:7;5074:23;5070:32;5067:52;;;5115:1;5112;5105:12;5067:52;5138:29;5157:9;5138:29;:::i;5545:254::-;5613:6;5621;5674:2;5662:9;5653:7;5649:23;5645:32;5642:52;;;5690:1;5687;5680:12;5642:52;5726:9;5713:23;5703:33;;5755:38;5789:2;5778:9;5774:18;5755:38;:::i;:::-;5745:48;;5545:254;;;;;:::o;5804:160::-;5869:20;;5925:13;;5918:21;5908:32;;5898:60;;5954:1;5951;5944:12;5969:254;6034:6;6042;6095:2;6083:9;6074:7;6070:23;6066:32;6063:52;;;6111:1;6108;6101:12;6063:52;6134:29;6153:9;6134:29;:::i;:::-;6124:39;;6182:35;6213:2;6202:9;6198:18;6182:35;:::i;6228:180::-;6284:6;6337:2;6325:9;6316:7;6312:23;6308:32;6305:52;;;6353:1;6350;6343:12;6305:52;6376:26;6392:9;6376:26;:::i;6413:667::-;6508:6;6516;6524;6532;6585:3;6573:9;6564:7;6560:23;6556:33;6553:53;;;6602:1;6599;6592:12;6553:53;6625:29;6644:9;6625:29;:::i;:::-;6615:39;;6673:38;6707:2;6696:9;6692:18;6673:38;:::i;:::-;6663:48;;6758:2;6747:9;6743:18;6730:32;6720:42;;6813:2;6802:9;6798:18;6785:32;6840:18;6832:6;6829:30;6826:50;;;6872:1;6869;6862:12;6826:50;6895:22;;6948:4;6940:13;;6936:27;-1:-1:-1;6926:55:1;;6977:1;6974;6967:12;6926:55;7000:74;7066:7;7061:2;7048:16;7043:2;7039;7035:11;7000:74;:::i;:::-;6990:84;;;6413:667;;;;;;;:::o;7085:260::-;7153:6;7161;7214:2;7202:9;7193:7;7189:23;7185:32;7182:52;;;7230:1;7227;7220:12;7182:52;7253:29;7272:9;7253:29;:::i;:::-;7243:39;;7301:38;7335:2;7324:9;7320:18;7301:38;:::i;7350:340::-;7552:2;7534:21;;;7591:2;7571:18;;;7564:30;-1:-1:-1;;;7625:2:1;7610:18;;7603:46;7681:2;7666:18;;7350:340::o;7695:339::-;7897:2;7879:21;;;7936:2;7916:18;;;7909:30;-1:-1:-1;;;7970:2:1;7955:18;;7948:45;8025:2;8010:18;;7695:339::o;8039:127::-;8100:10;8095:3;8091:20;8088:1;8081:31;8131:4;8128:1;8121:15;8155:4;8152:1;8145:15;8171:128;8211:3;8242:1;8238:6;8235:1;8232:13;8229:39;;;8248:18;;:::i;:::-;-1:-1:-1;8284:9:1;;8171:128::o;8304:337::-;8506:2;8488:21;;;8545:2;8525:18;;;8518:30;-1:-1:-1;;;8579:2:1;8564:18;;8557:43;8632:2;8617:18;;8304:337::o;8646:342::-;8848:2;8830:21;;;8887:2;8867:18;;;8860:30;-1:-1:-1;;;8921:2:1;8906:18;;8899:48;8979:2;8964:18;;8646:342::o;8993:343::-;9195:2;9177:21;;;9234:2;9214:18;;;9207:30;-1:-1:-1;;;9268:2:1;9253:18;;9246:49;9327:2;9312:18;;8993:343::o;9341:168::-;9381:7;9447:1;9443;9439:6;9435:14;9432:1;9429:21;9424:1;9417:9;9410:17;9406:45;9403:71;;;9454:18;;:::i;:::-;-1:-1:-1;9494:9:1;;9341:168::o;9514:135::-;9553:3;-1:-1:-1;;9574:17:1;;9571:43;;;9594:18;;:::i;:::-;-1:-1:-1;9641:1:1;9630:13;;9514:135::o;9654:380::-;9733:1;9729:12;;;;9776;;;9797:61;;9851:4;9843:6;9839:17;9829:27;;9797:61;9904:2;9896:6;9893:14;9873:18;9870:38;9867:161;;;9950:10;9945:3;9941:20;9938:1;9931:31;9985:4;9982:1;9975:15;10013:4;10010:1;10003:15;9867:161;;9654:380;;;:::o;11279:413::-;11481:2;11463:21;;;11520:2;11500:18;;;11493:30;11559:34;11554:2;11539:18;;11532:62;-1:-1:-1;;;11625:2:1;11610:18;;11603:47;11682:3;11667:19;;11279:413::o;11697:356::-;11899:2;11881:21;;;11918:18;;;11911:30;11977:34;11972:2;11957:18;;11950:62;12044:2;12029:18;;11697:356::o;12400:127::-;12461:10;12456:3;12452:20;12449:1;12442:31;12492:4;12489:1;12482:15;12516:4;12513:1;12506:15;15915:1527;16139:3;16177:6;16171:13;16203:4;16216:51;16260:6;16255:3;16250:2;16242:6;16238:15;16216:51;:::i;:::-;16330:13;;16289:16;;;;16352:55;16330:13;16289:16;16374:15;;;16352:55;:::i;:::-;16496:13;;16429:20;;;16469:1;;16556;16578:18;;;;16631;;;;16658:93;;16736:4;16726:8;16722:19;16710:31;;16658:93;16799:2;16789:8;16786:16;16766:18;16763:40;16760:167;;;-1:-1:-1;;;16826:33:1;;16882:4;16879:1;16872:15;16912:4;16833:3;16900:17;16760:167;16943:18;16970:110;;;;17094:1;17089:328;;;;16936:481;;16970:110;-1:-1:-1;;17005:24:1;;16991:39;;17050:20;;;;-1:-1:-1;16970:110:1;;17089:328;15862:1;15855:14;;;15899:4;15886:18;;17184:1;17198:169;17212:8;17209:1;17206:15;17198:169;;;17294:14;;17279:13;;;17272:37;17337:16;;;;17229:10;;17198:169;;;17202:3;;17398:8;17391:5;17387:20;17380:27;;16936:481;-1:-1:-1;17433:3:1;;15915:1527;-1:-1:-1;;;;;;;;;;;15915:1527:1:o;19924:125::-;19964:4;19992:1;19989;19986:8;19983:34;;;19997:18;;:::i;:::-;-1:-1:-1;20034:9:1;;19924:125::o;20054:127::-;20115:10;20110:3;20106:20;20103:1;20096:31;20146:4;20143:1;20136:15;20170:4;20167:1;20160:15;20186:120;20226:1;20252;20242:35;;20257:18;;:::i;:::-;-1:-1:-1;20291:9:1;;20186:120::o;21005:414::-;21207:2;21189:21;;;21246:2;21226:18;;;21219:30;21285:34;21280:2;21265:18;;21258:62;-1:-1:-1;;;21351:2:1;21336:18;;21329:48;21409:3;21394:19;;21005:414::o;21424:112::-;21456:1;21482;21472:35;;21487:18;;:::i;:::-;-1:-1:-1;21521:9:1;;21424:112::o;21541:489::-;-1:-1:-1;;;;;21810:15:1;;;21792:34;;21862:15;;21857:2;21842:18;;21835:43;21909:2;21894:18;;21887:34;;;21957:3;21952:2;21937:18;;21930:31;;;21735:4;;21978:46;;22004:19;;21996:6;21978:46;:::i;:::-;21970:54;21541:489;-1:-1:-1;;;;;;21541:489:1:o;22035:249::-;22104:6;22157:2;22145:9;22136:7;22132:23;22128:32;22125:52;;;22173:1;22170;22163:12;22125:52;22205:9;22199:16;22224:30;22248:5;22224:30;:::i

Swarm Source

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