ETH Price: $2,371.06 (+1.63%)

Token

CryptoCapitalCollective (CCC)
 

Overview

Max Total Supply

240 CCC

Holders

149

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rogergrove.eth
Balance
1 CCC
0xb1a4f53a4ec0c3a078f233899ed0ce6e46c38769
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:
CryptoCapitalCollective

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Crypto Capital Collective
// SPDX-License-Identifier: MIT

// Sources flattened with hardhat v2.8.3 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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


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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File contracts/CryptoCapitalCollective.sol


pragma solidity ^0.8.4;


contract CryptoCapitalCollective is ERC721Enumerable, Ownable {

    uint256 public PRICE = 0.99 ether;
    uint256 public PRICE_PRESALE = 0.75 ether;

    bool public ACTIVE;
    bool public ACTIVE_PRESALE;
    bool public RESERVED;
    uint8 public RESERVED_LIMIT;
    uint8 public MAX_SELL;
    uint8 public MAX_SELL_PRESALE;
    uint16 public MAX_SUPPLY;

    address private _p1;
    address private _p2;
    address private _p3;
    address private _p4;

    string private _metaURI;

    event Reserved();

    constructor(address p1, address p2, address p3, address p4) ERC721("CryptoCapitalCollective", "CCC") {
        RESERVED_LIMIT = 40;
        MAX_SELL = 10;
        MAX_SELL_PRESALE = 10;
        MAX_SUPPLY = 2500;

        _p1 = p1;
        _p2 = p2;
        _p3 = p3;
        _p4 = p4;
    }

    function flipPreSale() external onlyOwner {
        ACTIVE_PRESALE = !ACTIVE_PRESALE;
    }

    function flipSale() external onlyOwner {
        ACTIVE = !ACTIVE;
    }

    function mintTokens(uint256 amount) external payable {
        require(ACTIVE, "Sale inactive");
        require(amount <= uint(MAX_SELL), "Exceeds max sell");
        require(totalSupply() + amount <= uint(MAX_SUPPLY), "Exceeds max supply");
        require(PRICE * amount == msg.value, "Incorrect ether value");

        uint256 supply = totalSupply();
        for (uint256 i; i < amount; i++) {
            _safeMint(_msgSender(), supply + i);
        }
    }

    function mintTokensPresale(uint256 amount) external payable {
        require(ACTIVE_PRESALE, "Presale inactive");
        require(amount <= uint(MAX_SELL_PRESALE), "Exceeds max sell");
        require(totalSupply() + amount <= uint(MAX_SUPPLY), "Exceeds max supply");
        require(PRICE_PRESALE * amount == msg.value, "Incorrect ether value");

        uint256 supply = totalSupply();
        for (uint256 i; i < amount; i++) {
            _safeMint(_msgSender(), supply + i);
        }
    }

    function reserveTokens() external onlyOwner onReserve {
        uint256 supply = totalSupply();
        for (uint256 i; i < uint(RESERVED_LIMIT); i++) {
            _safeMint(_msgSender(), supply + i);
        }
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        _metaURI = baseURI;
    }

    function setMaxSell(uint8 max) external onlyOwner {
        MAX_SELL = max;
    }

    function setMaxSellPresale(uint8 max) external onlyOwner {
        MAX_SELL_PRESALE = max;
    }

    function setMaxSupply(uint16 max) external onlyOwner {
        MAX_SUPPLY = max;
    }

    function setP1(address p1) external onlyOwner {
        _p1 = p1;
    }

    function setP2(address p2) external onlyOwner {
        _p2 = p2;
    }

    function setPrice(uint256 price) external onlyOwner {
        PRICE = price;
    }

    function setPricePresale(uint256 price) external onlyOwner {
        PRICE_PRESALE = price;
    }

    function withdraw() external onlyOwner {
        uint256 share = address(this).balance / 100;
        Address.sendValue(payable(_p1), share * 92);
        Address.sendValue(payable(_p2), share * 2);
        Address.sendValue(payable(_p3), share * 3);
        Address.sendValue(payable(_p4), share * 3);
    }

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

    modifier onReserve() {
        require(!RESERVED, "Tokens reserved");
        _;
        RESERVED = true;
        emit Reserved();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"p1","type":"address"},{"internalType":"address","name":"p2","type":"address"},{"internalType":"address","name":"p3","type":"address"},{"internalType":"address","name":"p4","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Reserved","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":"ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ACTIVE_PRESALE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL_PRESALE","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_LIMIT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","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":[{"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":"amount","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTokensPresale","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"max","type":"uint8"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"max","type":"uint8"}],"name":"setMaxSellPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"max","type":"uint16"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"p1","type":"address"}],"name":"setP1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"p2","type":"address"}],"name":"setP2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPricePresale","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052670dbd2fc137a30000600b55670a688906bd8b0000600c553480156200002957600080fd5b5060405162002b8e38038062002b8e8339810160408190526200004c9162000268565b604080518082018252601781527f43727970746f4361706974616c436f6c6c65637469766500000000000000000060208083019182528351808501909452600384526243434360e81b908401528151919291620000ac91600091620001a5565b508051620000c2906001906020840190620001a5565b505050620000df620000d96200014f60201b60201c565b62000153565b600d80546001600160a01b0395861668010000000000000000026301000000600160e01b0319909116176709c40a0a28000000179055600e80549385166001600160a01b0319948516179055600f8054928516928416929092179091556010805491909316911617905562000301565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b390620002c4565b90600052602060002090601f016020900481019282620001d7576000855562000222565b82601f10620001f257805160ff191683800117855562000222565b8280016001018555821562000222579182015b828111156200022257825182559160200191906001019062000205565b506200023092915062000234565b5090565b5b8082111562000230576000815560010162000235565b80516001600160a01b03811681146200026357600080fd5b919050565b600080600080608085870312156200027e578384fd5b62000289856200024b565b935062000299602086016200024b565b9250620002a9604086016200024b565b9150620002b9606086016200024b565b905092959194509250565b600181811c90821680620002d957607f821691505b60208210811415620002fb57634e487b7160e01b600052602260045260246000fd5b50919050565b61287d80620003116000396000f3fe6080604052600436106102515760003560e01c80638b62f53311610139578063aa592f25116100b6578063be6da4b11161007a578063be6da4b1146106cd578063c87b56dd146106e0578063c90bd04714610700578063e62a62d11461071a578063e985e9c51461073a578063f2fde38b1461078357600080fd5b8063aa592f2514610636578063acd3d92614610656578063af1c66e314610678578063afa6c73514610697578063b88d4fde146106ad57600080fd5b806397304ced116100fd57806397304ced1461058d5780639748ecb6146105a057806398dad78e146105c05780639a80f2c8146105f3578063a22cb4651461061657600080fd5b80638b62f5331461050f5780638d859f3e146105245780638da5cb5b1461053a57806391b7f5ed1461055857806395d89b411461057857600080fd5b80632f745c59116101d257806355f804b31161019657806355f804b3146104655780635a94133c146104855780636352211e146104a557806370a08231146104c5578063715018a6146104e55780637ba5e621146104fa57600080fd5b80632f745c59146103bb57806332cb6b0c146103db5780633ccfd60b1461041057806342842e0e146104255780634f6ccce71461044557600080fd5b8063095ea7b311610219578063095ea7b31461032757806318160ddd1461034757806323b872dd1461036657806327ac36c4146103865780632c8184a21461039b57600080fd5b806301ffc9a71461025657806303fc6d161461028b57806306421c2f146102ad57806306fdde03146102cd578063081812fc146102ef575b600080fd5b34801561026257600080fd5b5061027661027136600461249b565b6107a3565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612338565b6107ce565b005b3480156102b957600080fd5b506102ab6102c8366004612519565b610823565b3480156102d957600080fd5b506102e2610872565b604051610282919061260c565b3480156102fb57600080fd5b5061030f61030a36600461253b565b610904565b6040516001600160a01b039091168152602001610282565b34801561033357600080fd5b506102ab610342366004612472565b610999565b34801561035357600080fd5b506008545b604051908152602001610282565b34801561037257600080fd5b506102ab610381366004612384565b610aaf565b34801561039257600080fd5b506102ab610ae0565b3480156103a757600080fd5b506102ab6103b6366004612553565b610bdd565b3480156103c757600080fd5b506103586103d6366004612472565b610c2b565b3480156103e757600080fd5b50600d546103fd90600160301b900461ffff1681565b60405161ffff9091168152602001610282565b34801561041c57600080fd5b506102ab610cc1565b34801561043157600080fd5b506102ab610440366004612384565b610d76565b34801561045157600080fd5b5061035861046036600461253b565b610d91565b34801561047157600080fd5b506102ab6104803660046124d3565b610e32565b34801561049157600080fd5b506102ab6104a036600461253b565b610e73565b3480156104b157600080fd5b5061030f6104c036600461253b565b610ea2565b3480156104d157600080fd5b506103586104e0366004612338565b610f19565b3480156104f157600080fd5b506102ab610fa0565b34801561050657600080fd5b506102ab610fd6565b34801561051b57600080fd5b506102ab611014565b34801561053057600080fd5b50610358600b5481565b34801561054657600080fd5b50600a546001600160a01b031661030f565b34801561056457600080fd5b506102ab61057336600461253b565b61105b565b34801561058457600080fd5b506102e261108a565b6102ab61059b36600461253b565b611099565b3480156105ac57600080fd5b506102ab6105bb366004612553565b611218565b3480156105cc57600080fd5b50600d546105e1906301000000900460ff1681565b60405160ff9091168152602001610282565b3480156105ff57600080fd5b50600d546105e19065010000000000900460ff1681565b34801561062257600080fd5b506102ab610631366004612438565b611264565b34801561064257600080fd5b50600d546102769062010000900460ff1681565b34801561066257600080fd5b50600d546105e190640100000000900460ff1681565b34801561068457600080fd5b50600d5461027690610100900460ff1681565b3480156106a357600080fd5b50610358600c5481565b3480156106b957600080fd5b506102ab6106c83660046123bf565b61126f565b6102ab6106db36600461253b565b6112a7565b3480156106ec57600080fd5b506102e26106fb36600461253b565b61142f565b34801561070c57600080fd5b50600d546102769060ff1681565b34801561072657600080fd5b506102ab610735366004612338565b61150a565b34801561074657600080fd5b50610276610755366004612352565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078f57600080fd5b506102ab61079e366004612338565b611565565b60006001600160e01b0319821663780e9d6360e01b14806107c857506107c8826115fd565b92915050565b600a546001600160a01b031633146108015760405162461bcd60e51b81526004016107f890612671565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461084d5760405162461bcd60e51b81526004016107f890612671565b600d805461ffff909216600160301b0267ffff00000000000019909216919091179055565b60606000805461088190612785565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad90612785565b80156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661097d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f8565b506000908152600460205260409020546001600160a01b031690565b60006109a482610ea2565b9050806001600160a01b0316836001600160a01b03161415610a125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f8565b336001600160a01b0382161480610a2e5750610a2e8133610755565b610aa05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f8565b610aaa838361164d565b505050565b610ab933826116bb565b610ad55760405162461bcd60e51b81526004016107f8906126a6565b610aaa8383836117b2565b600a546001600160a01b03163314610b0a5760405162461bcd60e51b81526004016107f890612671565b600d5462010000900460ff1615610b555760405162461bcd60e51b815260206004820152600f60248201526e151bdad95b9cc81c995cd95c9d9959608a1b60448201526064016107f8565b6000610b6060085490565b905060005b600d546301000000900460ff16811015610b9f57610b8d335b610b8883856126f7565b61195d565b80610b97816127c0565b915050610b65565b5050600d805462ff00001916620100001790556040517ffaf3f41ea35a400568360902f791821569be418844cb8bb6481a690b29e8a20990600090a1565b600a546001600160a01b03163314610c075760405162461bcd60e51b81526004016107f890612671565b600d805460ff909216650100000000000265ff000000000019909216919091179055565b6000610c3683610f19565b8210610c985760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107f8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ceb5760405162461bcd60e51b81526004016107f890612671565b6000610cf860644761270f565b600d54909150610d2290600160401b90046001600160a01b0316610d1d83605c612723565b611977565b600e54610d3d906001600160a01b0316610d1d836002612723565b600f54610d58906001600160a01b0316610d1d836003612723565b601054610d73906001600160a01b0316610d1d836003612723565b50565b610aaa8383836040518060200160405280600081525061126f565b6000610d9c60085490565b8210610dff5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f8565b60088281548110610e2057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610e5c5760405162461bcd60e51b81526004016107f890612671565b8051610e6f90601190602084019061220d565b5050565b600a546001600160a01b03163314610e9d5760405162461bcd60e51b81526004016107f890612671565b600c55565b6000818152600260205260408120546001600160a01b0316806107c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f8565b60006001600160a01b038216610f845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fca5760405162461bcd60e51b81526004016107f890612671565b610fd46000611a90565b565b600a546001600160a01b031633146110005760405162461bcd60e51b81526004016107f890612671565b600d805460ff19811660ff90911615179055565b600a546001600160a01b0316331461103e5760405162461bcd60e51b81526004016107f890612671565b600d805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146110855760405162461bcd60e51b81526004016107f890612671565b600b55565b60606001805461088190612785565b600d5460ff166110db5760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b60448201526064016107f8565b600d54640100000000900460ff1681111561112b5760405162461bcd60e51b815260206004820152601060248201526f115e18d959591cc81b585e081cd95b1b60821b60448201526064016107f8565b600d5461ffff600160301b909104168161114460085490565b61114e91906126f7565b11156111915760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107f8565b3481600b546111a09190612723565b146111e55760405162461bcd60e51b8152602060048201526015602482015274496e636f72726563742065746865722076616c756560581b60448201526064016107f8565b60006111f060085490565b905060005b82811015610aaa5761120633610b7e565b80611210816127c0565b9150506111f5565b600a546001600160a01b031633146112425760405162461bcd60e51b81526004016107f890612671565b600d805460ff9092166401000000000264ff0000000019909216919091179055565b610e6f338383611ae2565b61127933836116bb565b6112955760405162461bcd60e51b81526004016107f8906126a6565b6112a184848484611bb1565b50505050565b600d54610100900460ff166112f15760405162461bcd60e51b815260206004820152601060248201526f50726573616c6520696e61637469766560801b60448201526064016107f8565b600d5465010000000000900460ff168111156113425760405162461bcd60e51b815260206004820152601060248201526f115e18d959591cc81b585e081cd95b1b60821b60448201526064016107f8565b600d5461ffff600160301b909104168161135b60085490565b61136591906126f7565b11156113a85760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107f8565b3481600c546113b79190612723565b146113fc5760405162461bcd60e51b8152602060048201526015602482015274496e636f72726563742065746865722076616c756560581b60448201526064016107f8565b600061140760085490565b905060005b82811015610aaa5761141d33610b7e565b80611427816127c0565b91505061140c565b6000818152600260205260409020546060906001600160a01b03166114ae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f8565b60006114b8611be4565b905060008151116114d85760405180602001604052806000815250611503565b806114e284611bf3565b6040516020016114f39291906125a0565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115345760405162461bcd60e51b81526004016107f890612671565b600d80546001600160a01b03909216600160401b0268010000000000000000600160e01b0319909216919091179055565b600a546001600160a01b0316331461158f5760405162461bcd60e51b81526004016107f890612671565b6001600160a01b0381166115f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f8565b610d7381611a90565b60006001600160e01b031982166380ac58cd60e01b148061162e57506001600160e01b03198216635b5e139f60e01b145b806107c857506301ffc9a760e01b6001600160e01b03198316146107c8565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168282610ea2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f8565b600061173f83610ea2565b9050806001600160a01b0316846001600160a01b0316148061177a5750836001600160a01b031661176f84610904565b6001600160a01b0316145b806117aa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117c582610ea2565b6001600160a01b03161461182d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f8565b6001600160a01b03821661188f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f8565b61189a838383611d0d565b6118a560008261164d565b6001600160a01b03831660009081526003602052604081208054600192906118ce908490612742565b90915550506001600160a01b03821660009081526003602052604081208054600192906118fc9084906126f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e6f828260405180602001604052806000815250611dc5565b804710156119c75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107f8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a14576040519150601f19603f3d011682016040523d82523d6000602084013e611a19565b606091505b5050905080610aaa5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107f8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611b445760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bbc8484846117b2565b611bc884848484611df8565b6112a15760405162461bcd60e51b81526004016107f89061261f565b60606011805461088190612785565b606081611c175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c415780611c2b816127c0565b9150611c3a9050600a8361270f565b9150611c1b565b60008167ffffffffffffffff811115611c6a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c94576020820181803683370190505b5090505b84156117aa57611ca9600183612742565b9150611cb6600a866127db565b611cc19060306126f7565b60f81b818381518110611ce457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d06600a8661270f565b9450611c98565b6001600160a01b038316611d6857611d6381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d8b565b816001600160a01b0316836001600160a01b031614611d8b57611d8b8382611f05565b6001600160a01b038216611da257610aaa81611fa2565b826001600160a01b0316826001600160a01b031614610aaa57610aaa828261207b565b611dcf83836120bf565b611ddc6000848484611df8565b610aaa5760405162461bcd60e51b81526004016107f89061261f565b60006001600160a01b0384163b15611efa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e3c9033908990889088906004016125cf565b602060405180830381600087803b158015611e5657600080fd5b505af1925050508015611e86575060408051601f3d908101601f19168201909252611e83918101906124b7565b60015b611ee0573d808015611eb4576040519150601f19603f3d011682016040523d82523d6000602084013e611eb9565b606091505b508051611ed85760405162461bcd60e51b81526004016107f89061261f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117aa565b506001949350505050565b60006001611f1284610f19565b611f1c9190612742565b600083815260076020526040902054909150808214611f6f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fb490600190612742565b60008381526009602052604081205460088054939450909284908110611fea57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061201957634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061205f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061208683610f19565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107f8565b6000818152600260205260409020546001600160a01b03161561217a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107f8565b61218660008383611d0d565b6001600160a01b03821660009081526003602052604081208054600192906121af9084906126f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461221990612785565b90600052602060002090601f01602090048101928261223b5760008555612281565b82601f1061225457805160ff1916838001178555612281565b82800160010185558215612281579182015b82811115612281578251825591602001919060010190612266565b5061228d929150612291565b5090565b5b8082111561228d5760008155600101612292565b600067ffffffffffffffff808411156122c1576122c161281b565b604051601f8501601f19908116603f011681019082821181831017156122e9576122e961281b565b8160405280935085815286868601111561230257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461233357600080fd5b919050565b600060208284031215612349578081fd5b6115038261231c565b60008060408385031215612364578081fd5b61236d8361231c565b915061237b6020840161231c565b90509250929050565b600080600060608486031215612398578081fd5b6123a18461231c565b92506123af6020850161231c565b9150604084013590509250925092565b600080600080608085870312156123d4578081fd5b6123dd8561231c565b93506123eb6020860161231c565b925060408501359150606085013567ffffffffffffffff81111561240d578182fd5b8501601f8101871361241d578182fd5b61242c878235602084016122a6565b91505092959194509250565b6000806040838503121561244a578182fd5b6124538361231c565b915060208301358015158114612467578182fd5b809150509250929050565b60008060408385031215612484578182fd5b61248d8361231c565b946020939093013593505050565b6000602082840312156124ac578081fd5b813561150381612831565b6000602082840312156124c8578081fd5b815161150381612831565b6000602082840312156124e4578081fd5b813567ffffffffffffffff8111156124fa578182fd5b8201601f8101841361250a578182fd5b6117aa848235602084016122a6565b60006020828403121561252a578081fd5b813561ffff81168114611503578182fd5b60006020828403121561254c578081fd5b5035919050565b600060208284031215612564578081fd5b813560ff81168114611503578182fd5b6000815180845261258c816020860160208601612759565b601f01601f19169290920160200192915050565b600083516125b2818460208801612759565b8351908301906125c6818360208801612759565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061260290830184612574565b9695505050505050565b6020815260006115036020830184612574565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561270a5761270a6127ef565b500190565b60008261271e5761271e612805565b500490565b600081600019048311821515161561273d5761273d6127ef565b500290565b600082821015612754576127546127ef565b500390565b60005b8381101561277457818101518382015260200161275c565b838111156112a15750506000910152565b600181811c9082168061279957607f821691505b602082108114156127ba57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127d4576127d46127ef565b5060010190565b6000826127ea576127ea612805565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7357600080fdfea2646970667358221220d5e6422bc87d2ffe28eb8f331b9c6ca8cd4be776476a3b1325113ff44a23eb5964736f6c63430008040033000000000000000000000000810bcfec5fcd779fca9be0191793a4ccd03ab0c00000000000000000000000006b81a8316f1c42e1e8733608ae65f18b79da5bf0000000000000000000000000da30332e59525e4fdff1a32c105a61108c9b0dca000000000000000000000000fc402d4885aeff9e211e466324bdfd30b659a914

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638b62f53311610139578063aa592f25116100b6578063be6da4b11161007a578063be6da4b1146106cd578063c87b56dd146106e0578063c90bd04714610700578063e62a62d11461071a578063e985e9c51461073a578063f2fde38b1461078357600080fd5b8063aa592f2514610636578063acd3d92614610656578063af1c66e314610678578063afa6c73514610697578063b88d4fde146106ad57600080fd5b806397304ced116100fd57806397304ced1461058d5780639748ecb6146105a057806398dad78e146105c05780639a80f2c8146105f3578063a22cb4651461061657600080fd5b80638b62f5331461050f5780638d859f3e146105245780638da5cb5b1461053a57806391b7f5ed1461055857806395d89b411461057857600080fd5b80632f745c59116101d257806355f804b31161019657806355f804b3146104655780635a94133c146104855780636352211e146104a557806370a08231146104c5578063715018a6146104e55780637ba5e621146104fa57600080fd5b80632f745c59146103bb57806332cb6b0c146103db5780633ccfd60b1461041057806342842e0e146104255780634f6ccce71461044557600080fd5b8063095ea7b311610219578063095ea7b31461032757806318160ddd1461034757806323b872dd1461036657806327ac36c4146103865780632c8184a21461039b57600080fd5b806301ffc9a71461025657806303fc6d161461028b57806306421c2f146102ad57806306fdde03146102cd578063081812fc146102ef575b600080fd5b34801561026257600080fd5b5061027661027136600461249b565b6107a3565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a6366004612338565b6107ce565b005b3480156102b957600080fd5b506102ab6102c8366004612519565b610823565b3480156102d957600080fd5b506102e2610872565b604051610282919061260c565b3480156102fb57600080fd5b5061030f61030a36600461253b565b610904565b6040516001600160a01b039091168152602001610282565b34801561033357600080fd5b506102ab610342366004612472565b610999565b34801561035357600080fd5b506008545b604051908152602001610282565b34801561037257600080fd5b506102ab610381366004612384565b610aaf565b34801561039257600080fd5b506102ab610ae0565b3480156103a757600080fd5b506102ab6103b6366004612553565b610bdd565b3480156103c757600080fd5b506103586103d6366004612472565b610c2b565b3480156103e757600080fd5b50600d546103fd90600160301b900461ffff1681565b60405161ffff9091168152602001610282565b34801561041c57600080fd5b506102ab610cc1565b34801561043157600080fd5b506102ab610440366004612384565b610d76565b34801561045157600080fd5b5061035861046036600461253b565b610d91565b34801561047157600080fd5b506102ab6104803660046124d3565b610e32565b34801561049157600080fd5b506102ab6104a036600461253b565b610e73565b3480156104b157600080fd5b5061030f6104c036600461253b565b610ea2565b3480156104d157600080fd5b506103586104e0366004612338565b610f19565b3480156104f157600080fd5b506102ab610fa0565b34801561050657600080fd5b506102ab610fd6565b34801561051b57600080fd5b506102ab611014565b34801561053057600080fd5b50610358600b5481565b34801561054657600080fd5b50600a546001600160a01b031661030f565b34801561056457600080fd5b506102ab61057336600461253b565b61105b565b34801561058457600080fd5b506102e261108a565b6102ab61059b36600461253b565b611099565b3480156105ac57600080fd5b506102ab6105bb366004612553565b611218565b3480156105cc57600080fd5b50600d546105e1906301000000900460ff1681565b60405160ff9091168152602001610282565b3480156105ff57600080fd5b50600d546105e19065010000000000900460ff1681565b34801561062257600080fd5b506102ab610631366004612438565b611264565b34801561064257600080fd5b50600d546102769062010000900460ff1681565b34801561066257600080fd5b50600d546105e190640100000000900460ff1681565b34801561068457600080fd5b50600d5461027690610100900460ff1681565b3480156106a357600080fd5b50610358600c5481565b3480156106b957600080fd5b506102ab6106c83660046123bf565b61126f565b6102ab6106db36600461253b565b6112a7565b3480156106ec57600080fd5b506102e26106fb36600461253b565b61142f565b34801561070c57600080fd5b50600d546102769060ff1681565b34801561072657600080fd5b506102ab610735366004612338565b61150a565b34801561074657600080fd5b50610276610755366004612352565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078f57600080fd5b506102ab61079e366004612338565b611565565b60006001600160e01b0319821663780e9d6360e01b14806107c857506107c8826115fd565b92915050565b600a546001600160a01b031633146108015760405162461bcd60e51b81526004016107f890612671565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461084d5760405162461bcd60e51b81526004016107f890612671565b600d805461ffff909216600160301b0267ffff00000000000019909216919091179055565b60606000805461088190612785565b80601f01602080910402602001604051908101604052809291908181526020018280546108ad90612785565b80156108fa5780601f106108cf576101008083540402835291602001916108fa565b820191906000526020600020905b8154815290600101906020018083116108dd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661097d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f8565b506000908152600460205260409020546001600160a01b031690565b60006109a482610ea2565b9050806001600160a01b0316836001600160a01b03161415610a125760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f8565b336001600160a01b0382161480610a2e5750610a2e8133610755565b610aa05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f8565b610aaa838361164d565b505050565b610ab933826116bb565b610ad55760405162461bcd60e51b81526004016107f8906126a6565b610aaa8383836117b2565b600a546001600160a01b03163314610b0a5760405162461bcd60e51b81526004016107f890612671565b600d5462010000900460ff1615610b555760405162461bcd60e51b815260206004820152600f60248201526e151bdad95b9cc81c995cd95c9d9959608a1b60448201526064016107f8565b6000610b6060085490565b905060005b600d546301000000900460ff16811015610b9f57610b8d335b610b8883856126f7565b61195d565b80610b97816127c0565b915050610b65565b5050600d805462ff00001916620100001790556040517ffaf3f41ea35a400568360902f791821569be418844cb8bb6481a690b29e8a20990600090a1565b600a546001600160a01b03163314610c075760405162461bcd60e51b81526004016107f890612671565b600d805460ff909216650100000000000265ff000000000019909216919091179055565b6000610c3683610f19565b8210610c985760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107f8565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610ceb5760405162461bcd60e51b81526004016107f890612671565b6000610cf860644761270f565b600d54909150610d2290600160401b90046001600160a01b0316610d1d83605c612723565b611977565b600e54610d3d906001600160a01b0316610d1d836002612723565b600f54610d58906001600160a01b0316610d1d836003612723565b601054610d73906001600160a01b0316610d1d836003612723565b50565b610aaa8383836040518060200160405280600081525061126f565b6000610d9c60085490565b8210610dff5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f8565b60088281548110610e2057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610e5c5760405162461bcd60e51b81526004016107f890612671565b8051610e6f90601190602084019061220d565b5050565b600a546001600160a01b03163314610e9d5760405162461bcd60e51b81526004016107f890612671565b600c55565b6000818152600260205260408120546001600160a01b0316806107c85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f8565b60006001600160a01b038216610f845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f8565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610fca5760405162461bcd60e51b81526004016107f890612671565b610fd46000611a90565b565b600a546001600160a01b031633146110005760405162461bcd60e51b81526004016107f890612671565b600d805460ff19811660ff90911615179055565b600a546001600160a01b0316331461103e5760405162461bcd60e51b81526004016107f890612671565b600d805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146110855760405162461bcd60e51b81526004016107f890612671565b600b55565b60606001805461088190612785565b600d5460ff166110db5760405162461bcd60e51b815260206004820152600d60248201526c53616c6520696e61637469766560981b60448201526064016107f8565b600d54640100000000900460ff1681111561112b5760405162461bcd60e51b815260206004820152601060248201526f115e18d959591cc81b585e081cd95b1b60821b60448201526064016107f8565b600d5461ffff600160301b909104168161114460085490565b61114e91906126f7565b11156111915760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107f8565b3481600b546111a09190612723565b146111e55760405162461bcd60e51b8152602060048201526015602482015274496e636f72726563742065746865722076616c756560581b60448201526064016107f8565b60006111f060085490565b905060005b82811015610aaa5761120633610b7e565b80611210816127c0565b9150506111f5565b600a546001600160a01b031633146112425760405162461bcd60e51b81526004016107f890612671565b600d805460ff9092166401000000000264ff0000000019909216919091179055565b610e6f338383611ae2565b61127933836116bb565b6112955760405162461bcd60e51b81526004016107f8906126a6565b6112a184848484611bb1565b50505050565b600d54610100900460ff166112f15760405162461bcd60e51b815260206004820152601060248201526f50726573616c6520696e61637469766560801b60448201526064016107f8565b600d5465010000000000900460ff168111156113425760405162461bcd60e51b815260206004820152601060248201526f115e18d959591cc81b585e081cd95b1b60821b60448201526064016107f8565b600d5461ffff600160301b909104168161135b60085490565b61136591906126f7565b11156113a85760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016107f8565b3481600c546113b79190612723565b146113fc5760405162461bcd60e51b8152602060048201526015602482015274496e636f72726563742065746865722076616c756560581b60448201526064016107f8565b600061140760085490565b905060005b82811015610aaa5761141d33610b7e565b80611427816127c0565b91505061140c565b6000818152600260205260409020546060906001600160a01b03166114ae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107f8565b60006114b8611be4565b905060008151116114d85760405180602001604052806000815250611503565b806114e284611bf3565b6040516020016114f39291906125a0565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146115345760405162461bcd60e51b81526004016107f890612671565b600d80546001600160a01b03909216600160401b0268010000000000000000600160e01b0319909216919091179055565b600a546001600160a01b0316331461158f5760405162461bcd60e51b81526004016107f890612671565b6001600160a01b0381166115f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f8565b610d7381611a90565b60006001600160e01b031982166380ac58cd60e01b148061162e57506001600160e01b03198216635b5e139f60e01b145b806107c857506301ffc9a760e01b6001600160e01b03198316146107c8565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168282610ea2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f8565b600061173f83610ea2565b9050806001600160a01b0316846001600160a01b0316148061177a5750836001600160a01b031661176f84610904565b6001600160a01b0316145b806117aa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117c582610ea2565b6001600160a01b03161461182d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f8565b6001600160a01b03821661188f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f8565b61189a838383611d0d565b6118a560008261164d565b6001600160a01b03831660009081526003602052604081208054600192906118ce908490612742565b90915550506001600160a01b03821660009081526003602052604081208054600192906118fc9084906126f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e6f828260405180602001604052806000815250611dc5565b804710156119c75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107f8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611a14576040519150601f19603f3d011682016040523d82523d6000602084013e611a19565b606091505b5050905080610aaa5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107f8565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611b445760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611bbc8484846117b2565b611bc884848484611df8565b6112a15760405162461bcd60e51b81526004016107f89061261f565b60606011805461088190612785565b606081611c175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c415780611c2b816127c0565b9150611c3a9050600a8361270f565b9150611c1b565b60008167ffffffffffffffff811115611c6a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611c94576020820181803683370190505b5090505b84156117aa57611ca9600183612742565b9150611cb6600a866127db565b611cc19060306126f7565b60f81b818381518110611ce457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d06600a8661270f565b9450611c98565b6001600160a01b038316611d6857611d6381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611d8b565b816001600160a01b0316836001600160a01b031614611d8b57611d8b8382611f05565b6001600160a01b038216611da257610aaa81611fa2565b826001600160a01b0316826001600160a01b031614610aaa57610aaa828261207b565b611dcf83836120bf565b611ddc6000848484611df8565b610aaa5760405162461bcd60e51b81526004016107f89061261f565b60006001600160a01b0384163b15611efa57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e3c9033908990889088906004016125cf565b602060405180830381600087803b158015611e5657600080fd5b505af1925050508015611e86575060408051601f3d908101601f19168201909252611e83918101906124b7565b60015b611ee0573d808015611eb4576040519150601f19603f3d011682016040523d82523d6000602084013e611eb9565b606091505b508051611ed85760405162461bcd60e51b81526004016107f89061261f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117aa565b506001949350505050565b60006001611f1284610f19565b611f1c9190612742565b600083815260076020526040902054909150808214611f6f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611fb490600190612742565b60008381526009602052604081205460088054939450909284908110611fea57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061201957634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061205f57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061208683610f19565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166121155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107f8565b6000818152600260205260409020546001600160a01b03161561217a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107f8565b61218660008383611d0d565b6001600160a01b03821660009081526003602052604081208054600192906121af9084906126f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461221990612785565b90600052602060002090601f01602090048101928261223b5760008555612281565b82601f1061225457805160ff1916838001178555612281565b82800160010185558215612281579182015b82811115612281578251825591602001919060010190612266565b5061228d929150612291565b5090565b5b8082111561228d5760008155600101612292565b600067ffffffffffffffff808411156122c1576122c161281b565b604051601f8501601f19908116603f011681019082821181831017156122e9576122e961281b565b8160405280935085815286868601111561230257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461233357600080fd5b919050565b600060208284031215612349578081fd5b6115038261231c565b60008060408385031215612364578081fd5b61236d8361231c565b915061237b6020840161231c565b90509250929050565b600080600060608486031215612398578081fd5b6123a18461231c565b92506123af6020850161231c565b9150604084013590509250925092565b600080600080608085870312156123d4578081fd5b6123dd8561231c565b93506123eb6020860161231c565b925060408501359150606085013567ffffffffffffffff81111561240d578182fd5b8501601f8101871361241d578182fd5b61242c878235602084016122a6565b91505092959194509250565b6000806040838503121561244a578182fd5b6124538361231c565b915060208301358015158114612467578182fd5b809150509250929050565b60008060408385031215612484578182fd5b61248d8361231c565b946020939093013593505050565b6000602082840312156124ac578081fd5b813561150381612831565b6000602082840312156124c8578081fd5b815161150381612831565b6000602082840312156124e4578081fd5b813567ffffffffffffffff8111156124fa578182fd5b8201601f8101841361250a578182fd5b6117aa848235602084016122a6565b60006020828403121561252a578081fd5b813561ffff81168114611503578182fd5b60006020828403121561254c578081fd5b5035919050565b600060208284031215612564578081fd5b813560ff81168114611503578182fd5b6000815180845261258c816020860160208601612759565b601f01601f19169290920160200192915050565b600083516125b2818460208801612759565b8351908301906125c6818360208801612759565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061260290830184612574565b9695505050505050565b6020815260006115036020830184612574565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561270a5761270a6127ef565b500190565b60008261271e5761271e612805565b500490565b600081600019048311821515161561273d5761273d6127ef565b500290565b600082821015612754576127546127ef565b500390565b60005b8381101561277457818101518382015260200161275c565b838111156112a15750506000910152565b600181811c9082168061279957607f821691505b602082108114156127ba57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127d4576127d46127ef565b5060010190565b6000826127ea576127ea612805565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d7357600080fdfea2646970667358221220d5e6422bc87d2ffe28eb8f331b9c6ca8cd4be776476a3b1325113ff44a23eb5964736f6c63430008040033

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

000000000000000000000000810bcfec5fcd779fca9be0191793a4ccd03ab0c00000000000000000000000006b81a8316f1c42e1e8733608ae65f18b79da5bf0000000000000000000000000da30332e59525e4fdff1a32c105a61108c9b0dca000000000000000000000000fc402d4885aeff9e211e466324bdfd30b659a914

-----Decoded View---------------
Arg [0] : p1 (address): 0x810BCfec5FCD779FcA9BE0191793A4Ccd03ab0c0
Arg [1] : p2 (address): 0x6B81A8316f1C42E1e8733608ae65F18B79DA5BF0
Arg [2] : p3 (address): 0xdA30332e59525e4FdFf1a32c105a61108c9B0Dca
Arg [3] : p4 (address): 0xFC402d4885aEFF9E211E466324bDFD30b659A914

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000810bcfec5fcd779fca9be0191793a4ccd03ab0c0
Arg [1] : 0000000000000000000000006b81a8316f1c42e1e8733608ae65f18b79da5bf0
Arg [2] : 000000000000000000000000da30332e59525e4fdff1a32c105a61108c9b0dca
Arg [3] : 000000000000000000000000fc402d4885aeff9e211e466324bdfd30b659a914


Deployed Bytecode Sourcemap

44681:3592:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35917:224;;;;;;;;;;-1:-1:-1;35917:224:0;;;;;:::i;:::-;;:::i;:::-;;;6597:14:1;;6590:22;6572:41;;6560:2;6545:18;35917:224:0;;;;;;;;47418:73;;;;;;;;;;-1:-1:-1;47418:73:0;;;;;:::i;:::-;;:::i;:::-;;47241:88;;;;;;;;;;-1:-1:-1;47241:88:0;;;;;:::i;:::-;;:::i;22330:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23889:221::-;;;;;;;;;;-1:-1:-1;23889:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5895:32:1;;;5877:51;;5865:2;5850:18;23889:221:0;5832:102:1;23412:411:0;;;;;;;;;;-1:-1:-1;23412:411:0;;;;;:::i;:::-;;:::i;36557:113::-;;;;;;;;;;-1:-1:-1;36645:10:0;:17;36557:113;;;17252:25:1;;;17240:2;17225:18;36557:113:0;17207:76:1;24639:339:0;;;;;;;;;;-1:-1:-1;24639:339:0;;;;;:::i;:::-;;:::i;46707:222::-;;;;;;;;;;;;;:::i;47135:98::-;;;;;;;;;;-1:-1:-1;47135:98:0;;;;;:::i;:::-;;:::i;36225:256::-;;;;;;;;;;-1:-1:-1;36225:256:0;;;;;:::i;:::-;;:::i;45025:24::-;;;;;;;;;;-1:-1:-1;45025:24:0;;;;-1:-1:-1;;;45025:24:0;;;;;;;;;17087:6:1;17075:19;;;17057:38;;17045:2;17030:18;45025:24:0;17012:89:1;47698:314:0;;;;;;;;;;;;;:::i;25049:185::-;;;;;;;;;;-1:-1:-1;25049:185:0;;;;;:::i;:::-;;:::i;36747:233::-;;;;;;;;;;-1:-1:-1;36747:233:0;;;;;:::i;:::-;;:::i;46937:99::-;;;;;;;;;;-1:-1:-1;46937:99:0;;;;;:::i;:::-;;:::i;47591:::-;;;;;;;;;;-1:-1:-1;47591:99:0;;;;;:::i;:::-;;:::i;22024:239::-;;;;;;;;;;-1:-1:-1;22024:239:0;;;;;:::i;:::-;;:::i;21754:208::-;;;;;;;;;;-1:-1:-1;21754:208:0;;;;;:::i;:::-;;:::i;43782:103::-;;;;;;;;;;;;;:::i;45631:74::-;;;;;;;;;;;;;:::i;45530:93::-;;;;;;;;;;;;;:::i;44752:33::-;;;;;;;;;;;;;;;;43131:87;;;;;;;;;;-1:-1:-1;43204:6:0;;-1:-1:-1;;;;;43204:6:0;43131:87;;47499:84;;;;;;;;;;-1:-1:-1;47499:84:0;;;;;:::i;:::-;;:::i;22499:104::-;;;;;;;;;;;;;:::i;45713:472::-;;;;;;:::i;:::-;;:::i;47044:83::-;;;;;;;;;;-1:-1:-1;47044:83:0;;;;;:::i;:::-;;:::i;44927:27::-;;;;;;;;;;-1:-1:-1;44927:27:0;;;;;;;;;;;;;;17460:4:1;17448:17;;;17430:36;;17418:2;17403:18;44927:27:0;17385:87:1;44989:29:0;;;;;;;;;;-1:-1:-1;44989:29:0;;;;;;;;;;;24182:155;;;;;;;;;;-1:-1:-1;24182:155:0;;;;;:::i;:::-;;:::i;44900:20::-;;;;;;;;;;-1:-1:-1;44900:20:0;;;;;;;;;;;44961:21;;;;;;;;;;-1:-1:-1;44961:21:0;;;;;;;;;;;44867:26;;;;;;;;;;-1:-1:-1;44867:26:0;;;;;;;;;;;44792:41;;;;;;;;;;;;;;;;25305:328;;;;;;;;;;-1:-1:-1;25305:328:0;;;;;:::i;:::-;;:::i;46193:506::-;;;;;;:::i;:::-;;:::i;22674:334::-;;;;;;;;;;-1:-1:-1;22674:334:0;;;;;:::i;:::-;;:::i;44842:18::-;;;;;;;;;;-1:-1:-1;44842:18:0;;;;;;;;47337:73;;;;;;;;;;-1:-1:-1;47337:73:0;;;;;:::i;:::-;;:::i;24408:164::-;;;;;;;;;;-1:-1:-1;24408:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24529:25:0;;;24505:4;24529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24408:164;44040:201;;;;;;;;;;-1:-1:-1;44040:201:0;;;;;:::i;:::-;;:::i;35917:224::-;36019:4;-1:-1:-1;;;;;;36043:50:0;;-1:-1:-1;;;36043:50:0;;:90;;;36097:36;36121:11;36097:23;:36::i;:::-;36036:97;35917:224;-1:-1:-1;;35917:224:0:o;47418:73::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;;;;;;;;;47475:3:::1;:8:::0;;-1:-1:-1;;;;;;47475:8:0::1;-1:-1:-1::0;;;;;47475:8:0;;;::::1;::::0;;;::::1;::::0;;47418:73::o;47241:88::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;47305:10:::1;:16:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;47305:16:0::1;-1:-1:-1::0;;47305:16:0;;::::1;::::0;;;::::1;::::0;;47241:88::o;22330:100::-;22384:13;22417:5;22410:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22330:100;:::o;23889:221::-;23965:7;27232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27232:16:0;23985:73;;;;-1:-1:-1;;;23985:73:0;;13587:2:1;23985:73:0;;;13569:21:1;13626:2;13606:18;;;13599:30;13665:34;13645:18;;;13638:62;-1:-1:-1;;;13716:18:1;;;13709:42;13768:19;;23985:73:0;13559:234:1;23985:73:0;-1:-1:-1;24078:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24078:24:0;;23889:221::o;23412:411::-;23493:13;23509:23;23524:7;23509:14;:23::i;:::-;23493:39;;23557:5;-1:-1:-1;;;;;23551:11:0;:2;-1:-1:-1;;;;;23551:11:0;;;23543:57;;;;-1:-1:-1;;;23543:57:0;;15187:2:1;23543:57:0;;;15169:21:1;15226:2;15206:18;;;15199:30;15265:34;15245:18;;;15238:62;-1:-1:-1;;;15316:18:1;;;15309:31;15357:19;;23543:57:0;15159:223:1;23543:57:0;16692:10;-1:-1:-1;;;;;23635:21:0;;;;:62;;-1:-1:-1;23660:37:0;23677:5;16692:10;24408:164;:::i;23660:37::-;23613:168;;;;-1:-1:-1;;;23613:168:0;;11288:2:1;23613:168:0;;;11270:21:1;11327:2;11307:18;;;11300:30;11366:34;11346:18;;;11339:62;11437:26;11417:18;;;11410:54;11481:19;;23613:168:0;11260:246:1;23613:168:0;23794:21;23803:2;23807:7;23794:8;:21::i;:::-;23412:411;;;:::o;24639:339::-;24834:41;16692:10;24867:7;24834:18;:41::i;:::-;24826:103;;;;-1:-1:-1;;;24826:103:0;;;;;;;:::i;:::-;24942:28;24952:4;24958:2;24962:7;24942:9;:28::i;46707:222::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;48170:8:::1;::::0;;;::::1;;;48169:9;48161:37;;;::::0;-1:-1:-1;;;48161:37:0;;10173:2:1;48161:37:0::1;::::0;::::1;10155:21:1::0;10212:2;10192:18;;;10185:30;-1:-1:-1;;;10231:18:1;;;10224:45;10286:18;;48161:37:0::1;10145:165:1::0;48161:37:0::1;46772:14:::2;46789:13;36645:10:::0;:17;;36557:113;46789:13:::2;46772:30;;46818:9;46813:109;46838:14;::::0;;;::::2;;;46829:24:::0;::::2;46813:109;;;46875:35;16692:10:::0;46885:12:::2;46899:10;46908:1:::0;46899:6;:10:::2;:::i;:::-;46875:9;:35::i;:::-;46855:3:::0;::::2;::::0;::::2;:::i;:::-;;;;46813:109;;;-1:-1:-1::0;;48221:8:0::1;:15:::0;;-1:-1:-1;;48221:15:0::1;::::0;::::1;::::0;;48252:10:::1;::::0;::::1;::::0;48221:15;;48252:10:::1;46707:222::o:0;47135:98::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;47203:16:::1;:22:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;47203:22:0;;::::1;::::0;;;::::1;::::0;;47135:98::o;36225:256::-;36322:7;36358:23;36375:5;36358:16;:23::i;:::-;36350:5;:31;36342:87;;;;-1:-1:-1;;;36342:87:0;;7050:2:1;36342:87:0;;;7032:21:1;7089:2;7069:18;;;7062:30;7128:34;7108:18;;;7101:62;-1:-1:-1;;;7179:18:1;;;7172:41;7230:19;;36342:87:0;7022:233:1;36342:87:0;-1:-1:-1;;;;;;36447:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36225:256::o;47698:314::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;47748:13:::1;47764:27;47788:3;47764:21;:27;:::i;:::-;47828:3;::::0;47748:43;;-1:-1:-1;47802:43:0::1;::::0;-1:-1:-1;;;47828:3:0;::::1;-1:-1:-1::0;;;;;47828:3:0::1;47834:10;47748:43:::0;47842:2:::1;47834:10;:::i;:::-;47802:17;:43::i;:::-;47882:3;::::0;47856:42:::1;::::0;-1:-1:-1;;;;;47882:3:0::1;47888:9;:5:::0;47896:1:::1;47888:9;:::i;47856:42::-;47935:3;::::0;47909:42:::1;::::0;-1:-1:-1;;;;;47935:3:0::1;47941:9;:5:::0;47949:1:::1;47941:9;:::i;47909:42::-;47988:3;::::0;47962:42:::1;::::0;-1:-1:-1;;;;;47988:3:0::1;47994:9;:5:::0;48002:1:::1;47994:9;:::i;47962:42::-;43422:1;47698:314::o:0;25049:185::-;25187:39;25204:4;25210:2;25214:7;25187:39;;;;;;;;;;;;:16;:39::i;36747:233::-;36822:7;36858:30;36645:10;:17;;36557:113;36858:30;36850:5;:38;36842:95;;;;-1:-1:-1;;;36842:95:0;;16352:2:1;36842:95:0;;;16334:21:1;16391:2;16371:18;;;16364:30;16430:34;16410:18;;;16403:62;-1:-1:-1;;;16481:18:1;;;16474:42;16533:19;;36842:95:0;16324:234:1;36842:95:0;36955:10;36966:5;36955:17;;;;;;-1:-1:-1;;;36955:17:0;;;;;;;;;;;;;;;;;36948:24;;36747:233;;;:::o;46937:99::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;47010:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46937:99:::0;:::o;47591:::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;47661:13:::1;:21:::0;47591:99::o;22024:239::-;22096:7;22132:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22132:16:0;22167:19;22159:73;;;;-1:-1:-1;;;22159:73:0;;12124:2:1;22159:73:0;;;12106:21:1;12163:2;12143:18;;;12136:30;12202:34;12182:18;;;12175:62;-1:-1:-1;;;12253:18:1;;;12246:39;12302:19;;22159:73:0;12096:231:1;21754:208:0;21826:7;-1:-1:-1;;;;;21854:19:0;;21846:74;;;;-1:-1:-1;;;21846:74:0;;11713:2:1;21846:74:0;;;11695:21:1;11752:2;11732:18;;;11725:30;11791:34;11771:18;;;11764:62;-1:-1:-1;;;11842:18:1;;;11835:40;11892:19;;21846:74:0;11685:232:1;21846:74:0;-1:-1:-1;;;;;;21938:16:0;;;;;:9;:16;;;;;;;21754:208::o;43782:103::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;43847:30:::1;43874:1;43847:18;:30::i;:::-;43782:103::o:0;45631:74::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;45691:6:::1;::::0;;-1:-1:-1;;45681:16:0;::::1;45691:6;::::0;;::::1;45690:7;45681:16;::::0;;45631:74::o;45530:93::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;45601:14:::1;::::0;;-1:-1:-1;;45583:32:0;::::1;45601:14;::::0;;;::::1;;;45600:15;45583:32:::0;;::::1;;::::0;;45530:93::o;47499:84::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;47562:5:::1;:13:::0;47499:84::o;22499:104::-;22555:13;22588:7;22581:14;;;;;:::i;45713:472::-;45785:6;;;;45777:32;;;;-1:-1:-1;;;45777:32:0;;9404:2:1;45777:32:0;;;9386:21:1;9443:2;9423:18;;;9416:30;-1:-1:-1;;;9462:18:1;;;9455:43;9515:18;;45777:32:0;9376:163:1;45777:32:0;45843:8;;;;;;;45828:24;;;45820:53;;;;-1:-1:-1;;;45820:53:0;;13242:2:1;45820:53:0;;;13224:21:1;13281:2;13261:18;;;13254:30;-1:-1:-1;;;13300:18:1;;;13293:46;13356:18;;45820:53:0;13214:166:1;45820:53:0;45923:10;;;-1:-1:-1;;;45923:10:0;;;;45908:6;45892:13;36645:10;:17;;36557:113;45892:13;:22;;;;:::i;:::-;:42;;45884:73;;;;-1:-1:-1;;;45884:73:0;;12534:2:1;45884:73:0;;;12516:21:1;12573:2;12553:18;;;12546:30;-1:-1:-1;;;12592:18:1;;;12585:48;12650:18;;45884:73:0;12506:168:1;45884:73:0;45994:9;45984:6;45976:5;;:14;;;;:::i;:::-;:27;45968:61;;;;-1:-1:-1;;;45968:61:0;;16765:2:1;45968:61:0;;;16747:21:1;16804:2;16784:18;;;16777:30;-1:-1:-1;;;16823:18:1;;;16816:51;16884:18;;45968:61:0;16737:171:1;45968:61:0;46042:14;46059:13;36645:10;:17;;36557:113;46059:13;46042:30;;46088:9;46083:95;46103:6;46099:1;:10;46083:95;;;46131:35;16692:10;46141:12;16612:98;46131:35;46111:3;;;;:::i;:::-;;;;46083:95;;47044:83;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;47105:8:::1;:14:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;47105:14:0;;::::1;::::0;;;::::1;::::0;;47044:83::o;24182:155::-;24277:52;16692:10;24310:8;24320;24277:18;:52::i;25305:328::-;25480:41;16692:10;25513:7;25480:18;:41::i;:::-;25472:103;;;;-1:-1:-1;;;25472:103:0;;;;;;;:::i;:::-;25586:39;25600:4;25606:2;25610:7;25619:5;25586:13;:39::i;:::-;25305:328;;;;:::o;46193:506::-;46272:14;;;;;;;46264:43;;;;-1:-1:-1;;;46264:43:0;;15589:2:1;46264:43:0;;;15571:21:1;15628:2;15608:18;;;15601:30;-1:-1:-1;;;15647:18:1;;;15640:46;15703:18;;46264:43:0;15561:166:1;46264:43:0;46341:16;;;;;;;46326:32;;;46318:61;;;;-1:-1:-1;;;46318:61:0;;13242:2:1;46318:61:0;;;13224:21:1;13281:2;13261:18;;;13254:30;-1:-1:-1;;;13300:18:1;;;13293:46;13356:18;;46318:61:0;13214:166:1;46318:61:0;46429:10;;;-1:-1:-1;;;46429:10:0;;;;46414:6;46398:13;36645:10;:17;;36557:113;46398:13;:22;;;;:::i;:::-;:42;;46390:73;;;;-1:-1:-1;;;46390:73:0;;12534:2:1;46390:73:0;;;12516:21:1;12573:2;12553:18;;;12546:30;-1:-1:-1;;;12592:18:1;;;12585:48;12650:18;;46390:73:0;12506:168:1;46390:73:0;46508:9;46498:6;46482:13;;:22;;;;:::i;:::-;:35;46474:69;;;;-1:-1:-1;;;46474:69:0;;16765:2:1;46474:69:0;;;16747:21:1;16804:2;16784:18;;;16777:30;-1:-1:-1;;;16823:18:1;;;16816:51;16884:18;;46474:69:0;16737:171:1;46474:69:0;46556:14;46573:13;36645:10;:17;;36557:113;46573:13;46556:30;;46602:9;46597:95;46617:6;46613:1;:10;46597:95;;;46645:35;16692:10;46655:12;16612:98;46645:35;46625:3;;;;:::i;:::-;;;;46597:95;;22674:334;27208:4;27232:16;;;:7;:16;;;;;;22747:13;;-1:-1:-1;;;;;27232:16:0;22773:76;;;;-1:-1:-1;;;22773:76:0;;14771:2:1;22773:76:0;;;14753:21:1;14810:2;14790:18;;;14783:30;14849:34;14829:18;;;14822:62;-1:-1:-1;;;14900:18:1;;;14893:45;14955:19;;22773:76:0;14743:237:1;22773:76:0;22862:21;22886:10;:8;:10::i;:::-;22862:34;;22938:1;22920:7;22914:21;:25;:86;;;;;;;;;;;;;;;;;22966:7;22975:18;:7;:16;:18::i;:::-;22949:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22914:86;22907:93;22674:334;-1:-1:-1;;;22674:334:0:o;47337:73::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;47394:3:::1;:8:::0;;-1:-1:-1;;;;;47394:8:0;;::::1;-1:-1:-1::0;;;47394:8:0::1;-1:-1:-1::0;;;;;;47394:8:0;;::::1;::::0;;;::::1;::::0;;47337:73::o;44040:201::-;43204:6;;-1:-1:-1;;;;;43204:6:0;16692:10;43351:23;43343:68;;;;-1:-1:-1;;;43343:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44129:22:0;::::1;44121:73;;;::::0;-1:-1:-1;;;44121:73:0;;7881:2:1;44121:73:0::1;::::0;::::1;7863:21:1::0;7920:2;7900:18;;;7893:30;7959:34;7939:18;;;7932:62;-1:-1:-1;;;8010:18:1;;;8003:36;8056:19;;44121:73:0::1;7853:228:1::0;44121:73:0::1;44205:28;44224:8;44205:18;:28::i;21385:305::-:0;21487:4;-1:-1:-1;;;;;;21524:40:0;;-1:-1:-1;;;21524:40:0;;:105;;-1:-1:-1;;;;;;;21581:48:0;;-1:-1:-1;;;21581:48:0;21524:105;:158;;;-1:-1:-1;;;;;;;;;;19934:40:0;;;21646:36;19825:157;31125:174;31200:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31200:29:0;-1:-1:-1;;;;;31200:29:0;;;;;;;;:24;;31254:23;31200:24;31254:14;:23::i;:::-;-1:-1:-1;;;;;31245:46:0;;;;;;;;;;;31125:174;;:::o;27437:348::-;27530:4;27232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27232:16:0;27547:73;;;;-1:-1:-1;;;27547:73:0;;10875:2:1;27547:73:0;;;10857:21:1;10914:2;10894:18;;;10887:30;10953:34;10933:18;;;10926:62;-1:-1:-1;;;11004:18:1;;;10997:42;11056:19;;27547:73:0;10847:234:1;27547:73:0;27631:13;27647:23;27662:7;27647:14;:23::i;:::-;27631:39;;27700:5;-1:-1:-1;;;;;27689:16:0;:7;-1:-1:-1;;;;;27689:16:0;;:51;;;;27733:7;-1:-1:-1;;;;;27709:31:0;:20;27721:7;27709:11;:20::i;:::-;-1:-1:-1;;;;;27709:31:0;;27689:51;:87;;;-1:-1:-1;;;;;;24529:25:0;;;24505:4;24529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27744:32;27681:96;27437:348;-1:-1:-1;;;;27437:348:0:o;30429:578::-;30588:4;-1:-1:-1;;;;;30561:31:0;:23;30576:7;30561:14;:23::i;:::-;-1:-1:-1;;;;;30561:31:0;;30553:85;;;;-1:-1:-1;;;30553:85:0;;14361:2:1;30553:85:0;;;14343:21:1;14400:2;14380:18;;;14373:30;14439:34;14419:18;;;14412:62;-1:-1:-1;;;14490:18:1;;;14483:39;14539:19;;30553:85:0;14333:231:1;30553:85:0;-1:-1:-1;;;;;30657:16:0;;30649:65;;;;-1:-1:-1;;;30649:65:0;;8645:2:1;30649:65:0;;;8627:21:1;8684:2;8664:18;;;8657:30;8723:34;8703:18;;;8696:62;-1:-1:-1;;;8774:18:1;;;8767:34;8818:19;;30649:65:0;8617:226:1;30649:65:0;30727:39;30748:4;30754:2;30758:7;30727:20;:39::i;:::-;30831:29;30848:1;30852:7;30831:8;:29::i;:::-;-1:-1:-1;;;;;30873:15:0;;;;;;:9;:15;;;;;:20;;30892:1;;30873:15;:20;;30892:1;;30873:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30904:13:0;;;;;;:9;:13;;;;;:18;;30921:1;;30904:13;:18;;30921:1;;30904:18;:::i;:::-;;;;-1:-1:-1;;30933:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30933:21:0;-1:-1:-1;;;;;30933:21:0;;;;;;;;;30972:27;;30933:16;;30972:27;;;;;;;30429:578;;;:::o;28127:110::-;28203:26;28213:2;28217:7;28203:26;;;;;;;;;;;;:9;:26::i;9918:317::-;10033:6;10008:21;:31;;10000:73;;;;-1:-1:-1;;;10000:73:0;;10517:2:1;10000:73:0;;;10499:21:1;10556:2;10536:18;;;10529:30;10595:31;10575:18;;;10568:59;10644:18;;10000:73:0;10489:179:1;10000:73:0;10087:12;10105:9;-1:-1:-1;;;;;10105:14:0;10127:6;10105:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10086:52;;;10157:7;10149:78;;;;-1:-1:-1;;;10149:78:0;;9746:2:1;10149:78:0;;;9728:21:1;9785:2;9765:18;;;9758:30;9824:34;9804:18;;;9797:62;9895:28;9875:18;;;9868:56;9941:19;;10149:78:0;9718:248:1;44401:191:0;44494:6;;;-1:-1:-1;;;;;44511:17:0;;;-1:-1:-1;;;;;;44511:17:0;;;;;;;44544:40;;44494:6;;;44511:17;44494:6;;44544:40;;44475:16;;44544:40;44401:191;;:::o;31441:315::-;31596:8;-1:-1:-1;;;;;31587:17:0;:5;-1:-1:-1;;;;;31587:17:0;;;31579:55;;;;-1:-1:-1;;;31579:55:0;;9050:2:1;31579:55:0;;;9032:21:1;9089:2;9069:18;;;9062:30;9128:27;9108:18;;;9101:55;9173:18;;31579:55:0;9022:175:1;31579:55:0;-1:-1:-1;;;;;31645:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31645:46:0;;;;;;;;;;31707:41;;6572::1;;;31707::0;;6545:18:1;31707:41:0;;;;;;;31441:315;;;:::o;26515:::-;26672:28;26682:4;26688:2;26692:7;26672:9;:28::i;:::-;26719:48;26742:4;26748:2;26752:7;26761:5;26719:22;:48::i;:::-;26711:111;;;;-1:-1:-1;;;26711:111:0;;;;;;;:::i;48020:101::-;48072:13;48105:8;48098:15;;;;;:::i;17197:723::-;17253:13;17474:10;17470:53;;-1:-1:-1;;17501:10:0;;;;;;;;;;;;-1:-1:-1;;;17501:10:0;;;;;17197:723::o;17470:53::-;17548:5;17533:12;17589:78;17596:9;;17589:78;;17622:8;;;;:::i;:::-;;-1:-1:-1;17645:10:0;;-1:-1:-1;17653:2:0;17645:10;;:::i;:::-;;;17589:78;;;17677:19;17709:6;17699:17;;;;;;-1:-1:-1;;;17699:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17699:17:0;;17677:39;;17727:154;17734:10;;17727:154;;17761:11;17771:1;17761:11;;:::i;:::-;;-1:-1:-1;17830:10:0;17838:2;17830:5;:10;:::i;:::-;17817:24;;:2;:24;:::i;:::-;17804:39;;17787:6;17794;17787:14;;;;;;-1:-1:-1;;;17787:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17787:56:0;;;;;;;;-1:-1:-1;17858:11:0;17867:2;17858:11;;:::i;:::-;;;17727:154;;37593:589;-1:-1:-1;;;;;37799:18:0;;37795:187;;37834:40;37866:7;39009:10;:17;;38982:24;;;;:15;:24;;;;;:44;;;39037:24;;;;;;;;;;;;38905:164;37834:40;37795:187;;;37904:2;-1:-1:-1;;;;;37896:10:0;:4;-1:-1:-1;;;;;37896:10:0;;37892:90;;37923:47;37956:4;37962:7;37923:32;:47::i;:::-;-1:-1:-1;;;;;37996:16:0;;37992:183;;38029:45;38066:7;38029:36;:45::i;37992:183::-;38102:4;-1:-1:-1;;;;;38096:10:0;:2;-1:-1:-1;;;;;38096:10:0;;38092:83;;38123:40;38151:2;38155:7;38123:27;:40::i;28464:321::-;28594:18;28600:2;28604:7;28594:5;:18::i;:::-;28645:54;28676:1;28680:2;28684:7;28693:5;28645:22;:54::i;:::-;28623:154;;;;-1:-1:-1;;;28623:154:0;;;;;;;:::i;32321:799::-;32476:4;-1:-1:-1;;;;;32497:13:0;;8919:20;8967:8;32493:620;;32533:72;;-1:-1:-1;;;32533:72:0;;-1:-1:-1;;;;;32533:36:0;;;;;:72;;16692:10;;32584:4;;32590:7;;32599:5;;32533:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32533:72:0;;;;;;;;-1:-1:-1;;32533:72:0;;;;;;;;;;;;:::i;:::-;;;32529:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32775:13:0;;32771:272;;32818:60;;-1:-1:-1;;;32818:60:0;;;;;;;:::i;32771:272::-;32993:6;32987:13;32978:6;32974:2;32970:15;32963:38;32529:529;-1:-1:-1;;;;;;32656:51:0;-1:-1:-1;;;32656:51:0;;-1:-1:-1;32649:58:0;;32493:620;-1:-1:-1;33097:4:0;32321:799;;;;;;:::o;39696:988::-;39962:22;40012:1;39987:22;40004:4;39987:16;:22::i;:::-;:26;;;;:::i;:::-;40024:18;40045:26;;;:17;:26;;;;;;39962:51;;-1:-1:-1;40178:28:0;;;40174:328;;-1:-1:-1;;;;;40245:18:0;;40223:19;40245:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40296:30;;;;;;:44;;;40413:30;;:17;:30;;;;;:43;;;40174:328;-1:-1:-1;40598:26:0;;;;:17;:26;;;;;;;;40591:33;;;-1:-1:-1;;;;;40642:18:0;;;;;:12;:18;;;;;:34;;;;;;;40635:41;39696:988::o;40979:1079::-;41257:10;:17;41232:22;;41257:21;;41277:1;;41257:21;:::i;:::-;41289:18;41310:24;;;:15;:24;;;;;;41683:10;:26;;41232:46;;-1:-1:-1;41310:24:0;;41232:46;;41683:26;;;;-1:-1:-1;;;41683:26:0;;;;;;;;;;;;;;;;;41661:48;;41747:11;41722:10;41733;41722:22;;;;;;-1:-1:-1;;;41722:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;41827:28;;;:15;:28;;;;;;;:41;;;41999:24;;;;;41992:31;42034:10;:16;;;;;-1:-1:-1;;;42034:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;40979:1079;;;;:::o;38483:221::-;38568:14;38585:20;38602:2;38585:16;:20::i;:::-;-1:-1:-1;;;;;38616:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38661:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38483:221:0:o;29121:382::-;-1:-1:-1;;;;;29201:16:0;;29193:61;;;;-1:-1:-1;;;29193:61:0;;12881:2:1;29193:61:0;;;12863:21:1;;;12900:18;;;12893:30;12959:34;12939:18;;;12932:62;13011:18;;29193:61:0;12853:182:1;29193:61:0;27208:4;27232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27232:16:0;:30;29265:58;;;;-1:-1:-1;;;29265:58:0;;8288:2:1;29265:58:0;;;8270:21:1;8327:2;8307:18;;;8300:30;8366;8346:18;;;8339:58;8414:18;;29265:58:0;8260:178:1;29265:58:0;29336:45;29365:1;29369:2;29373:7;29336:20;:45::i;:::-;-1:-1:-1;;;;;29394:13:0;;;;;;:9;:13;;;;;:18;;29411:1;;29394:13;:18;;29411:1;;29394:18;:::i;:::-;;;;-1:-1:-1;;29423:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29423:21:0;-1:-1:-1;;;;;29423:21:0;;;;;;;;29462:33;;29423:16;;;29462:33;;29423:16;;29462:33;29121:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:292::-;4056:6;4109:2;4097:9;4088:7;4084:23;4080:32;4077:2;;;4130:6;4122;4115:22;4077:2;4174:9;4161:23;4224:6;4217:5;4213:18;4206:5;4203:29;4193:2;;4251:6;4243;4236:22;4295:190;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:2;;;4428:6;4420;4413:22;4375:2;-1:-1:-1;4456:23:1;;4365:120;-1:-1:-1;4365:120:1:o;4490:289::-;4547:6;4600:2;4588:9;4579:7;4575:23;4571:32;4568:2;;;4621:6;4613;4606:22;4568:2;4665:9;4652:23;4715:4;4708:5;4704:16;4697:5;4694:27;4684:2;;4740:6;4732;4725:22;4784:257;4825:3;4863:5;4857:12;4890:6;4885:3;4878:19;4906:63;4962:6;4955:4;4950:3;4946:14;4939:4;4932:5;4928:16;4906:63;:::i;:::-;5023:2;5002:15;-1:-1:-1;;4998:29:1;4989:39;;;;5030:4;4985:50;;4833:208;-1:-1:-1;;4833:208:1:o;5046:470::-;5225:3;5263:6;5257:13;5279:53;5325:6;5320:3;5313:4;5305:6;5301:17;5279:53;:::i;:::-;5395:13;;5354:16;;;;5417:57;5395:13;5354:16;5451:4;5439:17;;5417:57;:::i;:::-;5490:20;;5233:283;-1:-1:-1;;;;5233:283:1:o;5939:488::-;-1:-1:-1;;;;;6208:15:1;;;6190:34;;6260:15;;6255:2;6240:18;;6233:43;6307:2;6292:18;;6285:34;;;6355:3;6350:2;6335:18;;6328:31;;;6133:4;;6376:45;;6401:19;;6393:6;6376:45;:::i;:::-;6368:53;6142:285;-1:-1:-1;;;;;;6142:285:1:o;6624:219::-;6773:2;6762:9;6755:21;6736:4;6793:44;6833:2;6822:9;6818:18;6810:6;6793:44;:::i;7260:414::-;7462:2;7444:21;;;7501:2;7481:18;;;7474:30;7540:34;7535:2;7520:18;;7513:62;-1:-1:-1;;;7606:2:1;7591:18;;7584:48;7664:3;7649:19;;7434:240::o;13798:356::-;14000:2;13982:21;;;14019:18;;;14012:30;14078:34;14073:2;14058:18;;14051:62;14145:2;14130:18;;13972:182::o;15732:413::-;15934:2;15916:21;;;15973:2;15953:18;;;15946:30;16012:34;16007:2;15992:18;;15985:62;-1:-1:-1;;;16078:2:1;16063:18;;16056:47;16135:3;16120:19;;15906:239::o;17477:128::-;17517:3;17548:1;17544:6;17541:1;17538:13;17535:2;;;17554:18;;:::i;:::-;-1:-1:-1;17590:9:1;;17525:80::o;17610:120::-;17650:1;17676;17666:2;;17681:18;;:::i;:::-;-1:-1:-1;17715:9:1;;17656:74::o;17735:168::-;17775:7;17841:1;17837;17833:6;17829:14;17826:1;17823:21;17818:1;17811:9;17804:17;17800:45;17797:2;;;17848:18;;:::i;:::-;-1:-1:-1;17888:9:1;;17787:116::o;17908:125::-;17948:4;17976:1;17973;17970:8;17967:2;;;17981:18;;:::i;:::-;-1:-1:-1;18018:9:1;;17957:76::o;18038:258::-;18110:1;18120:113;18134:6;18131:1;18128:13;18120:113;;;18210:11;;;18204:18;18191:11;;;18184:39;18156:2;18149:10;18120:113;;;18251:6;18248:1;18245:13;18242:2;;;-1:-1:-1;;18286:1:1;18268:16;;18261:27;18091:205::o;18301:380::-;18380:1;18376:12;;;;18423;;;18444:2;;18498:4;18490:6;18486:17;18476:27;;18444:2;18551;18543:6;18540:14;18520:18;18517:38;18514:2;;;18597:10;18592:3;18588:20;18585:1;18578:31;18632:4;18629:1;18622:15;18660:4;18657:1;18650:15;18514:2;;18356:325;;;:::o;18686:135::-;18725:3;-1:-1:-1;;18746:17:1;;18743:2;;;18766:18;;:::i;:::-;-1:-1:-1;18813:1:1;18802:13;;18733:88::o;18826:112::-;18858:1;18884;18874:2;;18889:18;;:::i;:::-;-1:-1:-1;18923:9:1;;18864:74::o;18943:127::-;19004:10;18999:3;18995:20;18992:1;18985:31;19035:4;19032:1;19025:15;19059:4;19056:1;19049:15;19075:127;19136:10;19131:3;19127:20;19124:1;19117:31;19167:4;19164:1;19157:15;19191:4;19188:1;19181:15;19207:127;19268:10;19263:3;19259:20;19256:1;19249:31;19299:4;19296:1;19289:15;19323:4;19320:1;19313:15;19339:131;-1:-1:-1;;;;;;19413:32:1;;19403:43;;19393:2;;19460:1;19457;19450:12

Swarm Source

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