ETH Price: $2,433.84 (+4.44%)

Token

Official Siargao Surfer NFT (SS)
 

Overview

Max Total Supply

93 SS

Holders

36

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Official Siargao Villa NFT: Deployer
Balance
12 SS
0xCfB2FF7Ae497Ae063DC8d3338ed664c0FdF898F7
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:
SIARGIOSURFERCONTRACT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-27
*/

// SPDX-License-Identifier: MIT


/**
 *Smart Contract By NFT_Proseller
*/



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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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


pragma solidity >=0.7.0 <0.9.0;

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

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

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

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

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

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

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

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

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

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

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

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {

    // This will payout the owner 100% of the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600c9062000026908262000290565b5067016345785d8a0000600e556103e8600f55600560108190556011556012805462ffffff191690553480156200005c57600080fd5b5060405162002f3138038062002f318339810160408190526200007f916200040b565b838360006200008f838262000290565b5060016200009e828262000290565b505050620000bb620000b5620000db60201b60201c565b620000df565b620000c68262000131565b620000d18162000192565b50505050620004c4565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001805760405162461bcd60e51b8152602060048201819052602482015260008051602062002f1183398151915260448201526064015b60405180910390fd5b600b6200018e828262000290565b5050565b600a546001600160a01b03163314620001dd5760405162461bcd60e51b8152602060048201819052602482015260008051602062002f11833981519152604482015260640162000177565b600d6200018e828262000290565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200021657607f821691505b6020821081036200023757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028b57600081815260208120601f850160051c81016020861015620002665750805b601f850160051c820191505b81811015620002875782815560010162000272565b5050505b505050565b81516001600160401b03811115620002ac57620002ac620001eb565b620002c481620002bd845462000201565b846200023d565b602080601f831160018114620002fc5760008415620002e35750858301515b600019600386901b1c1916600185901b17855562000287565b600085815260208120601f198616915b828110156200032d578886015182559484019460019091019084016200030c565b50858210156200034c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200036e57600080fd5b81516001600160401b03808211156200038b576200038b620001eb565b604051601f8301601f19908116603f01168101908282118183101715620003b657620003b6620001eb565b81604052838152602092508683858801011115620003d357600080fd5b600091505b83821015620003f75785820183015181830184015290820190620003d8565b600093810190920192909252949350505050565b600080600080608085870312156200042257600080fd5b84516001600160401b03808211156200043a57600080fd5b62000448888389016200035c565b955060208701519150808211156200045f57600080fd5b6200046d888389016200035c565b945060408701519150808211156200048457600080fd5b62000492888389016200035c565b93506060870151915080821115620004a957600080fd5b50620004b8878288016200035c565b91505092959194509250565b612a3d80620004d46000396000f3fe6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b5061029761029236600461224f565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612281565b610821565b005b3480156102da57600080fd5b506102e3610867565b6040516102a391906122ec565b3480156102fc57600080fd5b5061031061030b3660046122ff565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e361098e565b34801561034957600080fd5b506102cc61035836600461232f565b610a1c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b1366004612359565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f4366004612374565b610b31565b34801561040557600080fd5b5061037361041436600461232f565b610b62565b34801561042557600080fd5b50610297610434366004612359565b610bf8565b34801561044557600080fd5b506102cc610454366004612281565b610c61565b6102cc610ca7565b34801561046d57600080fd5b506102cc61047c366004612374565b610d45565b34801561048d57600080fd5b506104a161049c366004612359565b610d60565b6040516102a391906123b0565b3480156104ba57600080fd5b506102cc6104c93660046122ff565b610e02565b3480156104da57600080fd5b506103736104e93660046122ff565b610e31565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc610528366004612480565b610ec4565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b506103106105623660046122ff565b610efe565b34801561057357600080fd5b506102e3610f75565b34801561058857600080fd5b50610373610597366004612359565b610f82565b3480156105a857600080fd5b506102cc611009565b3480156105bd57600080fd5b506102cc6105cc3660046122ff565b61103f565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e361106e565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc6106323660046122ff565b61107d565b34801561064357600080fd5b506102cc6106523660046124c9565b611363565b34801561066357600080fd5b506102cc611427565b34801561067857600080fd5b506102cc6106873660046124fc565b611462565b34801561069857600080fd5b506103106106a73660046122ff565b61149a565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e36114c4565b3480156106e357600080fd5b506102e36106f23660046122ff565b6114d1565b34801561070357600080fd5b506102cc6107123660046122ff565b611655565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc610748366004612480565b611684565b34801561075957600080fd5b50610297610768366004612578565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b13660046125a2565b6116ba565b3480156107c257600080fd5b506102cc6107d1366004612480565b6116fc565b3480156107e257600080fd5b506102cc6107f1366004612359565b611732565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b826117ca565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b90612617565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108769061264c565b80601f01602080910402602001604051908101604052809291908181526020018280546108a29061264c565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d805461099b9061264c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c79061264c565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b505050505081565b6000610a2782610efe565b9050806001600160a01b0316836001600160a01b031603610a945760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610ab05750610ab08133610768565b610b225760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b610b2c838361181a565b505050565b610b3b3382611888565b610b575760405162461bcd60e51b815260040161084b90612686565b610b2c83838361197f565b6000610b6d83610f82565b8210610bcf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c5857826001600160a01b031660138281548110610c2357610c236126d7565b6000918252602090912001546001600160a01b031603610c465750600192915050565b80610c5081612703565b915050610bfc565b50600092915050565b600a546001600160a01b03163314610c8b5760405162461bcd60e51b815260040161084b90612617565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610cd15760405162461bcd60e51b815260040161084b90612617565b6000610ce5600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d2f576040519150601f19603f3d011682016040523d82523d6000602084013e610d34565b606091505b5050905080610d4257600080fd5b50565b610b2c83838360405180602001604052806000815250611462565b60606000610d6d83610f82565b905060008167ffffffffffffffff811115610d8a57610d8a6123f4565b604051908082528060200260200182016040528015610db3578160200160208202803683370190505b50905060005b82811015610dfa57610dcb8582610b62565b828281518110610ddd57610ddd6126d7565b602090810291909101015280610df281612703565b915050610db9565b509392505050565b600a546001600160a01b03163314610e2c5760405162461bcd60e51b815260040161084b90612617565b600e55565b6000610e3c60085490565b8210610e9f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610eb257610eb26126d7565b90600052602060002001549050919050565b600a546001600160a01b03163314610eee5760405162461bcd60e51b815260040161084b90612617565b600b610efa828261276a565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b805461099b9061264c565b60006001600160a01b038216610fed5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110335760405162461bcd60e51b815260040161084b90612617565b61103d6000611b2a565b565b600a546001600160a01b031633146110695760405162461bcd60e51b815260040161084b90612617565b601055565b6060600180546108769061264c565b60125460ff16156110c95760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b60006110d460085490565b9050600082116111265760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111845760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f54611191838361282a565b11156111d85760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146113135760125462010000900460ff1615156001036112c15761120833610bf8565b6112545760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b33600090815260146020526040902054601154611271848361282a565b11156112bf5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e546112cf919061283d565b3410156113135760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161084b565b60015b828111610b2c5733600090815260146020526040812080549161133883612703565b9091555061135190503361134c838561282a565b611b7c565b8061135b81612703565b915050611316565b336001600160a01b038316036113bb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114515760405162461bcd60e51b815260040161084b90612617565b6012805461ff001916610100179055565b61146c3383611888565b6114885760405162461bcd60e51b815260040161084b90612686565b61149484848484611b96565b50505050565b601381815481106114aa57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461099b9061264c565b6000818152600260205260409020546060906001600160a01b03166115505760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff1615156000036115f657600d80546115719061264c565b80601f016020809104026020016040519081016040528092919081815260200182805461159d9061264c565b80156115ea5780601f106115bf576101008083540402835291602001916115ea565b820191906000526020600020905b8154815290600101906020018083116115cd57829003601f168201915b50505050509050919050565b6000611600611bc9565b90506000815111611620576040518060200160405280600081525061164e565b8061162a84611bd8565b600c60405160200161163e93929190612854565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461167f5760405162461bcd60e51b815260040161084b90612617565b601155565b600a546001600160a01b031633146116ae5760405162461bcd60e51b815260040161084b90612617565b600c610efa828261276a565b600a546001600160a01b031633146116e45760405162461bcd60e51b815260040161084b90612617565b6116f0601360006121a3565b610b2c601383836121c1565b600a546001600160a01b031633146117265760405162461bcd60e51b815260040161084b90612617565b600d610efa828261276a565b600a546001600160a01b0316331461175c5760405162461bcd60e51b815260040161084b90612617565b6001600160a01b0381166117c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610d4281611b2a565b60006001600160e01b031982166380ac58cd60e01b14806117fb57506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061184f82610efe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b600061190c83610efe565b9050806001600160a01b0316846001600160a01b031614806119475750836001600160a01b031661193c846108f9565b6001600160a01b0316145b8061197757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661199282610efe565b6001600160a01b0316146119fa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611a5c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611a67838383611cd9565b611a7260008261181a565b6001600160a01b0383166000908152600360205260408120805460019290611a9b9084906128f4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ac990849061282a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610efa828260405180602001604052806000815250611d91565b611ba184848461197f565b611bad84848484611dc4565b6114945760405162461bcd60e51b815260040161084b90612907565b6060600b80546108769061264c565b606081600003611bff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c295780611c1381612703565b9150611c229050600a8361296f565b9150611c03565b60008167ffffffffffffffff811115611c4457611c446123f4565b6040519080825280601f01601f191660200182016040528015611c6e576020820181803683370190505b5090505b841561197757611c836001836128f4565b9150611c90600a86612983565b611c9b90603061282a565b60f81b818381518110611cb057611cb06126d7565b60200101906001600160f81b031916908160001a905350611cd2600a8661296f565b9450611c72565b6001600160a01b038316611d3457611d2f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d57565b816001600160a01b0316836001600160a01b031614611d5757611d578382611ec5565b6001600160a01b038216611d6e57610b2c81611f62565b826001600160a01b0316826001600160a01b031614610b2c57610b2c8282612011565b611d9b8383612055565b611da86000848484611dc4565b610b2c5760405162461bcd60e51b815260040161084b90612907565b60006001600160a01b0384163b15611eba57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e08903390899088908890600401612997565b6020604051808303816000875af1925050508015611e43575060408051601f3d908101601f19168201909252611e40918101906129d4565b60015b611ea0573d808015611e71576040519150601f19603f3d011682016040523d82523d6000602084013e611e76565b606091505b508051600003611e985760405162461bcd60e51b815260040161084b90612907565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611977565b506001949350505050565b60006001611ed284610f82565b611edc91906128f4565b600083815260076020526040902054909150808214611f2f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f74906001906128f4565b60008381526009602052604081205460088054939450909284908110611f9c57611f9c6126d7565b906000526020600020015490508060088381548110611fbd57611fbd6126d7565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ff557611ff56129f1565b6001900381819060005260206000200160009055905550505050565b600061201c83610f82565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120ab5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156121105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b61211c60008383611cd9565b6001600160a01b038216600090815260036020526040812080546001929061214590849061282a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610d429190612224565b828054828255906000526020600020908101928215612214579160200282015b828111156122145781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121e1565b50612220929150612224565b5090565b5b808211156122205760008155600101612225565b6001600160e01b031981168114610d4257600080fd5b60006020828403121561226157600080fd5b813561164e81612239565b8035801515811461227c57600080fd5b919050565b60006020828403121561229357600080fd5b61164e8261226c565b60005b838110156122b757818101518382015260200161229f565b50506000910152565b600081518084526122d881602086016020860161229c565b601f01601f19169290920160200192915050565b60208152600061164e60208301846122c0565b60006020828403121561231157600080fd5b5035919050565b80356001600160a01b038116811461227c57600080fd5b6000806040838503121561234257600080fd5b61234b83612318565b946020939093013593505050565b60006020828403121561236b57600080fd5b61164e82612318565b60008060006060848603121561238957600080fd5b61239284612318565b92506123a060208501612318565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156123e8578351835292840192918401916001016123cc565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612425576124256123f4565b604051601f8501601f19908116603f0116810190828211818310171561244d5761244d6123f4565b8160405280935085815286868601111561246657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561249257600080fd5b813567ffffffffffffffff8111156124a957600080fd5b8201601f810184136124ba57600080fd5b6119778482356020840161240a565b600080604083850312156124dc57600080fd5b6124e583612318565b91506124f36020840161226c565b90509250929050565b6000806000806080858703121561251257600080fd5b61251b85612318565b935061252960208601612318565b925060408501359150606085013567ffffffffffffffff81111561254c57600080fd5b8501601f8101871361255d57600080fd5b61256c8782356020840161240a565b91505092959194509250565b6000806040838503121561258b57600080fd5b61259483612318565b91506124f360208401612318565b600080602083850312156125b557600080fd5b823567ffffffffffffffff808211156125cd57600080fd5b818501915085601f8301126125e157600080fd5b8135818111156125f057600080fd5b8660208260051b850101111561260557600080fd5b60209290920196919550909350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061266057607f821691505b60208210810361268057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612715576127156126ed565b5060010190565b601f821115610b2c57600081815260208120601f850160051c810160208610156127435750805b601f850160051c820191505b818110156127625782815560010161274f565b505050505050565b815167ffffffffffffffff811115612784576127846123f4565b61279881612792845461264c565b8461271c565b602080601f8311600181146127cd57600084156127b55750858301515b600019600386901b1c1916600185901b178555612762565b600085815260208120601f198616915b828110156127fc578886015182559484019460019091019084016127dd565b508582101561281a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561081b5761081b6126ed565b808202811582820484141761081b5761081b6126ed565b6000845160206128678285838a0161229c565b85519184019161287a8184848a0161229c565b855492019160009061288b8161264c565b600182811680156128a357600181146128b8576128e4565b60ff19841687528215158302870194506128e4565b896000528560002060005b848110156128dc578154898201529083019087016128c3565b505082870194505b50929a9950505050505050505050565b8181038181111561081b5761081b6126ed565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261297e5761297e612959565b500490565b60008261299257612992612959565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ca908301846122c0565b9695505050505050565b6000602082840312156129e657600080fd5b815161164e81612239565b634e487b7160e01b600052603160045260246000fdfea264697066735822122005ef255f0a1d051120e7f84fe828e8db2798d183dc89248d5f920e7f8f6a5e4f64736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001b4f6666696369616c205369617267616f20537572666572204e4654000000000000000000000000000000000000000000000000000000000000000000000000025353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f7369617267616f6e66742e696f2f6e66746d657461322f00000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f7369617267616f6e66742e696f2f6e66746d657461322f73616d706c652e6a736f6e00000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636352211e1161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2c4ce1e146107b6578063f2fde38b146107d657600080fd5b8063b88d4fde1461066c578063ba4e5c491461068c578063ba7d2c76146106ac578063c6682862146106c2578063c87b56dd146106d7578063d0eb26b0146106f757600080fd5b80638da5cb5b116101135780638da5cb5b146105d157806395d89b41146105ef5780639c70b51214610604578063a0712d6814610624578063a22cb46514610637578063a475b5dd1461065757600080fd5b80636352211e146105475780636c0360eb1461056757806370a082311461057c578063715018a61461059c5780637f00c7a6146105b157600080fd5b80632f745c59116101e8578063438b6300116101ac578063438b63001461048157806344a0d68a146104ae5780634f6ccce7146104ce57806351830227146104ee57806355f804b31461050d5780635c975abb1461052d57600080fd5b80632f745c59146103f95780633af32abf146104195780633c952764146104395780633ccfd60b1461045957806342842e0e1461046157600080fd5b8063095ea7b31161023a578063095ea7b31461033d57806313faede61461035d57806318160ddd1461038157806318cae26914610396578063239c70ae146103c357806323b872dd146103d957600080fd5b806301ffc9a71461027757806302329a29146102ac57806306fdde03146102ce578063081812fc146102f0578063081c8c4414610328575b600080fd5b34801561028357600080fd5b5061029761029236600461224f565b6107f6565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004612281565b610821565b005b3480156102da57600080fd5b506102e3610867565b6040516102a391906122ec565b3480156102fc57600080fd5b5061031061030b3660046122ff565b6108f9565b6040516001600160a01b0390911681526020016102a3565b34801561033457600080fd5b506102e361098e565b34801561034957600080fd5b506102cc61035836600461232f565b610a1c565b34801561036957600080fd5b50610373600e5481565b6040519081526020016102a3565b34801561038d57600080fd5b50600854610373565b3480156103a257600080fd5b506103736103b1366004612359565b60146020526000908152604090205481565b3480156103cf57600080fd5b5061037360105481565b3480156103e557600080fd5b506102cc6103f4366004612374565b610b31565b34801561040557600080fd5b5061037361041436600461232f565b610b62565b34801561042557600080fd5b50610297610434366004612359565b610bf8565b34801561044557600080fd5b506102cc610454366004612281565b610c61565b6102cc610ca7565b34801561046d57600080fd5b506102cc61047c366004612374565b610d45565b34801561048d57600080fd5b506104a161049c366004612359565b610d60565b6040516102a391906123b0565b3480156104ba57600080fd5b506102cc6104c93660046122ff565b610e02565b3480156104da57600080fd5b506103736104e93660046122ff565b610e31565b3480156104fa57600080fd5b5060125461029790610100900460ff1681565b34801561051957600080fd5b506102cc610528366004612480565b610ec4565b34801561053957600080fd5b506012546102979060ff1681565b34801561055357600080fd5b506103106105623660046122ff565b610efe565b34801561057357600080fd5b506102e3610f75565b34801561058857600080fd5b50610373610597366004612359565b610f82565b3480156105a857600080fd5b506102cc611009565b3480156105bd57600080fd5b506102cc6105cc3660046122ff565b61103f565b3480156105dd57600080fd5b50600a546001600160a01b0316610310565b3480156105fb57600080fd5b506102e361106e565b34801561061057600080fd5b506012546102979062010000900460ff1681565b6102cc6106323660046122ff565b61107d565b34801561064357600080fd5b506102cc6106523660046124c9565b611363565b34801561066357600080fd5b506102cc611427565b34801561067857600080fd5b506102cc6106873660046124fc565b611462565b34801561069857600080fd5b506103106106a73660046122ff565b61149a565b3480156106b857600080fd5b5061037360115481565b3480156106ce57600080fd5b506102e36114c4565b3480156106e357600080fd5b506102e36106f23660046122ff565b6114d1565b34801561070357600080fd5b506102cc6107123660046122ff565b611655565b34801561072357600080fd5b50610373600f5481565b34801561073957600080fd5b506102cc610748366004612480565b611684565b34801561075957600080fd5b50610297610768366004612578565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102cc6107b13660046125a2565b6116ba565b3480156107c257600080fd5b506102cc6107d1366004612480565b6116fc565b3480156107e257600080fd5b506102cc6107f1366004612359565b611732565b60006001600160e01b0319821663780e9d6360e01b148061081b575061081b826117ca565b92915050565b600a546001600160a01b031633146108545760405162461bcd60e51b815260040161084b90612617565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546108769061264c565b80601f01602080910402602001604051908101604052809291908181526020018280546108a29061264c565b80156108ef5780601f106108c4576101008083540402835291602001916108ef565b820191906000526020600020905b8154815290600101906020018083116108d257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109725760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b506000908152600460205260409020546001600160a01b031690565b600d805461099b9061264c565b80601f01602080910402602001604051908101604052809291908181526020018280546109c79061264c565b8015610a145780601f106109e957610100808354040283529160200191610a14565b820191906000526020600020905b8154815290600101906020018083116109f757829003601f168201915b505050505081565b6000610a2782610efe565b9050806001600160a01b0316836001600160a01b031603610a945760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161084b565b336001600160a01b0382161480610ab05750610ab08133610768565b610b225760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161084b565b610b2c838361181a565b505050565b610b3b3382611888565b610b575760405162461bcd60e51b815260040161084b90612686565b610b2c83838361197f565b6000610b6d83610f82565b8210610bcf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161084b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610c5857826001600160a01b031660138281548110610c2357610c236126d7565b6000918252602090912001546001600160a01b031603610c465750600192915050565b80610c5081612703565b915050610bfc565b50600092915050565b600a546001600160a01b03163314610c8b5760405162461bcd60e51b815260040161084b90612617565b60128054911515620100000262ff000019909216919091179055565b600a546001600160a01b03163314610cd15760405162461bcd60e51b815260040161084b90612617565b6000610ce5600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d2f576040519150601f19603f3d011682016040523d82523d6000602084013e610d34565b606091505b5050905080610d4257600080fd5b50565b610b2c83838360405180602001604052806000815250611462565b60606000610d6d83610f82565b905060008167ffffffffffffffff811115610d8a57610d8a6123f4565b604051908082528060200260200182016040528015610db3578160200160208202803683370190505b50905060005b82811015610dfa57610dcb8582610b62565b828281518110610ddd57610ddd6126d7565b602090810291909101015280610df281612703565b915050610db9565b509392505050565b600a546001600160a01b03163314610e2c5760405162461bcd60e51b815260040161084b90612617565b600e55565b6000610e3c60085490565b8210610e9f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161084b565b60088281548110610eb257610eb26126d7565b90600052602060002001549050919050565b600a546001600160a01b03163314610eee5760405162461bcd60e51b815260040161084b90612617565b600b610efa828261276a565b5050565b6000818152600260205260408120546001600160a01b03168061081b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161084b565b600b805461099b9061264c565b60006001600160a01b038216610fed5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161084b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110335760405162461bcd60e51b815260040161084b90612617565b61103d6000611b2a565b565b600a546001600160a01b031633146110695760405162461bcd60e51b815260040161084b90612617565b601055565b6060600180546108769061264c565b60125460ff16156110c95760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161084b565b60006110d460085490565b9050600082116111265760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161084b565b6010548211156111845760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161084b565b600f54611191838361282a565b11156111d85760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161084b565b600a546001600160a01b031633146113135760125462010000900460ff1615156001036112c15761120833610bf8565b6112545760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161084b565b33600090815260146020526040902054601154611271848361282a565b11156112bf5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161084b565b505b81600e546112cf919061283d565b3410156113135760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161084b565b60015b828111610b2c5733600090815260146020526040812080549161133883612703565b9091555061135190503361134c838561282a565b611b7c565b8061135b81612703565b915050611316565b336001600160a01b038316036113bb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161084b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146114515760405162461bcd60e51b815260040161084b90612617565b6012805461ff001916610100179055565b61146c3383611888565b6114885760405162461bcd60e51b815260040161084b90612686565b61149484848484611b96565b50505050565b601381815481106114aa57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c805461099b9061264c565b6000818152600260205260409020546060906001600160a01b03166115505760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161084b565b601254610100900460ff1615156000036115f657600d80546115719061264c565b80601f016020809104026020016040519081016040528092919081815260200182805461159d9061264c565b80156115ea5780601f106115bf576101008083540402835291602001916115ea565b820191906000526020600020905b8154815290600101906020018083116115cd57829003601f168201915b50505050509050919050565b6000611600611bc9565b90506000815111611620576040518060200160405280600081525061164e565b8061162a84611bd8565b600c60405160200161163e93929190612854565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461167f5760405162461bcd60e51b815260040161084b90612617565b601155565b600a546001600160a01b031633146116ae5760405162461bcd60e51b815260040161084b90612617565b600c610efa828261276a565b600a546001600160a01b031633146116e45760405162461bcd60e51b815260040161084b90612617565b6116f0601360006121a3565b610b2c601383836121c1565b600a546001600160a01b031633146117265760405162461bcd60e51b815260040161084b90612617565b600d610efa828261276a565b600a546001600160a01b0316331461175c5760405162461bcd60e51b815260040161084b90612617565b6001600160a01b0381166117c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161084b565b610d4281611b2a565b60006001600160e01b031982166380ac58cd60e01b14806117fb57506001600160e01b03198216635b5e139f60e01b145b8061081b57506301ffc9a760e01b6001600160e01b031983161461081b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061184f82610efe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161084b565b600061190c83610efe565b9050806001600160a01b0316846001600160a01b031614806119475750836001600160a01b031661193c846108f9565b6001600160a01b0316145b8061197757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661199282610efe565b6001600160a01b0316146119fa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161084b565b6001600160a01b038216611a5c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161084b565b611a67838383611cd9565b611a7260008261181a565b6001600160a01b0383166000908152600360205260408120805460019290611a9b9084906128f4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ac990849061282a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610efa828260405180602001604052806000815250611d91565b611ba184848461197f565b611bad84848484611dc4565b6114945760405162461bcd60e51b815260040161084b90612907565b6060600b80546108769061264c565b606081600003611bff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c295780611c1381612703565b9150611c229050600a8361296f565b9150611c03565b60008167ffffffffffffffff811115611c4457611c446123f4565b6040519080825280601f01601f191660200182016040528015611c6e576020820181803683370190505b5090505b841561197757611c836001836128f4565b9150611c90600a86612983565b611c9b90603061282a565b60f81b818381518110611cb057611cb06126d7565b60200101906001600160f81b031916908160001a905350611cd2600a8661296f565b9450611c72565b6001600160a01b038316611d3457611d2f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d57565b816001600160a01b0316836001600160a01b031614611d5757611d578382611ec5565b6001600160a01b038216611d6e57610b2c81611f62565b826001600160a01b0316826001600160a01b031614610b2c57610b2c8282612011565b611d9b8383612055565b611da86000848484611dc4565b610b2c5760405162461bcd60e51b815260040161084b90612907565b60006001600160a01b0384163b15611eba57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e08903390899088908890600401612997565b6020604051808303816000875af1925050508015611e43575060408051601f3d908101601f19168201909252611e40918101906129d4565b60015b611ea0573d808015611e71576040519150601f19603f3d011682016040523d82523d6000602084013e611e76565b606091505b508051600003611e985760405162461bcd60e51b815260040161084b90612907565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611977565b506001949350505050565b60006001611ed284610f82565b611edc91906128f4565b600083815260076020526040902054909150808214611f2f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611f74906001906128f4565b60008381526009602052604081205460088054939450909284908110611f9c57611f9c6126d7565b906000526020600020015490508060088381548110611fbd57611fbd6126d7565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ff557611ff56129f1565b6001900381819060005260206000200160009055905550505050565b600061201c83610f82565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120ab5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161084b565b6000818152600260205260409020546001600160a01b0316156121105760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161084b565b61211c60008383611cd9565b6001600160a01b038216600090815260036020526040812080546001929061214590849061282a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610d429190612224565b828054828255906000526020600020908101928215612214579160200282015b828111156122145781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906121e1565b50612220929150612224565b5090565b5b808211156122205760008155600101612225565b6001600160e01b031981168114610d4257600080fd5b60006020828403121561226157600080fd5b813561164e81612239565b8035801515811461227c57600080fd5b919050565b60006020828403121561229357600080fd5b61164e8261226c565b60005b838110156122b757818101518382015260200161229f565b50506000910152565b600081518084526122d881602086016020860161229c565b601f01601f19169290920160200192915050565b60208152600061164e60208301846122c0565b60006020828403121561231157600080fd5b5035919050565b80356001600160a01b038116811461227c57600080fd5b6000806040838503121561234257600080fd5b61234b83612318565b946020939093013593505050565b60006020828403121561236b57600080fd5b61164e82612318565b60008060006060848603121561238957600080fd5b61239284612318565b92506123a060208501612318565b9150604084013590509250925092565b6020808252825182820181905260009190848201906040850190845b818110156123e8578351835292840192918401916001016123cc565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612425576124256123f4565b604051601f8501601f19908116603f0116810190828211818310171561244d5761244d6123f4565b8160405280935085815286868601111561246657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561249257600080fd5b813567ffffffffffffffff8111156124a957600080fd5b8201601f810184136124ba57600080fd5b6119778482356020840161240a565b600080604083850312156124dc57600080fd5b6124e583612318565b91506124f36020840161226c565b90509250929050565b6000806000806080858703121561251257600080fd5b61251b85612318565b935061252960208601612318565b925060408501359150606085013567ffffffffffffffff81111561254c57600080fd5b8501601f8101871361255d57600080fd5b61256c8782356020840161240a565b91505092959194509250565b6000806040838503121561258b57600080fd5b61259483612318565b91506124f360208401612318565b600080602083850312156125b557600080fd5b823567ffffffffffffffff808211156125cd57600080fd5b818501915085601f8301126125e157600080fd5b8135818111156125f057600080fd5b8660208260051b850101111561260557600080fd5b60209290920196919550909350505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061266057607f821691505b60208210810361268057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612715576127156126ed565b5060010190565b601f821115610b2c57600081815260208120601f850160051c810160208610156127435750805b601f850160051c820191505b818110156127625782815560010161274f565b505050505050565b815167ffffffffffffffff811115612784576127846123f4565b61279881612792845461264c565b8461271c565b602080601f8311600181146127cd57600084156127b55750858301515b600019600386901b1c1916600185901b178555612762565b600085815260208120601f198616915b828110156127fc578886015182559484019460019091019084016127dd565b508582101561281a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561081b5761081b6126ed565b808202811582820484141761081b5761081b6126ed565b6000845160206128678285838a0161229c565b85519184019161287a8184848a0161229c565b855492019160009061288b8161264c565b600182811680156128a357600181146128b8576128e4565b60ff19841687528215158302870194506128e4565b896000528560002060005b848110156128dc578154898201529083019087016128c3565b505082870194505b50929a9950505050505050505050565b8181038181111561081b5761081b6126ed565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261297e5761297e612959565b500490565b60008261299257612992612959565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129ca908301846122c0565b9695505050505050565b6000602082840312156129e657600080fd5b815161164e81612239565b634e487b7160e01b600052603160045260246000fdfea264697066735822122005ef255f0a1d051120e7f84fe828e8db2798d183dc89248d5f920e7f8f6a5e4f64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000001b4f6666696369616c205369617267616f20537572666572204e4654000000000000000000000000000000000000000000000000000000000000000000000000025353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f7369617267616f6e66742e696f2f6e66746d657461322f00000000000000000000000000000000000000000000000000000000000000002a68747470733a2f2f7369617267616f6e66742e696f2f6e66746d657461322f73616d706c652e6a736f6e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Official Siargao Surfer NFT
Arg [1] : _symbol (string): SS
Arg [2] : _initBaseURI (string): https://siargaonft.io/nftmeta2/
Arg [3] : _initNotRevealedUri (string): https://siargaonft.io/nftmeta2/sample.json

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [5] : 4f6666696369616c205369617267616f20537572666572204e46540000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [7] : 5353000000000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [9] : 68747470733a2f2f7369617267616f6e66742e696f2f6e66746d657461322f00
Arg [10] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [11] : 68747470733a2f2f7369617267616f6e66742e696f2f6e66746d657461322f73
Arg [12] : 616d706c652e6a736f6e00000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43169:4561:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34714:224;;;;;;;;;;-1:-1:-1;34714:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34714:224:0;;;;;;;;46927:73;;;;;;;;;;-1:-1:-1;46927:73:0;;;;;:::i;:::-;;:::i;:::-;;22606:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24165:221::-;;;;;;;;;;-1:-1:-1;24165:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2047:32:1;;;2029:51;;2017:2;2002:18;24165:221:0;1883:203:1;43334:28:0;;;;;;;;;;;;;:::i;23688:411::-;;;;;;;;;;-1:-1:-1;23688:411:0;;;;;:::i;:::-;;:::i;43367:31::-;;;;;;;;;;;;;;;;;;;2674:25:1;;;2662:2;2647:18;43367:31:0;2528:177:1;35354:113:0;;;;;;;;;;-1:-1:-1;35442:10:0;:17;35354:113;;43664:55;;;;;;;;;;-1:-1:-1;43664:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;43439:32;;;;;;;;;;;;;;;;25055:339;;;;;;;;;;-1:-1:-1;25055:339:0;;;;;:::i;:::-;;:::i;35022:256::-;;;;;;;;;;-1:-1:-1;35022:256:0;;;;;:::i;:::-;;:::i;45056:239::-;;;;;;;;;;-1:-1:-1;45056:239:0;;;;;:::i;:::-;;:::i;47008:95::-;;;;;;;;;;-1:-1:-1;47008:95:0;;;;;:::i;:::-;;:::i;47262:465::-;;;:::i;25465:185::-;;;;;;;;;;-1:-1:-1;25465:185:0;;;;;:::i;:::-;;:::i;45301:348::-;;;;;;;;;;-1:-1:-1;45301:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46359:80::-;;;;;;;;;;-1:-1:-1;46359:80:0;;;;;:::i;:::-;;:::i;35544:233::-;;;;;;;;;;-1:-1:-1;35544:233:0;;;;;:::i;:::-;;:::i;43549:28::-;;;;;;;;;;-1:-1:-1;43549:28:0;;;;;;;;;;;46567:98;;;;;;;;;;-1:-1:-1;46567:98:0;;;;;:::i;:::-;;:::i;43518:26::-;;;;;;;;;;-1:-1:-1;43518:26:0;;;;;;;;22300:239;;;;;;;;;;-1:-1:-1;22300:239:0;;;;;:::i;:::-;;:::i;43266:21::-;;;;;;;;;;;;;:::i;22030:208::-;;;;;;;;;;-1:-1:-1;22030:208:0;;;;;:::i;:::-;;:::i;42503:94::-;;;;;;;;;;;;;:::i;46445:116::-;;;;;;;;;;-1:-1:-1;46445:116:0;;;;;:::i;:::-;;:::i;41852:87::-;;;;;;;;;;-1:-1:-1;41925:6:0;;-1:-1:-1;;;;;41925:6:0;41852:87;;22775:104;;;;;;;;;;;;;:::i;43582:35::-;;;;;;;;;;-1:-1:-1;43582:35:0;;;;;;;;;;;44117:931;;;;;;:::i;:::-;;:::i;24458:295::-;;;;;;;;;;-1:-1:-1;24458:295:0;;;;;:::i;:::-;;:::i;46174:65::-;;;;;;;;;;;;;:::i;25721:328::-;;;;;;;;;;-1:-1:-1;25721:328:0;;;;;:::i;:::-;;:::i;43622:37::-;;;;;;;;;;-1:-1:-1;43622:37:0;;;;;:::i;:::-;;:::i;43476:::-;;;;;;;;;;;;;;;;43292;;;;;;;;;;;;;:::i;45655:497::-;;;;;;;;;;-1:-1:-1;45655:497:0;;;;;:::i;:::-;;:::i;46247:104::-;;;;;;;;;;-1:-1:-1;46247:104:0;;;;;:::i;:::-;;:::i;43403:31::-;;;;;;;;;;;;;;;;46671:122;;;;;;;;;;-1:-1:-1;46671:122:0;;;;;:::i;:::-;;:::i;24824:164::-;;;;;;;;;;-1:-1:-1;24824:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24945:25:0;;;24921:4;24945:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24824:164;47111:144;;;;;;;;;;-1:-1:-1;47111:144:0;;;;;:::i;:::-;;:::i;46801:120::-;;;;;;;;;;-1:-1:-1;46801:120:0;;;;;:::i;:::-;;:::i;42752:192::-;;;;;;;;;;-1:-1:-1;42752:192:0;;;;;:::i;:::-;;:::i;34714:224::-;34816:4;-1:-1:-1;;;;;;34840:50:0;;-1:-1:-1;;;34840:50:0;;:90;;;34894:36;34918:11;34894:23;:36::i;:::-;34833:97;34714:224;-1:-1:-1;;34714:224:0:o;46927:73::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;;;;;;;;;46979:6:::1;:15:::0;;-1:-1:-1;;46979:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46927:73::o;22606:100::-;22660:13;22693:5;22686:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22606:100;:::o;24165:221::-;24241:7;27648:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27648:16:0;24261:73;;;;-1:-1:-1;;;24261:73:0;;7860:2:1;24261:73:0;;;7842:21:1;7899:2;7879:18;;;7872:30;7938:34;7918:18;;;7911:62;-1:-1:-1;;;7989:18:1;;;7982:42;8041:19;;24261:73:0;7658:408:1;24261:73:0;-1:-1:-1;24354:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24354:24:0;;24165:221::o;43334:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23688:411::-;23769:13;23785:23;23800:7;23785:14;:23::i;:::-;23769:39;;23833:5;-1:-1:-1;;;;;23827:11:0;:2;-1:-1:-1;;;;;23827:11:0;;23819:57;;;;-1:-1:-1;;;23819:57:0;;8273:2:1;23819:57:0;;;8255:21:1;8312:2;8292:18;;;8285:30;8351:34;8331:18;;;8324:62;-1:-1:-1;;;8402:18:1;;;8395:31;8443:19;;23819:57:0;8071:397:1;23819:57:0;20215:10;-1:-1:-1;;;;;23911:21:0;;;;:62;;-1:-1:-1;23936:37:0;23953:5;20215:10;24824:164;:::i;23936:37::-;23889:168;;;;-1:-1:-1;;;23889:168:0;;8675:2:1;23889:168:0;;;8657:21:1;8714:2;8694:18;;;8687:30;8753:34;8733:18;;;8726:62;8824:26;8804:18;;;8797:54;8868:19;;23889:168:0;8473:420:1;23889:168:0;24070:21;24079:2;24083:7;24070:8;:21::i;:::-;23758:341;23688:411;;:::o;25055:339::-;25250:41;20215:10;25283:7;25250:18;:41::i;:::-;25242:103;;;;-1:-1:-1;;;25242:103:0;;;;;;;:::i;:::-;25358:28;25368:4;25374:2;25378:7;25358:9;:28::i;35022:256::-;35119:7;35155:23;35172:5;35155:16;:23::i;:::-;35147:5;:31;35139:87;;;;-1:-1:-1;;;35139:87:0;;9518:2:1;35139:87:0;;;9500:21:1;9557:2;9537:18;;;9530:30;9596:34;9576:18;;;9569:62;-1:-1:-1;;;9647:18:1;;;9640:41;9698:19;;35139:87:0;9316:407:1;35139:87:0;-1:-1:-1;;;;;;35244:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35022:256::o;45056:239::-;45115:4;;45128:143;45149:20;:27;45145:31;;45128:143;;;45223:5;-1:-1:-1;;;;;45196:32:0;:20;45217:1;45196:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;45196:23:0;:32;45192:72;;-1:-1:-1;45250:4:0;;45056:239;-1:-1:-1;;45056:239:0:o;45192:72::-;45178:3;;;;:::i;:::-;;;;45128:143;;;-1:-1:-1;45284:5:0;;45056:239;-1:-1:-1;;45056:239:0:o;47008:95::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;47073:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47073:24:0;;::::1;::::0;;;::::1;::::0;;47008:95::o;47262:465::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;47549:7:::1;47570;41925:6:::0;;-1:-1:-1;;;;;41925:6:0;;41852:87;47570:7:::1;-1:-1:-1::0;;;;;47562:21:0::1;47591;47562:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47548:69;;;47632:2;47624:11;;;::::0;::::1;;47307:420;47262:465::o:0;25465:185::-;25603:39;25620:4;25626:2;25630:7;25603:39;;;;;;;;;;;;:16;:39::i;45301:348::-;45376:16;45404:23;45430:17;45440:6;45430:9;:17::i;:::-;45404:43;;45454:25;45496:15;45482:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45482:30:0;;45454:58;;45524:9;45519:103;45539:15;45535:1;:19;45519:103;;;45584:30;45604:6;45612:1;45584:19;:30::i;:::-;45570:8;45579:1;45570:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;45556:3;;;;:::i;:::-;;;;45519:103;;;-1:-1:-1;45635:8:0;45301:348;-1:-1:-1;;;45301:348:0:o;46359:80::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46418:4:::1;:15:::0;46359:80::o;35544:233::-;35619:7;35655:30;35442:10;:17;;35354:113;35655:30;35647:5;:38;35639:95;;;;-1:-1:-1;;;35639:95:0;;10544:2:1;35639:95:0;;;10526:21:1;10583:2;10563:18;;;10556:30;10622:34;10602:18;;;10595:62;-1:-1:-1;;;10673:18:1;;;10666:42;10725:19;;35639:95:0;10342:408:1;35639:95:0;35752:10;35763:5;35752:17;;;;;;;;:::i;:::-;;;;;;;;;35745:24;;35544:233;;;:::o;46567:98::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46638:7:::1;:21;46648:11:::0;46638:7;:21:::1;:::i;:::-;;46567:98:::0;:::o;22300:239::-;22372:7;22408:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22408:16:0;;22435:73;;;;-1:-1:-1;;;22435:73:0;;13161:2:1;22435:73:0;;;13143:21:1;13200:2;13180:18;;;13173:30;13239:34;13219:18;;;13212:62;-1:-1:-1;;;13290:18:1;;;13283:39;13339:19;;22435:73:0;12959:405:1;43266:21:0;;;;;;;:::i;22030:208::-;22102:7;-1:-1:-1;;;;;22130:19:0;;22122:74;;;;-1:-1:-1;;;22122:74:0;;13571:2:1;22122:74:0;;;13553:21:1;13610:2;13590:18;;;13583:30;13649:34;13629:18;;;13622:62;-1:-1:-1;;;13700:18:1;;;13693:40;13750:19;;22122:74:0;13369:406:1;22122:74:0;-1:-1:-1;;;;;;22214:16:0;;;;;:9;:16;;;;;;;22030:208::o;42503:94::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;42568:21:::1;42586:1;42568:9;:21::i;:::-;42503:94::o:0;46445:116::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46522:13:::1;:33:::0;46445:116::o;22775:104::-;22831:13;22864:7;22857:14;;;;;:::i;44117:931::-;44183:6;;;;44182:7;44174:42;;;;-1:-1:-1;;;44174:42:0;;13982:2:1;44174:42:0;;;13964:21:1;14021:2;14001:18;;;13994:30;-1:-1:-1;;;14040:18:1;;;14033:52;14102:18;;44174:42:0;13780:346:1;44174:42:0;44223:14;44240:13;35442:10;:17;;35354:113;44240:13;44223:30;;44282:1;44268:11;:15;44260:55;;;;-1:-1:-1;;;44260:55:0;;14333:2:1;44260:55:0;;;14315:21:1;14372:2;14352:18;;;14345:30;14411:29;14391:18;;;14384:57;14458:18;;44260:55:0;14131:351:1;44260:55:0;44345:13;;44330:11;:28;;44322:77;;;;-1:-1:-1;;;44322:77:0;;14689:2:1;44322:77:0;;;14671:21:1;14728:2;14708:18;;;14701:30;14767:34;14747:18;;;14740:62;-1:-1:-1;;;14818:18:1;;;14811:34;14862:19;;44322:77:0;14487:400:1;44322:77:0;44438:9;;44414:20;44423:11;44414:6;:20;:::i;:::-;:33;;44406:68;;;;-1:-1:-1;;;44406:68:0;;15224:2:1;44406:68:0;;;15206:21:1;15263:2;15243:18;;;15236:30;-1:-1:-1;;;15282:18:1;;;15275:52;15344:18;;44406:68:0;15022:346:1;44406:68:0;41925:6;;-1:-1:-1;;;;;41925:6:0;44487:10;:21;44483:416;;44524:15;;;;;;;:23;;44543:4;44524:23;44521:298;;44572:25;44586:10;44572:13;:25::i;:::-;44564:61;;;;-1:-1:-1;;;44564:61:0;;15575:2:1;44564:61:0;;;15557:21:1;15614:2;15594:18;;;15587:30;15653:25;15633:18;;;15626:53;15696:18;;44564:61:0;15373:347:1;44564:61:0;44688:10;44640:24;44667:32;;;:20;:32;;;;;;44756:18;;44722:30;44741:11;44667:32;44722:30;:::i;:::-;:52;;44714:93;;;;-1:-1:-1;;;44714:93:0;;15927:2:1;44714:93:0;;;15909:21:1;15966:2;15946:18;;;15939:30;16005;15985:18;;;15978:58;16053:18;;44714:93:0;15725:352:1;44714:93:0;44549:270;44521:298;44857:11;44850:4;;:18;;;;:::i;:::-;44837:9;:31;;44829:62;;;;-1:-1:-1;;;44829:62:0;;16457:2:1;44829:62:0;;;16439:21:1;16496:2;16476:18;;;16469:30;-1:-1:-1;;;16515:18:1;;;16508:48;16573:18;;44829:62:0;16255:342:1;44829:62:0;44924:1;44907:136;44932:11;44927:1;:16;44907:136;;44980:10;44959:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;45002:33:0;;-1:-1:-1;45012:10:0;45024;45033:1;45024:6;:10;:::i;:::-;45002:9;:33::i;:::-;44945:3;;;;:::i;:::-;;;;44907:136;;24458:295;20215:10;-1:-1:-1;;;;;24561:24:0;;;24553:62;;;;-1:-1:-1;;;24553:62:0;;16804:2:1;24553:62:0;;;16786:21:1;16843:2;16823:18;;;16816:30;16882:27;16862:18;;;16855:55;16927:18;;24553:62:0;16602:349:1;24553:62:0;20215:10;24628:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24628:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24628:53:0;;;;;;;;;;24697:48;;540:41:1;;;24628:42:0;;20215:10;24697:48;;513:18:1;24697:48:0;;;;;;;24458:295;;:::o;46174:65::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46218:8:::1;:15:::0;;-1:-1:-1;;46218:15:0::1;;;::::0;;46174:65::o;25721:328::-;25896:41;20215:10;25929:7;25896:18;:41::i;:::-;25888:103;;;;-1:-1:-1;;;25888:103:0;;;;;;;:::i;:::-;26002:39;26016:4;26022:2;26026:7;26035:5;26002:13;:39::i;:::-;25721:328;;;;:::o;43622:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43622:37:0;;-1:-1:-1;43622:37:0;:::o;43292:::-;;;;;;;:::i;45655:497::-;27624:4;27648:16;;;:7;:16;;;;;;45753:13;;-1:-1:-1;;;;;27648:16:0;45778:97;;;;-1:-1:-1;;;45778:97:0;;17158:2:1;45778:97:0;;;17140:21:1;17197:2;17177:18;;;17170:30;17236:34;17216:18;;;17209:62;-1:-1:-1;;;17287:18:1;;;17280:45;17342:19;;45778:97:0;16956:411:1;45778:97:0;45891:8;;;;;;;:17;;45903:5;45891:17;45888:62;;45928:14;45921:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45655:497;;;:::o;45888:62::-;45958:28;45989:10;:8;:10::i;:::-;45958:41;;46044:1;46019:14;46013:28;:32;:133;;;;;;;;;;;;;;;;;46081:14;46097:18;:7;:16;:18::i;:::-;46117:13;46064:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46013:133;46006:140;45655:497;-1:-1:-1;;;45655:497:0:o;46247:104::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46318:18:::1;:27:::0;46247:104::o;46671:122::-;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46754:13:::1;:33;46770:17:::0;46754:13;:33:::1;:::i;47111:144::-:0;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;47186:27:::1;47193:20;;47186:27;:::i;:::-;47220:29;:20;47243:6:::0;;47220:29:::1;:::i;46801:120::-:0;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;46883:14:::1;:32;46900:15:::0;46883:14;:32:::1;:::i;42752:192::-:0;41925:6;;-1:-1:-1;;;;;41925:6:0;20215:10;42072:23;42064:68;;;;-1:-1:-1;;;42064:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42841:22:0;::::1;42833:73;;;::::0;-1:-1:-1;;;42833:73:0;;18835:2:1;42833:73:0::1;::::0;::::1;18817:21:1::0;18874:2;18854:18;;;18847:30;18913:34;18893:18;;;18886:62;-1:-1:-1;;;18964:18:1;;;18957:36;19010:19;;42833:73:0::1;18633:402:1::0;42833:73:0::1;42917:19;42927:8;42917:9;:19::i;21661:305::-:0;21763:4;-1:-1:-1;;;;;;21800:40:0;;-1:-1:-1;;;21800:40:0;;:105;;-1:-1:-1;;;;;;;21857:48:0;;-1:-1:-1;;;21857:48:0;21800:105;:158;;;-1:-1:-1;;;;;;;;;;7601:40:0;;;21922:36;7492:157;31541:174;31616:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31616:29:0;-1:-1:-1;;;;;31616:29:0;;;;;;;;:24;;31670:23;31616:24;31670:14;:23::i;:::-;-1:-1:-1;;;;;31661:46:0;;;;;;;;;;;31541:174;;:::o;27853:348::-;27946:4;27648:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27648:16:0;27963:73;;;;-1:-1:-1;;;27963:73:0;;19242:2:1;27963:73:0;;;19224:21:1;19281:2;19261:18;;;19254:30;19320:34;19300:18;;;19293:62;-1:-1:-1;;;19371:18:1;;;19364:42;19423:19;;27963:73:0;19040:408:1;27963:73:0;28047:13;28063:23;28078:7;28063:14;:23::i;:::-;28047:39;;28116:5;-1:-1:-1;;;;;28105:16:0;:7;-1:-1:-1;;;;;28105:16:0;;:51;;;;28149:7;-1:-1:-1;;;;;28125:31:0;:20;28137:7;28125:11;:20::i;:::-;-1:-1:-1;;;;;28125:31:0;;28105:51;:87;;;-1:-1:-1;;;;;;24945:25:0;;;24921:4;24945:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28160:32;28097:96;27853:348;-1:-1:-1;;;;27853:348:0:o;30845:578::-;31004:4;-1:-1:-1;;;;;30977:31:0;:23;30992:7;30977:14;:23::i;:::-;-1:-1:-1;;;;;30977:31:0;;30969:85;;;;-1:-1:-1;;;30969:85:0;;19655:2:1;30969:85:0;;;19637:21:1;19694:2;19674:18;;;19667:30;19733:34;19713:18;;;19706:62;-1:-1:-1;;;19784:18:1;;;19777:39;19833:19;;30969:85:0;19453:405:1;30969:85:0;-1:-1:-1;;;;;31073:16:0;;31065:65;;;;-1:-1:-1;;;31065:65:0;;20065:2:1;31065:65:0;;;20047:21:1;20104:2;20084:18;;;20077:30;20143:34;20123:18;;;20116:62;-1:-1:-1;;;20194:18:1;;;20187:34;20238:19;;31065:65:0;19863:400:1;31065:65:0;31143:39;31164:4;31170:2;31174:7;31143:20;:39::i;:::-;31247:29;31264:1;31268:7;31247:8;:29::i;:::-;-1:-1:-1;;;;;31289:15:0;;;;;;:9;:15;;;;;:20;;31308:1;;31289:15;:20;;31308:1;;31289:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31320:13:0;;;;;;:9;:13;;;;;:18;;31337:1;;31320:13;:18;;31337:1;;31320:18;:::i;:::-;;;;-1:-1:-1;;31349:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31349:21:0;-1:-1:-1;;;;;31349:21:0;;;;;;;;;31388:27;;31349:16;;31388:27;;;;;;;30845:578;;;:::o;42952:173::-;43027:6;;;-1:-1:-1;;;;;43044:17:0;;;-1:-1:-1;;;;;;43044:17:0;;;;;;;43077:40;;43027:6;;;43044:17;43027:6;;43077:40;;43008:16;;43077:40;42997:128;42952:173;:::o;28543:110::-;28619:26;28629:2;28633:7;28619:26;;;;;;;;;;;;:9;:26::i;26931:315::-;27088:28;27098:4;27104:2;27108:7;27088:9;:28::i;:::-;27135:48;27158:4;27164:2;27168:7;27177:5;27135:22;:48::i;:::-;27127:111;;;;-1:-1:-1;;;27127:111:0;;;;;;;:::i;43996:102::-;44056:13;44085:7;44078:14;;;;;:::i;7967:723::-;8023:13;8244:5;8253:1;8244:10;8240:53;;-1:-1:-1;;8271:10:0;;;;;;;;;;;;-1:-1:-1;;;8271:10:0;;;;;7967:723::o;8240:53::-;8318:5;8303:12;8359:78;8366:9;;8359:78;;8392:8;;;;:::i;:::-;;-1:-1:-1;8415:10:0;;-1:-1:-1;8423:2:0;8415:10;;:::i;:::-;;;8359:78;;;8447:19;8479:6;8469:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8469:17:0;;8447:39;;8497:154;8504:10;;8497:154;;8531:11;8541:1;8531:11;;:::i;:::-;;-1:-1:-1;8600:10:0;8608:2;8600:5;:10;:::i;:::-;8587:24;;:2;:24;:::i;:::-;8574:39;;8557:6;8564;8557:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8557:56:0;;;;;;;;-1:-1:-1;8628:11:0;8637:2;8628:11;;:::i;:::-;;;8497:154;;36390:589;-1:-1:-1;;;;;36596:18:0;;36592:187;;36631:40;36663:7;37806:10;:17;;37779:24;;;;:15;:24;;;;;:44;;;37834:24;;;;;;;;;;;;37702:164;36631:40;36592:187;;;36701:2;-1:-1:-1;;;;;36693:10:0;:4;-1:-1:-1;;;;;36693:10:0;;36689:90;;36720:47;36753:4;36759:7;36720:32;:47::i;:::-;-1:-1:-1;;;;;36793:16:0;;36789:183;;36826:45;36863:7;36826:36;:45::i;36789:183::-;36899:4;-1:-1:-1;;;;;36893:10:0;:2;-1:-1:-1;;;;;36893:10:0;;36889:83;;36920:40;36948:2;36952:7;36920:27;:40::i;28880:321::-;29010:18;29016:2;29020:7;29010:5;:18::i;:::-;29061:54;29092:1;29096:2;29100:7;29109:5;29061:22;:54::i;:::-;29039:154;;;;-1:-1:-1;;;29039:154:0;;;;;;;:::i;32280:799::-;32435:4;-1:-1:-1;;;;;32456:13:0;;10815:20;10863:8;32452:620;;32492:72;;-1:-1:-1;;;32492:72:0;;-1:-1:-1;;;;;32492:36:0;;;;;:72;;20215:10;;32543:4;;32549:7;;32558:5;;32492:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32492:72:0;;;;;;;;-1:-1:-1;;32492:72:0;;;;;;;;;;;;:::i;:::-;;;32488:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32734:6;:13;32751:1;32734:18;32730:272;;32777:60;;-1:-1:-1;;;32777:60:0;;;;;;;:::i;32730:272::-;32952:6;32946:13;32937:6;32933:2;32929:15;32922:38;32488:529;-1:-1:-1;;;;;;32615:51:0;-1:-1:-1;;;32615:51:0;;-1:-1:-1;32608:58:0;;32452:620;-1:-1:-1;33056:4:0;32280:799;;;;;;:::o;38493:988::-;38759:22;38809:1;38784:22;38801:4;38784:16;:22::i;:::-;:26;;;;:::i;:::-;38821:18;38842:26;;;:17;:26;;;;;;38759:51;;-1:-1:-1;38975:28:0;;;38971:328;;-1:-1:-1;;;;;39042:18:0;;39020:19;39042:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39093:30;;;;;;:44;;;39210:30;;:17;:30;;;;;:43;;;38971:328;-1:-1:-1;39395:26:0;;;;:17;:26;;;;;;;;39388:33;;;-1:-1:-1;;;;;39439:18:0;;;;;:12;:18;;;;;:34;;;;;;;39432:41;38493:988::o;39776:1079::-;40054:10;:17;40029:22;;40054:21;;40074:1;;40054:21;:::i;:::-;40086:18;40107:24;;;:15;:24;;;;;;40480:10;:26;;40029:46;;-1:-1:-1;40107:24:0;;40029:46;;40480:26;;;;;;:::i;:::-;;;;;;;;;40458:48;;40544:11;40519:10;40530;40519:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40624:28;;;:15;:28;;;;;;;:41;;;40796:24;;;;;40789:31;40831:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39847:1008;;;39776:1079;:::o;37280:221::-;37365:14;37382:20;37399:2;37382:16;:20::i;:::-;-1:-1:-1;;;;;37413:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37458:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37280:221:0:o;29537:382::-;-1:-1:-1;;;;;29617:16:0;;29609:61;;;;-1:-1:-1;;;29609:61:0;;22276:2:1;29609:61:0;;;22258:21:1;;;22295:18;;;22288:30;22354:34;22334:18;;;22327:62;22406:18;;29609:61:0;22074:356:1;29609:61:0;27624:4;27648:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27648:16:0;:30;29681:58;;;;-1:-1:-1;;;29681:58:0;;22637:2:1;29681:58:0;;;22619:21:1;22676:2;22656:18;;;22649:30;22715;22695:18;;;22688:58;22763:18;;29681:58:0;22435:352:1;29681:58:0;29752:45;29781:1;29785:2;29789:7;29752:20;:45::i;:::-;-1:-1:-1;;;;;29810:13:0;;;;;;:9;:13;;;;;:18;;29827:1;;29810:13;:18;;29827:1;;29810:18;:::i;:::-;;;;-1:-1:-1;;29839:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29839:21:0;-1:-1:-1;;;;;29839:21:0;;;;;;;;29878:33;;29839:16;;;29878:33;;29839:16;;29878:33;29537: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:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:250::-;1027:1;1037:113;1051:6;1048:1;1045:13;1037:113;;;1127:11;;;1121:18;1108:11;;;1101:39;1073:2;1066:10;1037:113;;;-1:-1:-1;;1184:1:1;1166:16;;1159:27;942:250::o;1197:271::-;1239:3;1277:5;1271:12;1304:6;1299:3;1292:19;1320:76;1389:6;1382:4;1377:3;1373:14;1366:4;1359:5;1355:16;1320:76;:::i;:::-;1450:2;1429:15;-1:-1:-1;;1425:29:1;1416:39;;;;1457:4;1412:50;;1197:271;-1:-1:-1;;1197:271:1:o;1473:220::-;1622:2;1611:9;1604:21;1585:4;1642:45;1683:2;1672:9;1668:18;1660:6;1642:45;:::i;1698:180::-;1757:6;1810:2;1798:9;1789:7;1785:23;1781:32;1778:52;;;1826:1;1823;1816:12;1778:52;-1:-1:-1;1849:23:1;;1698:180;-1:-1:-1;1698:180:1:o;2091:173::-;2159:20;;-1:-1:-1;;;;;2208:31:1;;2198:42;;2188:70;;2254:1;2251;2244:12;2269:254;2337:6;2345;2398:2;2386:9;2377:7;2373:23;2369:32;2366:52;;;2414:1;2411;2404:12;2366:52;2437:29;2456:9;2437:29;:::i;:::-;2427:39;2513:2;2498:18;;;;2485:32;;-1:-1:-1;;;2269:254:1:o;2710:186::-;2769:6;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;2861:29;2880:9;2861:29;:::i;2901:328::-;2978:6;2986;2994;3047:2;3035:9;3026:7;3022:23;3018:32;3015:52;;;3063:1;3060;3053:12;3015:52;3086:29;3105:9;3086:29;:::i;:::-;3076:39;;3134:38;3168:2;3157:9;3153:18;3134:38;:::i;:::-;3124:48;;3219:2;3208:9;3204:18;3191:32;3181:42;;2901:328;;;;;:::o;3234:632::-;3405:2;3457:21;;;3527:13;;3430:18;;;3549:22;;;3376:4;;3405:2;3628:15;;;;3602:2;3587:18;;;3376:4;3671:169;3685:6;3682:1;3679:13;3671:169;;;3746:13;;3734:26;;3815:15;;;;3780:12;;;;3707:1;3700:9;3671:169;;;-1:-1:-1;3857:3:1;;3234:632;-1:-1:-1;;;;;;3234:632:1:o;3871:127::-;3932:10;3927:3;3923:20;3920:1;3913:31;3963:4;3960:1;3953:15;3987:4;3984:1;3977:15;4003:632;4068:5;4098:18;4139:2;4131:6;4128:14;4125:40;;;4145:18;;:::i;:::-;4220:2;4214:9;4188:2;4274:15;;-1:-1:-1;;4270:24:1;;;4296:2;4266:33;4262:42;4250:55;;;4320:18;;;4340:22;;;4317:46;4314:72;;;4366:18;;:::i;:::-;4406:10;4402:2;4395:22;4435:6;4426:15;;4465:6;4457;4450:22;4505:3;4496:6;4491:3;4487:16;4484:25;4481:45;;;4522:1;4519;4512:12;4481:45;4572:6;4567:3;4560:4;4552:6;4548:17;4535:44;4627:1;4620:4;4611:6;4603;4599:19;4595:30;4588:41;;;;4003:632;;;;;:::o;4640:451::-;4709:6;4762:2;4750:9;4741:7;4737:23;4733:32;4730:52;;;4778:1;4775;4768:12;4730:52;4818:9;4805:23;4851:18;4843:6;4840:30;4837:50;;;4883:1;4880;4873:12;4837:50;4906:22;;4959:4;4951:13;;4947:27;-1:-1:-1;4937:55:1;;4988:1;4985;4978:12;4937:55;5011:74;5077:7;5072:2;5059:16;5054:2;5050;5046:11;5011:74;:::i;5096:254::-;5161:6;5169;5222:2;5210:9;5201:7;5197:23;5193:32;5190:52;;;5238:1;5235;5228:12;5190:52;5261:29;5280:9;5261:29;:::i;:::-;5251:39;;5309:35;5340:2;5329:9;5325:18;5309:35;:::i;:::-;5299:45;;5096:254;;;;;:::o;5355:667::-;5450:6;5458;5466;5474;5527:3;5515:9;5506:7;5502:23;5498:33;5495:53;;;5544:1;5541;5534:12;5495:53;5567:29;5586:9;5567:29;:::i;:::-;5557:39;;5615:38;5649:2;5638:9;5634:18;5615:38;:::i;:::-;5605:48;;5700:2;5689:9;5685:18;5672:32;5662:42;;5755:2;5744:9;5740:18;5727:32;5782:18;5774:6;5771:30;5768:50;;;5814:1;5811;5804:12;5768:50;5837:22;;5890:4;5882:13;;5878:27;-1:-1:-1;5868:55:1;;5919:1;5916;5909:12;5868:55;5942:74;6008:7;6003:2;5990:16;5985:2;5981;5977:11;5942:74;:::i;:::-;5932:84;;;5355:667;;;;;;;:::o;6027:260::-;6095:6;6103;6156:2;6144:9;6135:7;6131:23;6127:32;6124:52;;;6172:1;6169;6162:12;6124:52;6195:29;6214:9;6195:29;:::i;:::-;6185:39;;6243:38;6277:2;6266:9;6262:18;6243:38;:::i;6292:615::-;6378:6;6386;6439:2;6427:9;6418:7;6414:23;6410:32;6407:52;;;6455:1;6452;6445:12;6407:52;6495:9;6482:23;6524:18;6565:2;6557:6;6554:14;6551:34;;;6581:1;6578;6571:12;6551:34;6619:6;6608:9;6604:22;6594:32;;6664:7;6657:4;6653:2;6649:13;6645:27;6635:55;;6686:1;6683;6676:12;6635:55;6726:2;6713:16;6752:2;6744:6;6741:14;6738:34;;;6768:1;6765;6758:12;6738:34;6821:7;6816:2;6806:6;6803:1;6799:14;6795:2;6791:23;6787:32;6784:45;6781:65;;;6842:1;6839;6832:12;6781:65;6873:2;6865:11;;;;;6895:6;;-1:-1:-1;6292:615:1;;-1:-1:-1;;;;6292:615:1:o;6912:356::-;7114:2;7096:21;;;7133:18;;;7126:30;7192:34;7187:2;7172:18;;7165:62;7259:2;7244:18;;6912:356::o;7273:380::-;7352:1;7348:12;;;;7395;;;7416:61;;7470:4;7462:6;7458:17;7448:27;;7416:61;7523:2;7515:6;7512:14;7492:18;7489:38;7486:161;;7569:10;7564:3;7560:20;7557:1;7550:31;7604:4;7601:1;7594:15;7632:4;7629:1;7622:15;7486:161;;7273:380;;;:::o;8898:413::-;9100:2;9082:21;;;9139:2;9119:18;;;9112:30;9178:34;9173:2;9158:18;;9151:62;-1:-1:-1;;;9244:2:1;9229:18;;9222:47;9301:3;9286:19;;8898:413::o;9728:127::-;9789:10;9784:3;9780:20;9777:1;9770:31;9820:4;9817:1;9810:15;9844:4;9841:1;9834:15;9860:127;9921:10;9916:3;9912:20;9909:1;9902:31;9952:4;9949:1;9942:15;9976:4;9973:1;9966:15;9992:135;10031:3;10052:17;;;10049:43;;10072:18;;:::i;:::-;-1:-1:-1;10119:1:1;10108:13;;9992:135::o;10881:545::-;10983:2;10978:3;10975:11;10972:448;;;11019:1;11044:5;11040:2;11033:17;11089:4;11085:2;11075:19;11159:2;11147:10;11143:19;11140:1;11136:27;11130:4;11126:38;11195:4;11183:10;11180:20;11177:47;;;-1:-1:-1;11218:4:1;11177:47;11273:2;11268:3;11264:12;11261:1;11257:20;11251:4;11247:31;11237:41;;11328:82;11346:2;11339:5;11336:13;11328:82;;;11391:17;;;11372:1;11361:13;11328:82;;;11332:3;;;10881:545;;;:::o;11602:1352::-;11728:3;11722:10;11755:18;11747:6;11744:30;11741:56;;;11777:18;;:::i;:::-;11806:97;11896:6;11856:38;11888:4;11882:11;11856:38;:::i;:::-;11850:4;11806:97;:::i;:::-;11958:4;;12022:2;12011:14;;12039:1;12034:663;;;;12741:1;12758:6;12755:89;;;-1:-1:-1;12810:19:1;;;12804:26;12755:89;-1:-1:-1;;11559:1:1;11555:11;;;11551:24;11547:29;11537:40;11583:1;11579:11;;;11534:57;12857:81;;12004:944;;12034:663;10828:1;10821:14;;;10865:4;10852:18;;-1:-1:-1;;12070:20:1;;;12188:236;12202:7;12199:1;12196:14;12188:236;;;12291:19;;;12285:26;12270:42;;12383:27;;;;12351:1;12339:14;;;;12218:19;;12188:236;;;12192:3;12452:6;12443:7;12440:19;12437:201;;;12513:19;;;12507:26;-1:-1:-1;;12596:1:1;12592:14;;;12608:3;12588:24;12584:37;12580:42;12565:58;12550:74;;12437:201;-1:-1:-1;;;;;12684:1:1;12668:14;;;12664:22;12651:36;;-1:-1:-1;11602:1352:1:o;14892:125::-;14957:9;;;14978:10;;;14975:36;;;14991:18;;:::i;16082:168::-;16155:9;;;16186;;16203:15;;;16197:22;;16183:37;16173:71;;16224:18;;:::i;17372:1256::-;17596:3;17634:6;17628:13;17660:4;17673:64;17730:6;17725:3;17720:2;17712:6;17708:15;17673:64;:::i;:::-;17800:13;;17759:16;;;;17822:68;17800:13;17759:16;17857:15;;;17822:68;:::i;:::-;17979:13;;17912:20;;;17952:1;;18017:36;17979:13;18017:36;:::i;:::-;18072:1;18089:18;;;18116:141;;;;18271:1;18266:337;;;;18082:521;;18116:141;-1:-1:-1;;18151:24:1;;18137:39;;18228:16;;18221:24;18207:39;;18196:51;;;-1:-1:-1;18116:141:1;;18266:337;18297:6;18294:1;18287:17;18345:2;18342:1;18332:16;18370:1;18384:169;18398:8;18395:1;18392:15;18384:169;;;18480:14;;18465:13;;;18458:37;18523:16;;;;18415:10;;18384:169;;;18388:3;;18584:8;18577:5;18573:20;18566:27;;18082:521;-1:-1:-1;18619:3:1;;17372:1256;-1:-1:-1;;;;;;;;;;17372:1256:1:o;20268:128::-;20335:9;;;20356:11;;;20353:37;;;20370:18;;:::i;20401:414::-;20603:2;20585:21;;;20642:2;20622:18;;;20615:30;20681:34;20676:2;20661:18;;20654:62;-1:-1:-1;;;20747:2:1;20732:18;;20725:48;20805:3;20790:19;;20401:414::o;20820:127::-;20881:10;20876:3;20872:20;20869:1;20862:31;20912:4;20909:1;20902:15;20936:4;20933:1;20926:15;20952:120;20992:1;21018;21008:35;;21023:18;;:::i;:::-;-1:-1:-1;21057:9:1;;20952:120::o;21077:112::-;21109:1;21135;21125:35;;21140:18;;:::i;:::-;-1:-1:-1;21174:9:1;;21077:112::o;21194:489::-;-1:-1:-1;;;;;21463:15:1;;;21445:34;;21515:15;;21510:2;21495:18;;21488:43;21562:2;21547:18;;21540:34;;;21610:3;21605:2;21590:18;;21583:31;;;21388:4;;21631:46;;21657:19;;21649:6;21631:46;:::i;:::-;21623:54;21194:489;-1:-1:-1;;;;;;21194:489:1:o;21688:249::-;21757:6;21810:2;21798:9;21789:7;21785:23;21781:32;21778:52;;;21826:1;21823;21816:12;21778:52;21858:9;21852:16;21877:30;21901:5;21877:30;:::i;21942:127::-;22003:10;21998:3;21994:20;21991:1;21984:31;22034:4;22031:1;22024:15;22058:4;22055:1;22048:15

Swarm Source

ipfs://05ef255f0a1d051120e7f84fe828e8db2798d183dc89248d5f920e7f8f6a5e4f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.