ETH Price: $2,479.89 (-7.72%)

Token

Dope Ape Drip Society (DADS)
 

Overview

Max Total Supply

1,156 DADS

Holders

343

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 DADS
0xe1a67c76f0f733d861f7f87dfc396814b8f99595
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:
DopeApeDripSociety

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

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/[email protected]

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/[email protected]

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/token/ERC721/extensions/[email protected]

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/utils/[email protected]

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/utils/[email protected]

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/utils/[email protected]

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/introspection/[email protected]

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

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/[email protected]

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/token/ERC721/extensions/[email protected]

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/[email protected]

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: contracts/DopeApeDripSociety.sol

pragma solidity ^0.8.0;

/**
 * @title DopeApeDripSociety contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract DopeApeDripSociety is ERC721Enumerable, Ownable {

    uint256 public MAX_NFT_SUPPLY = 3333;

    uint256 public NFT_PRICE = 0.065 ether;
    uint256 public NFT_PRICE_PRESALE = 0.045 ether;
    
    uint256 public MAX_NFT_WALLET = 12;
    uint256 public MAX_NFT_WALLET_PRESALE = 8;

    bool public saleIsActive = false;

    uint256 public publicSaleStartTimestamp;

    string public baseTokenURI;
    
    mapping(address => bool) private whitelisted;

    event BaseURIChanged(string baseURI);
    event SaleMint(address minter, uint256 amountOfNFTs);

    constructor(uint256 _publicSaleStartTimestamp) ERC721("Dope Ape Drip Society", "DADS") {
        publicSaleStartTimestamp = _publicSaleStartTimestamp;
    }

    function addToWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            whitelisted[addresses[i]] = true;
        }
    }

    function removeFromWhitelist(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");

            whitelisted[addresses[i]] = false;
        }
    }

    function checkIfWhitelisted(address addr) external view returns (bool) {
        return whitelisted[addr];
    }

    function reserveNFT(uint256 amountOfNFTs) public onlyOwner {        
        
        for (uint i = 0; i < amountOfNFTs; i++) {
            
            uint256 tokenId = totalSupply();
            _safeMint(msg.sender, tokenId);
        }
    }

    function mintNFT(uint256 amountOfNFTs) external payable {
        require(saleIsActive, "Sale must be active to mint NFT");
        require(totalSupply() + amountOfNFTs <= MAX_NFT_SUPPLY, "Minting would exceed max supply");

        if(hasFinalSaleStarted()) {
            require(NFT_PRICE * amountOfNFTs == msg.value, "ETH amount is incorrect");
            require(balanceOf(msg.sender) + amountOfNFTs <= MAX_NFT_WALLET, "Purchase exceeds max allowed per wallet");

        } else {
            require(whitelisted[msg.sender], "Address not whitelisted");
            require(NFT_PRICE_PRESALE * amountOfNFTs == msg.value, "ETH amount is incorrect");
            require(balanceOf(msg.sender) + amountOfNFTs <= MAX_NFT_WALLET_PRESALE, "Purchase exceeds max allowed per wallet");
        }

        for (uint256 i = 0; i < amountOfNFTs; i++) {
            uint256 tokenId = totalSupply();

            _safeMint(msg.sender, tokenId);
        }

        emit SaleMint(msg.sender, amountOfNFTs);
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    function hasFinalSaleStarted() public view returns(bool){
        return (block.timestamp >= publicSaleStartTimestamp) ? true : false;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
        emit BaseURIChanged(baseURI);
    }

    function setPublicSaleStartTimestamp(uint256 _amount) external onlyOwner {
        publicSaleStartTimestamp = _amount;
    }

    function setNFT_PRICE(uint256 _amount) external onlyOwner {
        NFT_PRICE = _amount;
    }

    function setNFT_PRICE_PRESALE(uint256 _amount) external onlyOwner {
        NFT_PRICE_PRESALE = _amount;
    }

    function setMAX_NFT_WALLET(uint256 _amount) external onlyOwner {
        MAX_NFT_WALLET = _amount;
    }

    function setMAX_NFT_WALLET_PRESALE(uint256 _amount) external onlyOwner {
        MAX_NFT_WALLET_PRESALE = _amount;
    }

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

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");

        uint256 AhmedBal = (balance * 275) / 1000;
        uint256 Owner = balance - AhmedBal;

        (bool success, ) = payable(0xd465c4d38192A7e4883453aCb23aB5458BDEcAA9).call{value: AhmedBal}("");
        require(success, "Transfer failed to Ahmed");

        (bool success1, ) = payable(owner()).call{value: Owner}("");
        require(success1, "Transfer failed to owner");
    }
 
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_publicSaleStartTimestamp","type":"uint256"}],"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":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfNFTs","type":"uint256"}],"name":"SaleMint","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":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_WALLET_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasFinalSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfNFTs","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfNFTs","type":"uint256"}],"name":"reserveNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMAX_NFT_WALLET","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMAX_NFT_WALLET_PRESALE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setNFT_PRICE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setNFT_PRICE_PRESALE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPublicSaleStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610d05600b5566e6ed27d6668000600c908155669fdf42f6e48000600d55600e556008600f556010805460ff191690553480156200004157600080fd5b5060405162002e5038038062002e508339810160408190526200006491620001fd565b604080518082018252601581527f446f706520417065204472697020536f636965747900000000000000000000006020808301918252835180850190945260048452634441445360e01b908401528151919291620000c59160009162000157565b508051620000db90600190602084019062000157565b505050620000f8620000f26200010160201b60201c565b62000105565b60115562000253565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001659062000216565b90600052602060002090601f016020900481019282620001895760008555620001d4565b82601f10620001a457805160ff1916838001178555620001d4565b82800160010185558215620001d4579182015b82811115620001d4578251825591602001919060010190620001b7565b50620001e2929150620001e6565b5090565b5b80821115620001e25760008155600101620001e7565b6000602082840312156200020f578081fd5b5051919050565b6002810460018216806200022b57607f821691505b602082108114156200024d57634e487b7160e01b600052602260045260246000fd5b50919050565b612bed80620002636000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063b88d4fde116100b6578063d7822c991161007a578063d7822c991461064e578063e8fee10514610663578063e985e9c514610683578063eb8d2444146106a3578063f2fde38b146106b8578063f45be5e9146106d857610246565b8063b88d4fde146105c4578063bb5c1426146105e4578063c87b56dd14610604578063d08b11e314610624578063d547cfb71461063957610246565b80638da5cb5b116100fd5780638da5cb5b14610552578063926427441461056757806395d89b411461057a578063a22cb4651461058f578063b5077f44146105af57610246565b806370a08231146104c8578063715018a6146104e85780637f649783146104fd578063853828b61461051d578063884bb43f1461053257610246565b806342842e0e116101c7578063562781481161018b578063562781481461043e578063577ad34d1461045e5780636352211e146104735780636632472914610493578063676dd563146104b357610246565b806342842e0e146103a9578063484cd65f146103c95780634f6ccce7146103de578063548db174146103fe57806355f804b31461041e57610246565b806323b872dd1161020e57806323b872dd146103145780632660a92e146103345780632f745c591461035457806334918dfd14610374578063397be3fd1461038957610246565b806301ffc9a71461024b57806306fdde0314610281578063081812fc146102a3578063095ea7b3146102d057806318160ddd146102f2575b600080fd5b34801561025757600080fd5b5061026b6102663660046121f0565b6106ed565b604051610278919061234e565b60405180910390f35b34801561028d57600080fd5b5061029661071a565b6040516102789190612359565b3480156102af57600080fd5b506102c36102be36600461226e565b6107ac565b60405161027891906122e4565b3480156102dc57600080fd5b506102f06102eb366004612158565b6107f8565b005b3480156102fe57600080fd5b50610307610890565b6040516102789190612a5e565b34801561032057600080fd5b506102f061032f36600461206a565b610896565b34801561034057600080fd5b5061026b61034f36600461201e565b6108ce565b34801561036057600080fd5b5061030761036f366004612158565b6108ec565b34801561038057600080fd5b506102f061093e565b34801561039557600080fd5b506102f06103a436600461226e565b610991565b3480156103b557600080fd5b506102f06103c436600461206a565b610a08565b3480156103d557600080fd5b5061026b610a23565b3480156103ea57600080fd5b506103076103f936600461226e565b610a3e565b34801561040a57600080fd5b506102f0610419366004612181565b610a99565b34801561042a57600080fd5b506102f0610439366004612228565b610bb6565b34801561044a57600080fd5b506102f061045936600461226e565b610c43565b34801561046a57600080fd5b50610307610c87565b34801561047f57600080fd5b506102c361048e36600461226e565b610c8d565b34801561049f57600080fd5b506102f06104ae36600461226e565b610cc2565b3480156104bf57600080fd5b50610307610d06565b3480156104d457600080fd5b506103076104e336600461201e565b610d0c565b3480156104f457600080fd5b506102f0610d50565b34801561050957600080fd5b506102f0610518366004612181565b610d9b565b34801561052957600080fd5b506102f0610eb8565b34801561053e57600080fd5b506102f061054d36600461226e565b61105a565b34801561055e57600080fd5b506102c361109e565b6102f061057536600461226e565b6110ad565b34801561058657600080fd5b5061029661126c565b34801561059b57600080fd5b506102f06105aa36600461211e565b61127b565b3480156105bb57600080fd5b50610307611349565b3480156105d057600080fd5b506102f06105df3660046120a5565b61134f565b3480156105f057600080fd5b506102f06105ff36600461226e565b61138e565b34801561061057600080fd5b5061029661061f36600461226e565b6113d2565b34801561063057600080fd5b50610307611455565b34801561064557600080fd5b5061029661145b565b34801561065a57600080fd5b506103076114e9565b34801561066f57600080fd5b506102f061067e36600461226e565b6114ef565b34801561068f57600080fd5b5061026b61069e366004612038565b611533565b3480156106af57600080fd5b5061026b611561565b3480156106c457600080fd5b506102f06106d336600461201e565b61156a565b3480156106e457600080fd5b506103076115db565b60006001600160e01b0319821663780e9d6360e01b14806107125750610712826115e1565b90505b919050565b60606000805461072990612af5565b80601f016020809104026020016040519081016040528092919081815260200182805461075590612af5565b80156107a25780601f10610777576101008083540402835291602001916107a2565b820191906000526020600020905b81548152906001019060200180831161078557829003601f168201915b5050505050905090565b60006107b782611621565b6107dc5760405162461bcd60e51b81526004016107d39061274e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080382610c8d565b9050806001600160a01b0316836001600160a01b031614156108375760405162461bcd60e51b81526004016107d390612902565b806001600160a01b031661084961163e565b6001600160a01b0316148061086557506108658161069e61163e565b6108815760405162461bcd60e51b81526004016107d3906125bb565b61088b8383611642565b505050565b60085490565b6108a76108a161163e565b826116b0565b6108c35760405162461bcd60e51b81526004016107d39061297a565b61088b838383611735565b6001600160a01b031660009081526013602052604090205460ff1690565b60006108f783610d0c565b82106109155760405162461bcd60e51b81526004016107d3906123a3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61094661163e565b6001600160a01b031661095761109e565b6001600160a01b03161461097d5760405162461bcd60e51b81526004016107d3906127c7565b6010805460ff19811660ff90911615179055565b61099961163e565b6001600160a01b03166109aa61109e565b6001600160a01b0316146109d05760405162461bcd60e51b81526004016107d3906127c7565b60005b81811015610a045760006109e5610890565b90506109f13382611862565b50806109fc81612b30565b9150506109d3565b5050565b61088b8383836040518060200160405280600081525061134f565b6000601154421015610a36576000610a39565b60015b905090565b6000610a48610890565b8210610a665760405162461bcd60e51b81526004016107d3906129cb565b60088281548110610a8757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610aa161163e565b6001600160a01b0316610ab261109e565b6001600160a01b031614610ad85760405162461bcd60e51b81526004016107d3906127c7565b60005b8181101561088b576000838383818110610b0557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b1a919061201e565b6001600160a01b03161415610b415760405162461bcd60e51b81526004016107d390612943565b600060136000858585818110610b6757634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b7c919061201e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610bae81612b30565b915050610adb565b610bbe61163e565b6001600160a01b0316610bcf61109e565b6001600160a01b031614610bf55760405162461bcd60e51b81526004016107d3906127c7565b8051610c08906012906020840190611efe565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610c389190612359565b60405180910390a150565b610c4b61163e565b6001600160a01b0316610c5c61109e565b6001600160a01b031614610c825760405162461bcd60e51b81526004016107d3906127c7565b600c55565b600d5481565b6000818152600260205260408120546001600160a01b0316806107125760405162461bcd60e51b81526004016107d390612662565b610cca61163e565b6001600160a01b0316610cdb61109e565b6001600160a01b031614610d015760405162461bcd60e51b81526004016107d3906127c7565b600e55565b600c5481565b60006001600160a01b038216610d345760405162461bcd60e51b81526004016107d390612618565b506001600160a01b031660009081526003602052604090205490565b610d5861163e565b6001600160a01b0316610d6961109e565b6001600160a01b031614610d8f5760405162461bcd60e51b81526004016107d3906127c7565b610d99600061187c565b565b610da361163e565b6001600160a01b0316610db461109e565b6001600160a01b031614610dda5760405162461bcd60e51b81526004016107d3906127c7565b60005b8181101561088b576000838383818110610e0757634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e1c919061201e565b6001600160a01b03161415610e435760405162461bcd60e51b81526004016107d390612943565b600160136000858585818110610e6957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e7e919061201e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610eb081612b30565b915050610ddd565b610ec061163e565b6001600160a01b0316610ed161109e565b6001600160a01b031614610ef75760405162461bcd60e51b81526004016107d3906127c7565b4780610f155760405162461bcd60e51b81526004016107d39061279a565b60006103e8610f2683610113612a93565b610f309190612a7f565b90506000610f3e8284612ab2565b9050600073d465c4d38192a7e4883453acb23ab5458bdecaa96001600160a01b031683604051610f6d906122e1565b60006040518083038185875af1925050503d8060008114610faa576040519150601f19603f3d011682016040523d82523d6000602084013e610faf565b606091505b5050905080610fd05760405162461bcd60e51b81526004016107d390612584565b6000610fda61109e565b6001600160a01b031683604051610ff0906122e1565b60006040518083038185875af1925050503d806000811461102d576040519150601f19603f3d011682016040523d82523d6000602084013e611032565b606091505b50509050806110535760405162461bcd60e51b81526004016107d3906128cb565b5050505050565b61106261163e565b6001600160a01b031661107361109e565b6001600160a01b0316146110995760405162461bcd60e51b81526004016107d3906127c7565b600f55565b600a546001600160a01b031690565b60105460ff166110cf5760405162461bcd60e51b81526004016107d39061236c565b600b54816110db610890565b6110e59190612a67565b11156111035760405162461bcd60e51b81526004016107d3906126ab565b61110b610a23565b15611176573481600c5461111f9190612a93565b1461113c5760405162461bcd60e51b81526004016107d390612717565b600e548161114933610d0c565b6111539190612a67565b11156111715760405162461bcd60e51b81526004016107d390612a17565b611206565b3360009081526013602052604090205460ff166111a55760405162461bcd60e51b81526004016107d390612894565b3481600d546111b49190612a93565b146111d15760405162461bcd60e51b81526004016107d390612717565b600f54816111de33610d0c565b6111e89190612a67565b11156112065760405162461bcd60e51b81526004016107d390612a17565b60005b8181101561123a57600061121b610890565b90506112273382611862565b508061123281612b30565b915050611209565b507f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f3382604051610c38929190612335565b60606001805461072990612af5565b61128361163e565b6001600160a01b0316826001600160a01b031614156112b45760405162461bcd60e51b81526004016107d390612501565b80600560006112c161163e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561130561163e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161133d919061234e565b60405180910390a35050565b600b5481565b61136061135a61163e565b836116b0565b61137c5760405162461bcd60e51b81526004016107d39061297a565b611388848484846118ce565b50505050565b61139661163e565b6001600160a01b03166113a761109e565b6001600160a01b0316146113cd5760405162461bcd60e51b81526004016107d3906127c7565b600d55565b60606113dd82611621565b6113f95760405162461bcd60e51b81526004016107d390612845565b6000611403611901565b90506000815111611423576040518060200160405280600081525061144e565b8061142d84611910565b60405160200161143e9291906122b2565b6040516020818303038152906040525b9392505050565b600e5481565b6012805461146890612af5565b80601f016020809104026020016040519081016040528092919081815260200182805461149490612af5565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b505050505081565b60115481565b6114f761163e565b6001600160a01b031661150861109e565b6001600160a01b03161461152e5760405162461bcd60e51b81526004016107d3906127c7565b601155565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60105460ff1681565b61157261163e565b6001600160a01b031661158361109e565b6001600160a01b0316146115a95760405162461bcd60e51b81526004016107d3906127c7565b6001600160a01b0381166115cf5760405162461bcd60e51b81526004016107d390612440565b6115d88161187c565b50565b600f5481565b60006001600160e01b031982166380ac58cd60e01b148061161257506001600160e01b03198216635b5e139f60e01b145b80610712575061071282611a2b565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167782610c8d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116bb82611621565b6116d75760405162461bcd60e51b81526004016107d390612538565b60006116e283610c8d565b9050806001600160a01b0316846001600160a01b0316148061171d5750836001600160a01b0316611712846107ac565b6001600160a01b0316145b8061172d575061172d8185611533565b949350505050565b826001600160a01b031661174882610c8d565b6001600160a01b03161461176e5760405162461bcd60e51b81526004016107d3906127fc565b6001600160a01b0382166117945760405162461bcd60e51b81526004016107d3906124bd565b61179f838383611a44565b6117aa600082611642565b6001600160a01b03831660009081526003602052604081208054600192906117d3908490612ab2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611801908490612a67565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a04828260405180602001604052806000815250611acd565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118d9848484611735565b6118e584848484611b00565b6113885760405162461bcd60e51b81526004016107d3906123ee565b60606012805461072990612af5565b60608161193557506040805180820190915260018152600360fc1b6020820152610715565b8160005b811561195f578061194981612b30565b91506119589050600a83612a7f565b9150611939565b60008167ffffffffffffffff81111561198857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119b2576020820181803683370190505b5090505b841561172d576119c7600183612ab2565b91506119d4600a86612b4b565b6119df906030612a67565b60f81b818381518110611a0257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a24600a86612a7f565b94506119b6565b6001600160e01b031981166301ffc9a760e01b14919050565b611a4f83838361088b565b6001600160a01b038316611a6b57611a6681611c1b565b611a8e565b816001600160a01b0316836001600160a01b031614611a8e57611a8e8382611c5f565b6001600160a01b038216611aaa57611aa581611cfc565b61088b565b826001600160a01b0316826001600160a01b03161461088b5761088b8282611dd5565b611ad78383611e19565b611ae46000848484611b00565b61088b5760405162461bcd60e51b81526004016107d3906123ee565b6000611b14846001600160a01b0316611ef8565b15611c1057836001600160a01b031663150b7a02611b3061163e565b8786866040518563ffffffff1660e01b8152600401611b5294939291906122f8565b602060405180830381600087803b158015611b6c57600080fd5b505af1925050508015611b9c575060408051601f3d908101601f19168201909252611b999181019061220c565b60015b611bf6573d808015611bca576040519150601f19603f3d011682016040523d82523d6000602084013e611bcf565b606091505b508051611bee5760405162461bcd60e51b81526004016107d3906123ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061172d565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c6c84610d0c565b611c769190612ab2565b600083815260076020526040902054909150808214611cc9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d0e90600190612ab2565b60008381526009602052604081205460088054939450909284908110611d4457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d7357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611db957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611de083610d0c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e3f5760405162461bcd60e51b81526004016107d3906126e2565b611e4881611621565b15611e655760405162461bcd60e51b81526004016107d390612486565b611e7160008383611a44565b6001600160a01b0382166000908152600360205260408120805460019290611e9a908490612a67565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611f0a90612af5565b90600052602060002090601f016020900481019282611f2c5760008555611f72565b82601f10611f4557805160ff1916838001178555611f72565b82800160010185558215611f72579182015b82811115611f72578251825591602001919060010190611f57565b50611f7e929150611f82565b5090565b5b80821115611f7e5760008155600101611f83565b600067ffffffffffffffff80841115611fb257611fb2612b8b565b604051601f8501601f191681016020018281118282101715611fd657611fd6612b8b565b604052848152915081838501861015611fee57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461071557600080fd5b60006020828403121561202f578081fd5b61144e82612007565b6000806040838503121561204a578081fd5b61205383612007565b915061206160208401612007565b90509250929050565b60008060006060848603121561207e578081fd5b61208784612007565b925061209560208501612007565b9150604084013590509250925092565b600080600080608085870312156120ba578081fd5b6120c385612007565b93506120d160208601612007565b925060408501359150606085013567ffffffffffffffff8111156120f3578182fd5b8501601f81018713612103578182fd5b61211287823560208401611f97565b91505092959194509250565b60008060408385031215612130578182fd5b61213983612007565b91506020830135801515811461214d578182fd5b809150509250929050565b6000806040838503121561216a578182fd5b61217383612007565b946020939093013593505050565b60008060208385031215612193578182fd5b823567ffffffffffffffff808211156121aa578384fd5b818501915085601f8301126121bd578384fd5b8135818111156121cb578485fd5b86602080830285010111156121de578485fd5b60209290920196919550909350505050565b600060208284031215612201578081fd5b813561144e81612ba1565b60006020828403121561221d578081fd5b815161144e81612ba1565b600060208284031215612239578081fd5b813567ffffffffffffffff81111561224f578182fd5b8201601f8101841361225f578182fd5b61172d84823560208401611f97565b60006020828403121561227f578081fd5b5035919050565b6000815180845261229e816020860160208601612ac9565b601f01601f19169290920160200192915050565b600083516122c4818460208801612ac9565b8351908301906122d8818360208801612ac9565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232b90830184612286565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825261144e6020830184612286565b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e74204e465400604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526018908201527f5472616e73666572206661696c656420746f2041686d65640000000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526017908201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260139082015272496e737566666963656e742062616c616e636560681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526017908201527f41646472657373206e6f742077686974656c6973746564000000000000000000604082015260600190565b60208082526018908201527f5472616e73666572206661696c656420746f206f776e65720000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526027908201527f50757263686173652065786365656473206d617820616c6c6f77656420706572604082015266081dd85b1b195d60ca1b606082015260800190565b90815260200190565b60008219821115612a7a57612a7a612b5f565b500190565b600082612a8e57612a8e612b75565b500490565b6000816000190483118215151615612aad57612aad612b5f565b500290565b600082821015612ac457612ac4612b5f565b500390565b60005b83811015612ae4578181015183820152602001612acc565b838111156113885750506000910152565b600281046001821680612b0957607f821691505b60208210811415612b2a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b4457612b44612b5f565b5060010190565b600082612b5a57612b5a612b75565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115d857600080fdfea2646970667358221220ce96ec3aeae06f96e95329efbf062e66e77b68865637b4d5ad5155935de501fb64736f6c6343000800003300000000000000000000000000000000000000000000000000000000622e3f30

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063b88d4fde116100b6578063d7822c991161007a578063d7822c991461064e578063e8fee10514610663578063e985e9c514610683578063eb8d2444146106a3578063f2fde38b146106b8578063f45be5e9146106d857610246565b8063b88d4fde146105c4578063bb5c1426146105e4578063c87b56dd14610604578063d08b11e314610624578063d547cfb71461063957610246565b80638da5cb5b116100fd5780638da5cb5b14610552578063926427441461056757806395d89b411461057a578063a22cb4651461058f578063b5077f44146105af57610246565b806370a08231146104c8578063715018a6146104e85780637f649783146104fd578063853828b61461051d578063884bb43f1461053257610246565b806342842e0e116101c7578063562781481161018b578063562781481461043e578063577ad34d1461045e5780636352211e146104735780636632472914610493578063676dd563146104b357610246565b806342842e0e146103a9578063484cd65f146103c95780634f6ccce7146103de578063548db174146103fe57806355f804b31461041e57610246565b806323b872dd1161020e57806323b872dd146103145780632660a92e146103345780632f745c591461035457806334918dfd14610374578063397be3fd1461038957610246565b806301ffc9a71461024b57806306fdde0314610281578063081812fc146102a3578063095ea7b3146102d057806318160ddd146102f2575b600080fd5b34801561025757600080fd5b5061026b6102663660046121f0565b6106ed565b604051610278919061234e565b60405180910390f35b34801561028d57600080fd5b5061029661071a565b6040516102789190612359565b3480156102af57600080fd5b506102c36102be36600461226e565b6107ac565b60405161027891906122e4565b3480156102dc57600080fd5b506102f06102eb366004612158565b6107f8565b005b3480156102fe57600080fd5b50610307610890565b6040516102789190612a5e565b34801561032057600080fd5b506102f061032f36600461206a565b610896565b34801561034057600080fd5b5061026b61034f36600461201e565b6108ce565b34801561036057600080fd5b5061030761036f366004612158565b6108ec565b34801561038057600080fd5b506102f061093e565b34801561039557600080fd5b506102f06103a436600461226e565b610991565b3480156103b557600080fd5b506102f06103c436600461206a565b610a08565b3480156103d557600080fd5b5061026b610a23565b3480156103ea57600080fd5b506103076103f936600461226e565b610a3e565b34801561040a57600080fd5b506102f0610419366004612181565b610a99565b34801561042a57600080fd5b506102f0610439366004612228565b610bb6565b34801561044a57600080fd5b506102f061045936600461226e565b610c43565b34801561046a57600080fd5b50610307610c87565b34801561047f57600080fd5b506102c361048e36600461226e565b610c8d565b34801561049f57600080fd5b506102f06104ae36600461226e565b610cc2565b3480156104bf57600080fd5b50610307610d06565b3480156104d457600080fd5b506103076104e336600461201e565b610d0c565b3480156104f457600080fd5b506102f0610d50565b34801561050957600080fd5b506102f0610518366004612181565b610d9b565b34801561052957600080fd5b506102f0610eb8565b34801561053e57600080fd5b506102f061054d36600461226e565b61105a565b34801561055e57600080fd5b506102c361109e565b6102f061057536600461226e565b6110ad565b34801561058657600080fd5b5061029661126c565b34801561059b57600080fd5b506102f06105aa36600461211e565b61127b565b3480156105bb57600080fd5b50610307611349565b3480156105d057600080fd5b506102f06105df3660046120a5565b61134f565b3480156105f057600080fd5b506102f06105ff36600461226e565b61138e565b34801561061057600080fd5b5061029661061f36600461226e565b6113d2565b34801561063057600080fd5b50610307611455565b34801561064557600080fd5b5061029661145b565b34801561065a57600080fd5b506103076114e9565b34801561066f57600080fd5b506102f061067e36600461226e565b6114ef565b34801561068f57600080fd5b5061026b61069e366004612038565b611533565b3480156106af57600080fd5b5061026b611561565b3480156106c457600080fd5b506102f06106d336600461201e565b61156a565b3480156106e457600080fd5b506103076115db565b60006001600160e01b0319821663780e9d6360e01b14806107125750610712826115e1565b90505b919050565b60606000805461072990612af5565b80601f016020809104026020016040519081016040528092919081815260200182805461075590612af5565b80156107a25780601f10610777576101008083540402835291602001916107a2565b820191906000526020600020905b81548152906001019060200180831161078557829003601f168201915b5050505050905090565b60006107b782611621565b6107dc5760405162461bcd60e51b81526004016107d39061274e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061080382610c8d565b9050806001600160a01b0316836001600160a01b031614156108375760405162461bcd60e51b81526004016107d390612902565b806001600160a01b031661084961163e565b6001600160a01b0316148061086557506108658161069e61163e565b6108815760405162461bcd60e51b81526004016107d3906125bb565b61088b8383611642565b505050565b60085490565b6108a76108a161163e565b826116b0565b6108c35760405162461bcd60e51b81526004016107d39061297a565b61088b838383611735565b6001600160a01b031660009081526013602052604090205460ff1690565b60006108f783610d0c565b82106109155760405162461bcd60e51b81526004016107d3906123a3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61094661163e565b6001600160a01b031661095761109e565b6001600160a01b03161461097d5760405162461bcd60e51b81526004016107d3906127c7565b6010805460ff19811660ff90911615179055565b61099961163e565b6001600160a01b03166109aa61109e565b6001600160a01b0316146109d05760405162461bcd60e51b81526004016107d3906127c7565b60005b81811015610a045760006109e5610890565b90506109f13382611862565b50806109fc81612b30565b9150506109d3565b5050565b61088b8383836040518060200160405280600081525061134f565b6000601154421015610a36576000610a39565b60015b905090565b6000610a48610890565b8210610a665760405162461bcd60e51b81526004016107d3906129cb565b60088281548110610a8757634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610aa161163e565b6001600160a01b0316610ab261109e565b6001600160a01b031614610ad85760405162461bcd60e51b81526004016107d3906127c7565b60005b8181101561088b576000838383818110610b0557634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b1a919061201e565b6001600160a01b03161415610b415760405162461bcd60e51b81526004016107d390612943565b600060136000858585818110610b6757634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610b7c919061201e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610bae81612b30565b915050610adb565b610bbe61163e565b6001600160a01b0316610bcf61109e565b6001600160a01b031614610bf55760405162461bcd60e51b81526004016107d3906127c7565b8051610c08906012906020840190611efe565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610c389190612359565b60405180910390a150565b610c4b61163e565b6001600160a01b0316610c5c61109e565b6001600160a01b031614610c825760405162461bcd60e51b81526004016107d3906127c7565b600c55565b600d5481565b6000818152600260205260408120546001600160a01b0316806107125760405162461bcd60e51b81526004016107d390612662565b610cca61163e565b6001600160a01b0316610cdb61109e565b6001600160a01b031614610d015760405162461bcd60e51b81526004016107d3906127c7565b600e55565b600c5481565b60006001600160a01b038216610d345760405162461bcd60e51b81526004016107d390612618565b506001600160a01b031660009081526003602052604090205490565b610d5861163e565b6001600160a01b0316610d6961109e565b6001600160a01b031614610d8f5760405162461bcd60e51b81526004016107d3906127c7565b610d99600061187c565b565b610da361163e565b6001600160a01b0316610db461109e565b6001600160a01b031614610dda5760405162461bcd60e51b81526004016107d3906127c7565b60005b8181101561088b576000838383818110610e0757634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e1c919061201e565b6001600160a01b03161415610e435760405162461bcd60e51b81526004016107d390612943565b600160136000858585818110610e6957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190610e7e919061201e565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610eb081612b30565b915050610ddd565b610ec061163e565b6001600160a01b0316610ed161109e565b6001600160a01b031614610ef75760405162461bcd60e51b81526004016107d3906127c7565b4780610f155760405162461bcd60e51b81526004016107d39061279a565b60006103e8610f2683610113612a93565b610f309190612a7f565b90506000610f3e8284612ab2565b9050600073d465c4d38192a7e4883453acb23ab5458bdecaa96001600160a01b031683604051610f6d906122e1565b60006040518083038185875af1925050503d8060008114610faa576040519150601f19603f3d011682016040523d82523d6000602084013e610faf565b606091505b5050905080610fd05760405162461bcd60e51b81526004016107d390612584565b6000610fda61109e565b6001600160a01b031683604051610ff0906122e1565b60006040518083038185875af1925050503d806000811461102d576040519150601f19603f3d011682016040523d82523d6000602084013e611032565b606091505b50509050806110535760405162461bcd60e51b81526004016107d3906128cb565b5050505050565b61106261163e565b6001600160a01b031661107361109e565b6001600160a01b0316146110995760405162461bcd60e51b81526004016107d3906127c7565b600f55565b600a546001600160a01b031690565b60105460ff166110cf5760405162461bcd60e51b81526004016107d39061236c565b600b54816110db610890565b6110e59190612a67565b11156111035760405162461bcd60e51b81526004016107d3906126ab565b61110b610a23565b15611176573481600c5461111f9190612a93565b1461113c5760405162461bcd60e51b81526004016107d390612717565b600e548161114933610d0c565b6111539190612a67565b11156111715760405162461bcd60e51b81526004016107d390612a17565b611206565b3360009081526013602052604090205460ff166111a55760405162461bcd60e51b81526004016107d390612894565b3481600d546111b49190612a93565b146111d15760405162461bcd60e51b81526004016107d390612717565b600f54816111de33610d0c565b6111e89190612a67565b11156112065760405162461bcd60e51b81526004016107d390612a17565b60005b8181101561123a57600061121b610890565b90506112273382611862565b508061123281612b30565b915050611209565b507f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f3382604051610c38929190612335565b60606001805461072990612af5565b61128361163e565b6001600160a01b0316826001600160a01b031614156112b45760405162461bcd60e51b81526004016107d390612501565b80600560006112c161163e565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561130561163e565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161133d919061234e565b60405180910390a35050565b600b5481565b61136061135a61163e565b836116b0565b61137c5760405162461bcd60e51b81526004016107d39061297a565b611388848484846118ce565b50505050565b61139661163e565b6001600160a01b03166113a761109e565b6001600160a01b0316146113cd5760405162461bcd60e51b81526004016107d3906127c7565b600d55565b60606113dd82611621565b6113f95760405162461bcd60e51b81526004016107d390612845565b6000611403611901565b90506000815111611423576040518060200160405280600081525061144e565b8061142d84611910565b60405160200161143e9291906122b2565b6040516020818303038152906040525b9392505050565b600e5481565b6012805461146890612af5565b80601f016020809104026020016040519081016040528092919081815260200182805461149490612af5565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b505050505081565b60115481565b6114f761163e565b6001600160a01b031661150861109e565b6001600160a01b03161461152e5760405162461bcd60e51b81526004016107d3906127c7565b601155565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60105460ff1681565b61157261163e565b6001600160a01b031661158361109e565b6001600160a01b0316146115a95760405162461bcd60e51b81526004016107d3906127c7565b6001600160a01b0381166115cf5760405162461bcd60e51b81526004016107d390612440565b6115d88161187c565b50565b600f5481565b60006001600160e01b031982166380ac58cd60e01b148061161257506001600160e01b03198216635b5e139f60e01b145b80610712575061071282611a2b565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167782610c8d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006116bb82611621565b6116d75760405162461bcd60e51b81526004016107d390612538565b60006116e283610c8d565b9050806001600160a01b0316846001600160a01b0316148061171d5750836001600160a01b0316611712846107ac565b6001600160a01b0316145b8061172d575061172d8185611533565b949350505050565b826001600160a01b031661174882610c8d565b6001600160a01b03161461176e5760405162461bcd60e51b81526004016107d3906127fc565b6001600160a01b0382166117945760405162461bcd60e51b81526004016107d3906124bd565b61179f838383611a44565b6117aa600082611642565b6001600160a01b03831660009081526003602052604081208054600192906117d3908490612ab2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611801908490612a67565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a04828260405180602001604052806000815250611acd565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6118d9848484611735565b6118e584848484611b00565b6113885760405162461bcd60e51b81526004016107d3906123ee565b60606012805461072990612af5565b60608161193557506040805180820190915260018152600360fc1b6020820152610715565b8160005b811561195f578061194981612b30565b91506119589050600a83612a7f565b9150611939565b60008167ffffffffffffffff81111561198857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156119b2576020820181803683370190505b5090505b841561172d576119c7600183612ab2565b91506119d4600a86612b4b565b6119df906030612a67565b60f81b818381518110611a0257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a24600a86612a7f565b94506119b6565b6001600160e01b031981166301ffc9a760e01b14919050565b611a4f83838361088b565b6001600160a01b038316611a6b57611a6681611c1b565b611a8e565b816001600160a01b0316836001600160a01b031614611a8e57611a8e8382611c5f565b6001600160a01b038216611aaa57611aa581611cfc565b61088b565b826001600160a01b0316826001600160a01b03161461088b5761088b8282611dd5565b611ad78383611e19565b611ae46000848484611b00565b61088b5760405162461bcd60e51b81526004016107d3906123ee565b6000611b14846001600160a01b0316611ef8565b15611c1057836001600160a01b031663150b7a02611b3061163e565b8786866040518563ffffffff1660e01b8152600401611b5294939291906122f8565b602060405180830381600087803b158015611b6c57600080fd5b505af1925050508015611b9c575060408051601f3d908101601f19168201909252611b999181019061220c565b60015b611bf6573d808015611bca576040519150601f19603f3d011682016040523d82523d6000602084013e611bcf565b606091505b508051611bee5760405162461bcd60e51b81526004016107d3906123ee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061172d565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611c6c84610d0c565b611c769190612ab2565b600083815260076020526040902054909150808214611cc9576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d0e90600190612ab2565b60008381526009602052604081205460088054939450909284908110611d4457634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611d7357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611db957634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611de083610d0c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e3f5760405162461bcd60e51b81526004016107d3906126e2565b611e4881611621565b15611e655760405162461bcd60e51b81526004016107d390612486565b611e7160008383611a44565b6001600160a01b0382166000908152600360205260408120805460019290611e9a908490612a67565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611f0a90612af5565b90600052602060002090601f016020900481019282611f2c5760008555611f72565b82601f10611f4557805160ff1916838001178555611f72565b82800160010185558215611f72579182015b82811115611f72578251825591602001919060010190611f57565b50611f7e929150611f82565b5090565b5b80821115611f7e5760008155600101611f83565b600067ffffffffffffffff80841115611fb257611fb2612b8b565b604051601f8501601f191681016020018281118282101715611fd657611fd6612b8b565b604052848152915081838501861015611fee57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461071557600080fd5b60006020828403121561202f578081fd5b61144e82612007565b6000806040838503121561204a578081fd5b61205383612007565b915061206160208401612007565b90509250929050565b60008060006060848603121561207e578081fd5b61208784612007565b925061209560208501612007565b9150604084013590509250925092565b600080600080608085870312156120ba578081fd5b6120c385612007565b93506120d160208601612007565b925060408501359150606085013567ffffffffffffffff8111156120f3578182fd5b8501601f81018713612103578182fd5b61211287823560208401611f97565b91505092959194509250565b60008060408385031215612130578182fd5b61213983612007565b91506020830135801515811461214d578182fd5b809150509250929050565b6000806040838503121561216a578182fd5b61217383612007565b946020939093013593505050565b60008060208385031215612193578182fd5b823567ffffffffffffffff808211156121aa578384fd5b818501915085601f8301126121bd578384fd5b8135818111156121cb578485fd5b86602080830285010111156121de578485fd5b60209290920196919550909350505050565b600060208284031215612201578081fd5b813561144e81612ba1565b60006020828403121561221d578081fd5b815161144e81612ba1565b600060208284031215612239578081fd5b813567ffffffffffffffff81111561224f578182fd5b8201601f8101841361225f578182fd5b61172d84823560208401611f97565b60006020828403121561227f578081fd5b5035919050565b6000815180845261229e816020860160208601612ac9565b601f01601f19169290920160200192915050565b600083516122c4818460208801612ac9565b8351908301906122d8818360208801612ac9565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232b90830184612286565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b60006020825261144e6020830184612286565b6020808252601f908201527f53616c65206d7573742062652061637469766520746f206d696e74204e465400604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526018908201527f5472616e73666572206661696c656420746f2041686d65640000000000000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601f908201527f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526017908201527f45544820616d6f756e7420697320696e636f7272656374000000000000000000604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260139082015272496e737566666963656e742062616c616e636560681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526017908201527f41646472657373206e6f742077686974656c6973746564000000000000000000604082015260600190565b60208082526018908201527f5472616e73666572206661696c656420746f206f776e65720000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526017908201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526027908201527f50757263686173652065786365656473206d617820616c6c6f77656420706572604082015266081dd85b1b195d60ca1b606082015260800190565b90815260200190565b60008219821115612a7a57612a7a612b5f565b500190565b600082612a8e57612a8e612b75565b500490565b6000816000190483118215151615612aad57612aad612b5f565b500290565b600082821015612ac457612ac4612b5f565b500390565b60005b83811015612ae4578181015183820152602001612acc565b838111156113885750506000910152565b600281046001821680612b0957607f821691505b60208210811415612b2a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b4457612b44612b5f565b5060010190565b600082612b5a57612b5a612b75565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115d857600080fdfea2646970667358221220ce96ec3aeae06f96e95329efbf062e66e77b68865637b4d5ad5155935de501fb64736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000622e3f30

-----Decoded View---------------
Arg [0] : _publicSaleStartTimestamp (uint256): 1647198000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000622e3f30


Deployed Bytecode Sourcemap

43337:4414:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34717:224;;;;;;;;;;-1:-1:-1;34717:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21620:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23179:221::-;;;;;;;;;;-1:-1:-1;23179:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22702:411::-;;;;;;;;;;-1:-1:-1;22702:411:0;;;;;:::i;:::-;;:::i;:::-;;35357:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24069:339::-;;;;;;;;;;-1:-1:-1;24069:339:0;;;;;:::i;:::-;;:::i;44668:114::-;;;;;;;;;;-1:-1:-1;44668:114:0;;;;;:::i;:::-;;:::i;35025:256::-;;;;;;;;;;-1:-1:-1;35025:256:0;;;;;:::i;:::-;;:::i;46080:89::-;;;;;;;;;;;;;:::i;44790:252::-;;;;;;;;;;-1:-1:-1;44790:252:0;;;;;:::i;:::-;;:::i;24479:185::-;;;;;;;;;;-1:-1:-1;24479:185:0;;;;;:::i;:::-;;:::i;46181:142::-;;;;;;;;;;;;;:::i;35547:233::-;;;;;;;;;;-1:-1:-1;35547:233:0;;;;;:::i;:::-;;:::i;44378:282::-;;;;;;;;;;-1:-1:-1;44378:282:0;;;;;:::i;:::-;;:::i;46331:140::-;;;;;;;;;;-1:-1:-1;46331:140:0;;;;;:::i;:::-;;:::i;46613:96::-;;;;;;;;;;-1:-1:-1;46613:96:0;;;;;:::i;:::-;;:::i;43493:46::-;;;;;;;;;;;;;:::i;21314:239::-;;;;;;;;;;-1:-1:-1;21314:239:0;;;;;:::i;:::-;;:::i;46837:106::-;;;;;;;;;;-1:-1:-1;46837:106:0;;;;;:::i;:::-;;:::i;43448:38::-;;;;;;;;;;;;;:::i;21044:208::-;;;;;;;;;;-1:-1:-1;21044:208:0;;;;;:::i;:::-;;:::i;42514:94::-;;;;;;;;;;;;;:::i;44094:276::-;;;;;;;;;;-1:-1:-1;44094:276:0;;;;;:::i;:::-;;:::i;47202:543::-;;;;;;;;;;;;;:::i;46951:122::-;;;;;;;;;;-1:-1:-1;46951:122:0;;;;;:::i;:::-;;:::i;41863:87::-;;;;;;;;;;;;;:::i;45050:1022::-;;;;;;:::i;:::-;;:::i;21789:104::-;;;;;;;;;;;;;:::i;23472:295::-;;;;;;;;;;-1:-1:-1;23472:295:0;;;;;:::i;:::-;;:::i;43403:36::-;;;;;;;;;;;;;:::i;24735:328::-;;;;;;;;;;-1:-1:-1;24735:328:0;;;;;:::i;:::-;;:::i;46717:112::-;;;;;;;;;;-1:-1:-1;46717:112:0;;;;;:::i;:::-;;:::i;21964:334::-;;;;;;;;;;-1:-1:-1;21964:334:0;;;;;:::i;:::-;;:::i;43552:34::-;;;;;;;;;;;;;:::i;43732:26::-;;;;;;;;;;;;;:::i;43684:39::-;;;;;;;;;;;;;:::i;46479:126::-;;;;;;;;;;-1:-1:-1;46479:126:0;;;;;:::i;:::-;;:::i;23838:164::-;;;;;;;;;;-1:-1:-1;23838:164:0;;;;;:::i;:::-;;:::i;43643:32::-;;;;;;;;;;;;;:::i;42763:192::-;;;;;;;;;;-1:-1:-1;42763:192:0;;;;;:::i;:::-;;:::i;43593:41::-;;;;;;;;;;;;;:::i;34717:224::-;34819:4;-1:-1:-1;;;;;;34843:50:0;;-1:-1:-1;;;34843:50:0;;:90;;;34897:36;34921:11;34897:23;:36::i;:::-;34836:97;;34717:224;;;;:::o;21620:100::-;21674:13;21707:5;21700:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21620:100;:::o;23179:221::-;23255:7;23283:16;23291:7;23283;:16::i;:::-;23275:73;;;;-1:-1:-1;;;23275:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23368:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23368:24:0;;23179:221::o;22702:411::-;22783:13;22799:23;22814:7;22799:14;:23::i;:::-;22783:39;;22847:5;-1:-1:-1;;;;;22841:11:0;:2;-1:-1:-1;;;;;22841:11:0;;;22833:57;;;;-1:-1:-1;;;22833:57:0;;;;;;;:::i;:::-;22941:5;-1:-1:-1;;;;;22925:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22925:21:0;;:62;;;;22950:37;22967:5;22974:12;:10;:12::i;22950:37::-;22903:168;;;;-1:-1:-1;;;22903:168:0;;;;;;;:::i;:::-;23084:21;23093:2;23097:7;23084:8;:21::i;:::-;22702:411;;;:::o;35357:113::-;35445:10;:17;35357:113;:::o;24069:339::-;24264:41;24283:12;:10;:12::i;:::-;24297:7;24264:18;:41::i;:::-;24256:103;;;;-1:-1:-1;;;24256:103:0;;;;;;;:::i;:::-;24372:28;24382:4;24388:2;24392:7;24372:9;:28::i;44668:114::-;-1:-1:-1;;;;;44757:17:0;44733:4;44757:17;;;:11;:17;;;;;;;;;44668:114::o;35025:256::-;35122:7;35158:23;35175:5;35158:16;:23::i;:::-;35150:5;:31;35142:87;;;;-1:-1:-1;;;35142:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35247:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35025:256::o;46080:89::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;46149:12:::1;::::0;;-1:-1:-1;;46133:28:0;::::1;46149:12;::::0;;::::1;46148:13;46133:28;::::0;;46080:89::o;44790:252::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;44883:6:::1;44878:157;44899:12;44895:1;:16;44878:157;;;44947:15;44965:13;:11;:13::i;:::-;44947:31;;44993:30;45003:10;45015:7;44993:9;:30::i;:::-;-1:-1:-1::0;44913:3:0;::::1;::::0;::::1;:::i;:::-;;;;44878:157;;;;44790:252:::0;:::o;24479:185::-;24617:39;24634:4;24640:2;24644:7;24617:39;;;;;;;;;;;;:16;:39::i;46181:142::-;46232:4;46275:24;;46256:15;:43;;46255:60;;46310:5;46255:60;;;46303:4;46255:60;46248:67;;46181:142;:::o;35547:233::-;35622:7;35658:30;:28;:30::i;:::-;35650:5;:38;35642:95;;;;-1:-1:-1;;;35642:95:0;;;;;;;:::i;:::-;35755:10;35766:5;35755:17;;;;;;-1:-1:-1;;;35755:17:0;;;;;;;;;;;;;;;;;35748:24;;35547:233;;;:::o;44378:282::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;44472:9:::1;44467:186;44487:20:::0;;::::1;44467:186;;;44561:1;44537:9:::0;;44547:1;44537:12;;::::1;;;-1:-1:-1::0;;;44537:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44537:26:0::1;;;44529:62;;;;-1:-1:-1::0;;;44529:62:0::1;;;;;;;:::i;:::-;44636:5;44608:11;:25;44620:9;;44630:1;44620:12;;;;;-1:-1:-1::0;;;44620:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44608:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;44608:25:0;:33;;-1:-1:-1;;44608:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44509:3;::::1;::::0;::::1;:::i;:::-;;;;44467:186;;46331:140:::0;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;46402:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46440:23;46455:7;46440:23;;;;;;:::i;:::-;;;;;;;;46331:140:::0;:::o;46613:96::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;46682:9:::1;:19:::0;46613:96::o;43493:46::-;;;;:::o;21314:239::-;21386:7;21422:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21422:16:0;21457:19;21449:73;;;;-1:-1:-1;;;21449:73:0;;;;;;;:::i;46837:106::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;46911:14:::1;:24:::0;46837:106::o;43448:38::-;;;;:::o;21044:208::-;21116:7;-1:-1:-1;;;;;21144:19:0;;21136:74;;;;-1:-1:-1;;;21136:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21228:16:0;;;;;:9;:16;;;;;;;21044:208::o;42514:94::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;42579:21:::1;42597:1;42579:9;:21::i;:::-;42514:94::o:0;44094:276::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;44183:9:::1;44178:185;44198:20:::0;;::::1;44178:185;;;44272:1;44248:9:::0;;44258:1;44248:12;;::::1;;;-1:-1:-1::0;;;44248:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44248:26:0::1;;;44240:62;;;;-1:-1:-1::0;;;44240:62:0::1;;;;;;;:::i;:::-;44347:4;44319:11;:25;44331:9;;44341:1;44331:12;;;;;-1:-1:-1::0;;;44331:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44319:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;44319:25:0;:32;;-1:-1:-1;;44319:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44220:3;::::1;::::0;::::1;:::i;:::-;;;;44178:185;;47202:543:::0;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;47271:21:::1;47311:11:::0;47303:43:::1;;;;-1:-1:-1::0;;;47303:43:0::1;;;;;;;:::i;:::-;47359:16;47396:4;47379:13;:7:::0;47389:3:::1;47379:13;:::i;:::-;47378:22;;;;:::i;:::-;47359:41:::0;-1:-1:-1;47411:13:0::1;47427:18;47359:41:::0;47427:7;:18:::1;:::i;:::-;47411:34;;47459:12;47485:42;-1:-1:-1::0;;;;;47477:56:0::1;47541:8;47477:77;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47458:96;;;47573:7;47565:44;;;;-1:-1:-1::0;;;47565:44:0::1;;;;;;;:::i;:::-;47623:13;47650:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;47642:21:0::1;47671:5;47642:39;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47622:59;;;47700:8;47692:45;;;;-1:-1:-1::0;;;47692:45:0::1;;;;;;;:::i;:::-;42154:1;;;;;47202:543::o:0;46951:122::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;47033:22:::1;:32:::0;46951:122::o;41863:87::-;41936:6;;-1:-1:-1;;;;;41936:6:0;41863:87;:::o;45050:1022::-;45125:12;;;;45117:56;;;;-1:-1:-1;;;45117:56:0;;;;;;;:::i;:::-;45224:14;;45208:12;45192:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:46;;45184:90;;;;-1:-1:-1;;;45184:90:0;;;;;;;:::i;:::-;45290:21;:19;:21::i;:::-;45287:566;;;45364:9;45348:12;45336:9;;:24;;;;:::i;:::-;:37;45328:73;;;;-1:-1:-1;;;45328:73:0;;;;;;;:::i;:::-;45464:14;;45448:12;45424:21;45434:10;45424:9;:21::i;:::-;:36;;;;:::i;:::-;:54;;45416:106;;;;-1:-1:-1;;;45416:106:0;;;;;;;:::i;:::-;45287:566;;;45577:10;45565:23;;;;:11;:23;;;;;;;;45557:59;;;;-1:-1:-1;;;45557:59:0;;;;;;;:::i;:::-;45675:9;45659:12;45639:17;;:32;;;;:::i;:::-;:45;45631:81;;;;-1:-1:-1;;;45631:81:0;;;;;;;:::i;:::-;45775:22;;45759:12;45735:21;45745:10;45735:9;:21::i;:::-;:36;;;;:::i;:::-;:62;;45727:114;;;;-1:-1:-1;;;45727:114:0;;;;;;;:::i;:::-;45870:9;45865:148;45889:12;45885:1;:16;45865:148;;;45923:15;45941:13;:11;:13::i;:::-;45923:31;;45971:30;45981:10;45993:7;45971:9;:30::i;:::-;-1:-1:-1;45903:3:0;;;;:::i;:::-;;;;45865:148;;;;46030:34;46039:10;46051:12;46030:34;;;;;;;:::i;21789:104::-;21845:13;21878:7;21871:14;;;;;:::i;23472:295::-;23587:12;:10;:12::i;:::-;-1:-1:-1;;;;;23575:24:0;:8;-1:-1:-1;;;;;23575:24:0;;;23567:62;;;;-1:-1:-1;;;23567:62:0;;;;;;;:::i;:::-;23687:8;23642:18;:32;23661:12;:10;:12::i;:::-;-1:-1:-1;;;;;23642:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23642:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23642:53:0;;;;;;;;;;;23726:12;:10;:12::i;:::-;-1:-1:-1;;;;;23711:48:0;;23750:8;23711:48;;;;;;:::i;:::-;;;;;;;;23472:295;;:::o;43403:36::-;;;;:::o;24735:328::-;24910:41;24929:12;:10;:12::i;:::-;24943:7;24910:18;:41::i;:::-;24902:103;;;;-1:-1:-1;;;24902:103:0;;;;;;;:::i;:::-;25016:39;25030:4;25036:2;25040:7;25049:5;25016:13;:39::i;:::-;24735:328;;;;:::o;46717:112::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;46794:17:::1;:27:::0;46717:112::o;21964:334::-;22037:13;22071:16;22079:7;22071;:16::i;:::-;22063:76;;;;-1:-1:-1;;;22063:76:0;;;;;;;:::i;:::-;22152:21;22176:10;:8;:10::i;:::-;22152:34;;22228:1;22210:7;22204:21;:25;:86;;;;;;;;;;;;;;;;;22256:7;22265:18;:7;:16;:18::i;:::-;22239:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22204:86;22197:93;21964:334;-1:-1:-1;;;21964:334:0:o;43552:34::-;;;;:::o;43732:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43684:39::-;;;;:::o;46479:126::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;46563:24:::1;:34:::0;46479:126::o;23838:164::-;-1:-1:-1;;;;;23959:25:0;;;23935:4;23959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23838:164::o;43643:32::-;;;;;;:::o;42763:192::-;42094:12;:10;:12::i;:::-;-1:-1:-1;;;;;42083:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42083:23:0;;42075:68;;;;-1:-1:-1;;;42075:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42852:22:0;::::1;42844:73;;;;-1:-1:-1::0;;;42844:73:0::1;;;;;;;:::i;:::-;42928:19;42938:8;42928:9;:19::i;:::-;42763:192:::0;:::o;43593:41::-;;;;:::o;20675:305::-;20777:4;-1:-1:-1;;;;;;20814:40:0;;-1:-1:-1;;;20814:40:0;;:105;;-1:-1:-1;;;;;;;20871:48:0;;-1:-1:-1;;;20871:48:0;20814:105;:158;;;;20936:36;20960:11;20936:23;:36::i;26573:127::-;26638:4;26662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26662:16:0;:30;;;26573:127::o;16107:98::-;16187:10;16107:98;:::o;30555:174::-;30630:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30630:29:0;-1:-1:-1;;;;;30630:29:0;;;;;;;;:24;;30684:23;30630:24;30684:14;:23::i;:::-;-1:-1:-1;;;;;30675:46:0;;;;;;;;;;;30555:174;;:::o;26867:348::-;26960:4;26985:16;26993:7;26985;:16::i;:::-;26977:73;;;;-1:-1:-1;;;26977:73:0;;;;;;;:::i;:::-;27061:13;27077:23;27092:7;27077:14;:23::i;:::-;27061:39;;27130:5;-1:-1:-1;;;;;27119:16:0;:7;-1:-1:-1;;;;;27119:16:0;;:51;;;;27163:7;-1:-1:-1;;;;;27139:31:0;:20;27151:7;27139:11;:20::i;:::-;-1:-1:-1;;;;;27139:31:0;;27119:51;:87;;;;27174:32;27191:5;27198:7;27174:16;:32::i;:::-;27111:96;26867:348;-1:-1:-1;;;;26867:348:0:o;29859:578::-;30018:4;-1:-1:-1;;;;;29991:31:0;:23;30006:7;29991:14;:23::i;:::-;-1:-1:-1;;;;;29991:31:0;;29983:85;;;;-1:-1:-1;;;29983:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30087:16:0;;30079:65;;;;-1:-1:-1;;;30079:65:0;;;;;;;:::i;:::-;30157:39;30178:4;30184:2;30188:7;30157:20;:39::i;:::-;30261:29;30278:1;30282:7;30261:8;:29::i;:::-;-1:-1:-1;;;;;30303:15:0;;;;;;:9;:15;;;;;:20;;30322:1;;30303:15;:20;;30322:1;;30303:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30334:13:0;;;;;;:9;:13;;;;;:18;;30351:1;;30334:13;:18;;30351:1;;30334:18;:::i;:::-;;;;-1:-1:-1;;30363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30363:21:0;-1:-1:-1;;;;;30363:21:0;;;;;;;;;30402:27;;30363:16;;30402:27;;;;;;;29859:578;;;:::o;27557:110::-;27633:26;27643:2;27647:7;27633:26;;;;;;;;;;;;:9;:26::i;42963:173::-;43038:6;;;-1:-1:-1;;;;;43055:17:0;;;-1:-1:-1;;;;;;43055:17:0;;;;;;;43088:40;;43038:6;;;43055:17;43038:6;;43088:40;;43019:16;;43088:40;42963:173;;:::o;25945:315::-;26102:28;26112:4;26118:2;26122:7;26102:9;:28::i;:::-;26149:48;26172:4;26178:2;26182:7;26191:5;26149:22;:48::i;:::-;26141:111;;;;-1:-1:-1;;;26141:111:0;;;;;;;:::i;47081:113::-;47141:13;47174:12;47167:19;;;;;:::i;16634:723::-;16690:13;16911:10;16907:53;;-1:-1:-1;16938:10:0;;;;;;;;;;;;-1:-1:-1;;;16938:10:0;;;;;;16907:53;16985:5;16970:12;17026:78;17033:9;;17026:78;;17059:8;;;;:::i;:::-;;-1:-1:-1;17082:10:0;;-1:-1:-1;17090:2:0;17082:10;;:::i;:::-;;;17026:78;;;17114:19;17146:6;17136:17;;;;;;-1:-1:-1;;;17136:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17136:17:0;;17114:39;;17164:154;17171:10;;17164:154;;17198:11;17208:1;17198:11;;:::i;:::-;;-1:-1:-1;17267:10:0;17275:2;17267:5;:10;:::i;:::-;17254:24;;:2;:24;:::i;:::-;17241:39;;17224:6;17231;17224:14;;;;;;-1:-1:-1;;;17224:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17224:56:0;;;;;;;;-1:-1:-1;17295:11:0;17304:2;17295:11;;:::i;:::-;;;17164:154;;19191:157;-1:-1:-1;;;;;;19300:40:0;;-1:-1:-1;;;19300:40:0;19191:157;;;:::o;36393:589::-;36537:45;36564:4;36570:2;36574:7;36537:26;:45::i;:::-;-1:-1:-1;;;;;36599:18:0;;36595:187;;36634:40;36666:7;36634:31;:40::i;:::-;36595:187;;;36704:2;-1:-1:-1;;;;;36696:10:0;:4;-1:-1:-1;;;;;36696:10:0;;36692:90;;36723:47;36756:4;36762:7;36723:32;:47::i;:::-;-1:-1:-1;;;;;36796:16:0;;36792:183;;36829:45;36866:7;36829:36;:45::i;:::-;36792:183;;;36902:4;-1:-1:-1;;;;;36896:10:0;:2;-1:-1:-1;;;;;36896:10:0;;36892:83;;36923:40;36951:2;36955:7;36923:27;:40::i;27894:321::-;28024:18;28030:2;28034:7;28024:5;:18::i;:::-;28075:54;28106:1;28110:2;28114:7;28123:5;28075:22;:54::i;:::-;28053:154;;;;-1:-1:-1;;;28053:154:0;;;;;;;:::i;31294:799::-;31449:4;31470:15;:2;-1:-1:-1;;;;;31470:13:0;;:15::i;:::-;31466:620;;;31522:2;-1:-1:-1;;;;;31506:36:0;;31543:12;:10;:12::i;:::-;31557:4;31563:7;31572:5;31506:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31506:72:0;;;;;;;;-1:-1:-1;;31506:72:0;;;;;;;;;;;;:::i;:::-;;;31502:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31748:13:0;;31744:272;;31791:60;;-1:-1:-1;;;31791:60:0;;;;;;;:::i;31744:272::-;31966:6;31960:13;31951:6;31947:2;31943:15;31936:38;31502:529;-1:-1:-1;;;;;;31629:51:0;-1:-1:-1;;;31629:51:0;;-1:-1:-1;31622:58:0;;31466:620;-1:-1:-1;32070:4:0;31294:799;;;;;;:::o;37705:164::-;37809:10;:17;;37782:24;;;;:15;:24;;;;;:44;;;37837:24;;;;;;;;;;;;37705:164::o;38496:988::-;38762:22;38812:1;38787:22;38804:4;38787:16;:22::i;:::-;:26;;;;:::i;:::-;38824:18;38845:26;;;:17;:26;;;;;;38762:51;;-1:-1:-1;38978:28:0;;;38974:328;;-1:-1:-1;;;;;39045:18:0;;39023:19;39045:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39096:30;;;;;;:44;;;39213:30;;:17;:30;;;;;:43;;;38974:328;-1:-1:-1;39398:26:0;;;;:17;:26;;;;;;;;39391:33;;;-1:-1:-1;;;;;39442:18:0;;;;;:12;:18;;;;;:34;;;;;;;39435:41;38496:988::o;39779:1079::-;40057:10;:17;40032:22;;40057:21;;40077:1;;40057:21;:::i;:::-;40089:18;40110:24;;;:15;:24;;;;;;40483:10;:26;;40032:46;;-1:-1:-1;40110:24:0;;40032:46;;40483:26;;;;-1:-1:-1;;;40483:26:0;;;;;;;;;;;;;;;;;40461:48;;40547:11;40522:10;40533;40522:22;;;;;;-1:-1:-1;;;40522:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40627:28;;;:15;:28;;;;;;;:41;;;40799:24;;;;;40792:31;40834:10;:16;;;;;-1:-1:-1;;;40834:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39779:1079;;;;:::o;37283:221::-;37368:14;37385:20;37402:2;37385:16;:20::i;:::-;-1:-1:-1;;;;;37416:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37461:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37283:221:0:o;28551:382::-;-1:-1:-1;;;;;28631:16:0;;28623:61;;;;-1:-1:-1;;;28623:61:0;;;;;;;:::i;:::-;28704:16;28712:7;28704;:16::i;:::-;28703:17;28695:58;;;;-1:-1:-1;;;28695:58:0;;;;;;;:::i;:::-;28766:45;28795:1;28799:2;28803:7;28766:20;:45::i;:::-;-1:-1:-1;;;;;28824:13:0;;;;;;:9;:13;;;;;:18;;28841:1;;28824:13;:18;;28841:1;;28824:18;:::i;:::-;;;;-1:-1:-1;;28853:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28853:21:0;-1:-1:-1;;;;;28853:21:0;;;;;;;;28892:33;;28853:16;;;28892:33;;28853:16;;28892:33;28551:382;;:::o;8149:387::-;8472:20;8520:8;;;8149:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:257::-;;3769:2;3757:9;3748:7;3744:23;3740:32;3737:2;;;3790:6;3782;3775:22;3737:2;3834:9;3821:23;3853:32;3879:5;3853:32;:::i;3920:261::-;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4100:9;4094:16;4119:32;4145:5;4119:32;:::i;4186:482::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4407:18;4399:6;4396:30;4393:2;;;4444:6;4436;4429:22;4393:2;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:2:1;;4559:6;4551;4544:22;4503:2;4587:75;4654:7;4649:2;4636:16;4631:2;4627;4623:11;4587:75;:::i;4673:190::-;;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;-1:-1:-1;4834:23:1;;4743:120;-1:-1:-1;4743:120:1:o;4868:259::-;;4949:5;4943:12;4976:6;4971:3;4964:19;4992:63;5048:6;5041:4;5036:3;5032:14;5025:4;5018:5;5014:16;4992:63;:::i;:::-;5109:2;5088:15;-1:-1:-1;;5084:29:1;5075:39;;;;5116:4;5071:50;;4919:208;-1:-1:-1;;4919:208:1:o;5132:470::-;;5349:6;5343:13;5365:53;5411:6;5406:3;5399:4;5391:6;5387:17;5365:53;:::i;:::-;5481:13;;5440:16;;;;5503:57;5481:13;5440:16;5537:4;5525:17;;5503:57;:::i;:::-;5576:20;;5319:283;-1:-1:-1;;;;5319:283:1:o;5607:205::-;5807:3;5798:14::o;5817:203::-;-1:-1:-1;;;;;5981:32:1;;;;5963:51;;5951:2;5936:18;;5918:102::o;6025:490::-;-1:-1:-1;;;;;6294:15:1;;;6276:34;;6346:15;;6341:2;6326:18;;6319:43;6393:2;6378:18;;6371:34;;;6441:3;6436:2;6421:18;;6414:31;;;6025:490;;6462:47;;6489:19;;6481:6;6462:47;:::i;:::-;6454:55;6228:287;-1:-1:-1;;;;;;6228:287:1:o;6520:274::-;-1:-1:-1;;;;;6712:32:1;;;;6694:51;;6776:2;6761:18;;6754:34;6682:2;6667:18;;6649:145::o;6799:187::-;6964:14;;6957:22;6939:41;;6927:2;6912:18;;6894:92::o;6991:221::-;;7140:2;7129:9;7122:21;7160:46;7202:2;7191:9;7187:18;7179:6;7160:46;:::i;7217:355::-;7419:2;7401:21;;;7458:2;7438:18;;;7431:30;7497:33;7492:2;7477:18;;7470:61;7563:2;7548:18;;7391:181::o;7577:407::-;7779:2;7761:21;;;7818:2;7798:18;;;7791:30;7857:34;7852:2;7837:18;;7830:62;-1:-1:-1;;;7923:2:1;7908:18;;7901:41;7974:3;7959:19;;7751:233::o;7989:414::-;8191:2;8173:21;;;8230:2;8210:18;;;8203:30;8269:34;8264:2;8249:18;;8242:62;-1:-1:-1;;;8335:2:1;8320:18;;8313:48;8393:3;8378:19;;8163:240::o;8408:402::-;8610:2;8592:21;;;8649:2;8629:18;;;8622:30;8688:34;8683:2;8668:18;;8661:62;-1:-1:-1;;;8754:2:1;8739:18;;8732:36;8800:3;8785:19;;8582:228::o;8815:352::-;9017:2;8999:21;;;9056:2;9036:18;;;9029:30;9095;9090:2;9075:18;;9068:58;9158:2;9143:18;;8989:178::o;9172:400::-;9374:2;9356:21;;;9413:2;9393:18;;;9386:30;9452:34;9447:2;9432:18;;9425:62;-1:-1:-1;;;9518:2:1;9503:18;;9496:34;9562:3;9547:19;;9346:226::o;9577:349::-;9779:2;9761:21;;;9818:2;9798:18;;;9791:30;9857:27;9852:2;9837:18;;9830:55;9917:2;9902:18;;9751:175::o;9931:408::-;10133:2;10115:21;;;10172:2;10152:18;;;10145:30;10211:34;10206:2;10191:18;;10184:62;-1:-1:-1;;;10277:2:1;10262:18;;10255:42;10329:3;10314:19;;10105:234::o;10344:348::-;10546:2;10528:21;;;10585:2;10565:18;;;10558:30;10624:26;10619:2;10604:18;;10597:54;10683:2;10668:18;;10518:174::o;10697:420::-;10899:2;10881:21;;;10938:2;10918:18;;;10911:30;10977:34;10972:2;10957:18;;10950:62;11048:26;11043:2;11028:18;;11021:54;11107:3;11092:19;;10871:246::o;11122:406::-;11324:2;11306:21;;;11363:2;11343:18;;;11336:30;11402:34;11397:2;11382:18;;11375:62;-1:-1:-1;;;11468:2:1;11453:18;;11446:40;11518:3;11503:19;;11296:232::o;11533:405::-;11735:2;11717:21;;;11774:2;11754:18;;;11747:30;11813:34;11808:2;11793:18;;11786:62;-1:-1:-1;;;11879:2:1;11864:18;;11857:39;11928:3;11913:19;;11707:231::o;11943:355::-;12145:2;12127:21;;;12184:2;12164:18;;;12157:30;12223:33;12218:2;12203:18;;12196:61;12289:2;12274:18;;12117:181::o;12303:356::-;12505:2;12487:21;;;12524:18;;;12517:30;12583:34;12578:2;12563:18;;12556:62;12650:2;12635:18;;12477:182::o;12664:347::-;12866:2;12848:21;;;12905:2;12885:18;;;12878:30;12944:25;12939:2;12924:18;;12917:53;13002:2;12987:18;;12838:173::o;13016:408::-;13218:2;13200:21;;;13257:2;13237:18;;;13230:30;13296:34;13291:2;13276:18;;13269:62;-1:-1:-1;;;13362:2:1;13347:18;;13340:42;13414:3;13399:19;;13190:234::o;13429:343::-;13631:2;13613:21;;;13670:2;13650:18;;;13643:30;-1:-1:-1;;;13704:2:1;13689:18;;13682:49;13763:2;13748:18;;13603:169::o;13777:356::-;13979:2;13961:21;;;13998:18;;;13991:30;14057:34;14052:2;14037:18;;14030:62;14124:2;14109:18;;13951:182::o;14138:405::-;14340:2;14322:21;;;14379:2;14359:18;;;14352:30;14418:34;14413:2;14398:18;;14391:62;-1:-1:-1;;;14484:2:1;14469:18;;14462:39;14533:3;14518:19;;14312:231::o;14548:411::-;14750:2;14732:21;;;14789:2;14769:18;;;14762:30;14828:34;14823:2;14808:18;;14801:62;-1:-1:-1;;;14894:2:1;14879:18;;14872:45;14949:3;14934:19;;14722:237::o;14964:347::-;15166:2;15148:21;;;15205:2;15185:18;;;15178:30;15244:25;15239:2;15224:18;;15217:53;15302:2;15287:18;;15138:173::o;15316:348::-;15518:2;15500:21;;;15557:2;15537:18;;;15530:30;15596:26;15591:2;15576:18;;15569:54;15655:2;15640:18;;15490:174::o;15669:397::-;15871:2;15853:21;;;15910:2;15890:18;;;15883:30;15949:34;15944:2;15929:18;;15922:62;-1:-1:-1;;;16015:2:1;16000:18;;15993:31;16056:3;16041:19;;15843:223::o;16071:347::-;16273:2;16255:21;;;16312:2;16292:18;;;16285:30;16351:25;16346:2;16331:18;;16324:53;16409:2;16394:18;;16245:173::o;16423:413::-;16625:2;16607:21;;;16664:2;16644:18;;;16637:30;16703:34;16698:2;16683:18;;16676:62;-1:-1:-1;;;16769:2:1;16754:18;;16747:47;16826:3;16811:19;;16597:239::o;16841:408::-;17043:2;17025:21;;;17082:2;17062:18;;;17055:30;17121:34;17116:2;17101:18;;17094:62;-1:-1:-1;;;17187:2:1;17172:18;;17165:42;17239:3;17224:19;;17015:234::o;17254:403::-;17456:2;17438:21;;;17495:2;17475:18;;;17468:30;17534:34;17529:2;17514:18;;17507:62;-1:-1:-1;;;17600:2:1;17585:18;;17578:37;17647:3;17632:19;;17428:229::o;17662:177::-;17808:25;;;17796:2;17781:18;;17763:76::o;17844:128::-;;17915:1;17911:6;17908:1;17905:13;17902:2;;;17921:18;;:::i;:::-;-1:-1:-1;17957:9:1;;17892:80::o;17977:120::-;;18043:1;18033:2;;18048:18;;:::i;:::-;-1:-1:-1;18082:9:1;;18023:74::o;18102:168::-;;18208:1;18204;18200:6;18196:14;18193:1;18190:21;18185:1;18178:9;18171:17;18167:45;18164:2;;;18215:18;;:::i;:::-;-1:-1:-1;18255:9:1;;18154:116::o;18275:125::-;;18343:1;18340;18337:8;18334:2;;;18348:18;;:::i;:::-;-1:-1:-1;18385:9:1;;18324:76::o;18405:258::-;18477:1;18487:113;18501:6;18498:1;18495:13;18487:113;;;18577:11;;;18571:18;18558:11;;;18551:39;18523:2;18516:10;18487:113;;;18618:6;18615:1;18612:13;18609:2;;;-1:-1:-1;;18653:1:1;18635:16;;18628:27;18458:205::o;18668:380::-;18753:1;18743:12;;18800:1;18790:12;;;18811:2;;18865:4;18857:6;18853:17;18843:27;;18811:2;18918;18910:6;18907:14;18887:18;18884:38;18881:2;;;18964:10;18959:3;18955:20;18952:1;18945:31;18999:4;18996:1;18989:15;19027:4;19024:1;19017:15;18881:2;;18723:325;;;:::o;19053:135::-;;-1:-1:-1;;19113:17:1;;19110:2;;;19133:18;;:::i;:::-;-1:-1:-1;19180:1:1;19169:13;;19100:88::o;19193:112::-;;19251:1;19241:2;;19256:18;;:::i;:::-;-1:-1:-1;19290:9:1;;19231:74::o;19310:127::-;19371:10;19366:3;19362:20;19359:1;19352:31;19402:4;19399:1;19392:15;19426:4;19423:1;19416:15;19442:127;19503:10;19498:3;19494:20;19491:1;19484:31;19534:4;19531:1;19524:15;19558:4;19555:1;19548:15;19574:127;19635:10;19630:3;19626:20;19623:1;19616:31;19666:4;19663:1;19656:15;19690:4;19687:1;19680:15;19706:133;-1:-1:-1;;;;;;19782:32:1;;19772:43;;19762:2;;19829:1;19826;19819:12

Swarm Source

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