ETH Price: $3,273.90 (-4.00%)
Gas: 17 Gwei

Token

derpyapemfers (DPAMFERS)
 

Overview

Max Total Supply

7,777 DPAMFERS

Holders

1,265

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 DPAMFERS
0x41d3ea0D6a64d603cb8C3fF710F05f546061CDde
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:
derpyapemfers

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-25
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


// 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/Context.sol


// 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/access/Ownable.sol


// 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: @openzeppelin/contracts/utils/Address.sol


// 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/token/ERC721/IERC721Receiver.sol


// 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/utils/introspection/IERC165.sol


// 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/utils/introspection/ERC165.sol


// 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/IERC721.sol


// 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/extensions/IERC721Metadata.sol


// 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: contracts/ERC721/ERC721QD.sol


pragma solidity ^0.8.11;

//------------------------------------------------------------------------------
//----------------------------------------------------------------------------








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721
 *  [ERC721] Non-Fungible Token Standard
 *
 *  This implmentation of ERC721 needs a maximum number of NFTs to provide
 *  efficient minting.  Storage for balance are no longer required reducing
 *  gas significantly.  This comes at the price of calculating the balance by
 *  iterating through the entire number of maximum NFTs, but enables the
 *  possibility of creating sections of sequential mint.
 */
contract ERC721QD is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    //Max Supply
    uint256 private _maxSupply;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // 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_, uint256 maxSupply_) {
        _name = name_;
        _symbol = symbol_;
        _maxSupply = maxSupply_;
    }

    /**
     * @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 balance) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        unchecked {
            for (uint256 i = 0; i < _maxSupply; ++i) {
                if (_owners[i] == owner) {
                    ++balance;
                }
            }
        }
    }

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

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

    /**
     * @dev Returns the MaxSupply for the Smart Contract
     */
    function maxSupply() public view virtual returns (uint256) {
        return _maxSupply;
    }

    /**
     * @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 = ERC721QD.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 tokenId < _maxSupply && _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 = ERC721QD.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);
        _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 = ERC721QD.ownerOf(tokenId);

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

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

        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(ERC721QD.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);

        _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(ERC721QD.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: contracts/ERC721/ERC721QDPlus.sol


pragma solidity ^0.8.11;

//------------------------------------------------------------------------------
//------------------------------------------------------------------------------

/**
 * @dev This is a no storage implemntation of the optional extension {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. These functions
 * are mainly for convienence and should NEVER be called from inside a
 * contract on the chain. This implementation can't be used for projects 
 * with more than 5000 NFTs.
 */
abstract contract ERC721QDPlus is ERC721QD {
    address constant zero = address(0);

    //track mint count for sequencial projects
    uint256 private _tottalSupply = 0; 

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

    function addTotalSupply (uint256 i)
        internal
    {
        _tottalSupply += i;
    }

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

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

        _approve(address(0), tokenId);

        delete _owners[tokenId];

        _tottalSupply--;

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

}
// File: contracts/derpyapemfers.sol


pragma solidity ^0.8.11;

//------------------------------------------------------------------------------
//------------------------------------------------------------------------------




contract derpyapemfers is ERC721QDPlus, Ownable  {
  using Strings for uint256;

  //NFT cost
  uint128 constant public publicCost = 0.0069 ether;

  //erc721 metadata
  string constant private _name   = "derpyapemfers";
  string constant private _symbol = "DPAMFERS";

  //project max info
  uint16 constant private _maxSupply  = 7777;
  uint16 constant private _maxFreeSupply  = 3000;
  uint8  constant private _maxPerTnx  = 20; 

  //NFT stage Paused  = 0, Presale = 1, Public = 2. 
  uint8  private  _projectStage = 0;
  bool   public   reveled = false;

  //NFT URI
  string private _projectURI;
  string private _projectHiddenURI; 
  
  //payees shares for the project
  address[] private _payees;
  uint[] private _payeesShares;

  //Admin Addresses
  address[1] private _adminAddresses;  

  //track mint count for sequencial projects
  uint16 private _currentTokenId; 

  constructor(
    uint16 initialTokenId_,
    string memory projectURI_,
    address[] memory payees_,
    uint[] memory payeesShares_
   ) 
    ERC721QD(_name, _symbol, _maxSupply)
   {
    _projectURI = projectURI_;
    _payees = payees_;
    _payeesShares = payeesShares_;
    _currentTokenId = initialTokenId_ - 1;
    _adminAddresses = [msg.sender];
  }

  //-------------------------------------------------------------------------
  // modifiers
  //-------------------------------------------------------------------------
  modifier onlyAdmin() {
    require(isAdmin(), "caller not admin");
    _;
  }

  modifier inPublicSale() {
      require(_projectStage == 2, "contract is not on public sale");
      _;
  }   

  //-------------------------------------------------------------------------
  // internal
  //-------------------------------------------------------------------------
  function isAdmin() internal view returns(bool) {
    for(uint16 i = 0; i < _adminAddresses.length; i++){
      if(_adminAddresses[i] == msg.sender)
        return true;
    }
    return false;
  }

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

  //standart mint verification used by other functions
  function _mintNFT(address _to, uint256 _quantity, uint128 _price) private {
      require(_quantity <= _maxPerTnx, "Max per Tx exceeded.");
      require(_quantity * _price <= msg.value, "Insufficient funds.");
      require(_quantity + _currentTokenId <= _maxSupply,"Purchase exceeds available supply.");
      for (uint256 i = 0; i < _quantity; i++) {
          _currentTokenId++;
          _safeMint(_to, _currentTokenId);
      }
      addTotalSupply(_quantity);
  }    

  //-------------------------------------------------------------------------
  // public
  //-------------------------------------------------------------------------
  // @dev mint the _quantity to the message.sender
  // @param _quantity is the quantity that will be minted
  function publicMint(uint256 _quantity) public payable inPublicSale {
      _mintNFT(msg.sender, _quantity, publicCost);
  }

  // @dev mint the _quantity to the message.sender for free
  // @param _quantity is the quantity that will be minted
  function publicFreeMint(uint256 _quantity) public payable inPublicSale {
      require(_quantity + _currentTokenId <= _maxFreeSupply, "Purchase exceeds available free supply.");
      _mintNFT(msg.sender, _quantity, 0);
  }

  // @dev show the correct URI for the token, using the _tokenId, shows the _projectHiddenURI if it's not on the public sale
  // @param _tokenId points to the id of the NFT in the Smart Contract
  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token");
    if(!reveled)
      return _projectHiddenURI;
    return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json"));
  }

  //@dev returns the information about the public sale
  function isPublicSale() public view returns(bool){
    return _projectStage == 2;
  }  

  // @dev returns the _maxFreeSupply.
  function maxFreeSupply() public pure returns(uint16) {
      return _maxFreeSupply;
  }

  //-------------------------------------------------------------------------
  // public only owner setter
  //-------------------------------------------------------------------------
  // @dev set a new _projectURI for the Smart Contract
  // @param projectURI_ the new URI
  function setProjectURI(string memory projectURI_) public onlyOwner {
    _projectURI = projectURI_;
  }

  // @dev set a new _projectHiddenURI for the Smart Contract
  // @param projectHiddenURI_ the new URI
  function setProjectHiddenURI(string memory projectHiddenURI_) public onlyOwner {
    _projectHiddenURI = projectHiddenURI_;
  }

  // @dev set a new _projectStage for the Smart Contract | Paused  = 0, Presale = 1, Public = 2. 
  // @param projectStage_ the new URI
  function setProjectStagePaused() public onlyOwner {
    _projectStage = 0;
  } 

  // @dev set a new _projectStage for the Smart Contract | Paused  = 0, Presale = 1, Public = 2. 
  // @param projectStage_ the new URI
  function setProjectStagePublic() public onlyOwner {
    _projectStage = 2;
  }

  // @dev set the reveled to false if it's true or to true if it's false.
  function setReveled() public onlyOwner {
      reveled = !reveled;
  }
    
  //-------------------------------------------------------------------------
  // public only admin
  //-------------------------------------------------------------------------    
  // @dev release all the funds in the smart contract for the team using the release function from PaymentSplitter
  function releaseFunds() external onlyAdmin {
    uint256 _balance = address(this).balance;
    for (uint256 i = 0; i < _payees.length; i++) {     
        (bool os, ) = payable(_payees[i]).call{value: _balance*_payeesShares[i]/100}("");
        require(os);
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint16","name":"initialTokenId_","type":"uint16"},{"internalType":"string","name":"projectURI_","type":"string"},{"internalType":"address[]","name":"payees_","type":"address[]"},{"internalType":"uint256[]","name":"payeesShares_","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"publicCost","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"releaseFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"projectHiddenURI_","type":"string"}],"name":"setProjectHiddenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setProjectStagePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setProjectStagePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"projectURI_","type":"string"}],"name":"setProjectURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setReveled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006006556007805461ffff60a01b191690553480156200002457600080fd5b50604051620025c8380380620025c8833981016040819052620000479162000489565b604080518082018252600d81526c64657270796170656d6665727360981b6020808301918252835180850190945260088452674450414d4645525360c01b908401528151919291611e6191620000a19160019190620001a9565b508151620000b7906002906020850190620001a9565b5060005550620000c990503362000157565b8251620000de906008906020860190620001a9565b508151620000f490600a90602085019062000238565b5080516200010a90600b90602084019062000290565b5062000118600185620005b3565b600d805461ffff191661ffff9290921691909117905560408051602081019091523381526200014c90600c906001620002cd565b505050505062000622565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b790620005e5565b90600052602060002090601f016020900481019282620001db576000855562000226565b82601f10620001f657805160ff191683800117855562000226565b8280016001018555821562000226579182015b828111156200022657825182559160200191906001019062000209565b506200023492915062000317565b5090565b82805482825590600052602060002090810192821562000226579160200282015b828111156200022657825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000259565b8280548282559060005260206000209081019282156200022657916020028201828111156200022657825182559160200191906001019062000209565b82600181019282156200022657916020028201828111156200022657825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000259565b5b8082111562000234576000815560010162000318565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156200036f576200036f6200032e565b604052919050565b60006001600160401b038211156200039357620003936200032e565b5060051b60200190565b600082601f830112620003af57600080fd5b81516020620003c8620003c28362000377565b62000344565b82815260059290921b84018101918181019086841115620003e857600080fd5b8286015b848110156200041c5780516001600160a01b03811681146200040e5760008081fd5b8352918301918301620003ec565b509695505050505050565b600082601f8301126200043957600080fd5b815160206200044c620003c28362000377565b82815260059290921b840181019181810190868411156200046c57600080fd5b8286015b848110156200041c578051835291830191830162000470565b60008060008060808587031215620004a057600080fd5b845161ffff81168114620004b357600080fd5b602086810151919550906001600160401b0380821115620004d357600080fd5b818801915088601f830112620004e857600080fd5b815181811115620004fd57620004fd6200032e565b62000511601f8201601f1916850162000344565b8181528a858386010111156200052657600080fd5b60005b828110156200054657848101860151828201870152850162000529565b82811115620005585760008684840101525b5060408a0151909750935050808311156200057257600080fd5b6200058089848a016200039d565b945060608801519250808311156200059757600080fd5b5050620005a78782880162000427565b91505092959194509250565b600061ffff83811690831681811015620005dd57634e487b7160e01b600052601160045260246000fd5b039392505050565b600181811c90821680620005fa57607f821691505b602082108114156200061c57634e487b7160e01b600052602260045260246000fd5b50919050565b611f9680620006326000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063e191865a11610064578063e191865a146104f6578063e985e9c514610517578063f2fde38b14610560578063f6cffdfc1461058057600080fd5b8063b88d4fde1461048c578063b936b6d7146104ac578063c87b56dd146104c1578063d5abeb01146104e157600080fd5b80638da5cb5b116100d15780638da5cb5b1461041757806395d89b4114610435578063a22cb4651461044a578063a5a865dc1461046a57600080fd5b806370a08231146103af578063715018a6146103cf5780638693da20146103e457600080fd5b806323b872dd1161016f5780636352211e1161013e5780636352211e1461035257806363b28ee6146103725780636919153a1461038557806369d895751461039a57600080fd5b806323b872dd146102e25780632db115441461030257806342842e0e14610315578063475133341461033557600080fd5b8063095ea7b3116101ab578063095ea7b3146102615780630be4d2b81461028357806313403b3b146102a357806318160ddd146102c357600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046119c0565b610595565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105e7565b6040516101fe9190611a3c565b34801561023557600080fd5b50610249610244366004611a4f565b610679565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a84565b610706565b005b34801561028f57600080fd5b5061028161029e366004611b3a565b61081c565b3480156102af57600080fd5b506102816102be366004611b3a565b61085d565b3480156102cf57600080fd5b506006545b6040519081526020016101fe565b3480156102ee57600080fd5b506102816102fd366004611b83565b61089a565b610281610310366004611a4f565b6108cb565b34801561032157600080fd5b50610281610330366004611b83565b61093c565b34801561034157600080fd5b50604051610bb881526020016101fe565b34801561035e57600080fd5b5061024961036d366004611a4f565b610957565b610281610380366004611a4f565b6109dc565b34801561039157600080fd5b50610281610ab7565b3480156103a657600080fd5b50610281610af6565b3480156103bb57600080fd5b506102d46103ca366004611bbf565b610c12565b3480156103db57600080fd5b50610281610cc1565b3480156103f057600080fd5b506103ff6618838370f3400081565b6040516001600160801b0390911681526020016101fe565b34801561042357600080fd5b506007546001600160a01b0316610249565b34801561044157600080fd5b5061021c610cf7565b34801561045657600080fd5b50610281610465366004611bda565b610d06565b34801561047657600080fd5b50600754600160a01b900460ff166002146101f2565b34801561049857600080fd5b506102816104a7366004611c16565b610d11565b3480156104b857600080fd5b50610281610d49565b3480156104cd57600080fd5b5061021c6104dc366004611a4f565b610d82565b3480156104ed57600080fd5b506000546102d4565b34801561050257600080fd5b506007546101f290600160a81b900460ff1681565b34801561052357600080fd5b506101f2610532366004611c92565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056c57600080fd5b5061028161057b366004611bbf565b610ecc565b34801561058c57600080fd5b50610281610f64565b60006001600160e01b031982166380ac58cd60e01b14806105c657506001600160e01b03198216635b5e139f60e01b145b806105e157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105f690611cc5565b80601f016020809104026020016040519081016040528092919081815260200182805461062290611cc5565b801561066f5780601f106106445761010080835404028352916020019161066f565b820191906000526020600020905b81548152906001019060200180831161065257829003601f168201915b5050505050905090565b600061068482610faf565b6106ea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071182610957565b9050806001600160a01b0316836001600160a01b0316141561077f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e1565b336001600160a01b038216148061079b575061079b8133610532565b61080d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e1565b6108178383610fda565b505050565b6007546001600160a01b031633146108465760405162461bcd60e51b81526004016106e190611cfa565b8051610859906008906020840190611911565b5050565b6007546001600160a01b031633146108875760405162461bcd60e51b81526004016106e190611cfa565b8051610859906009906020840190611911565b6108a43382611048565b6108c05760405162461bcd60e51b81526004016106e190611d2f565b610817838383611132565b600754600160a01b900460ff166002146109275760405162461bcd60e51b815260206004820152601e60248201527f636f6e7472616374206973206e6f74206f6e207075626c69632073616c65000060448201526064016106e1565b61093933826618838370f34000611276565b50565b61081783838360405180602001604052806000815250610d11565b600061096282610faf565b6109c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e1565b506000908152600360205260409020546001600160a01b031690565b600754600160a01b900460ff16600214610a385760405162461bcd60e51b815260206004820152601e60248201527f636f6e7472616374206973206e6f74206f6e207075626c69632073616c65000060448201526064016106e1565b600d54610bb890610a4d9061ffff1683611d96565b1115610aab5760405162461bcd60e51b815260206004820152602760248201527f5075726368617365206578636565647320617661696c61626c6520667265652060448201526639bab838363c9760c91b60648201526084016106e1565b61093933826000611276565b6007546001600160a01b03163314610ae15760405162461bcd60e51b81526004016106e190611cfa565b6007805460ff60a01b1916600160a11b179055565b610afe6113ea565b610b3d5760405162461bcd60e51b815260206004820152601060248201526f31b0b63632b9103737ba1030b236b4b760811b60448201526064016106e1565b4760005b600a54811015610859576000600a8281548110610b6057610b60611dae565b600091825260209091200154600b80546001600160a01b03909216916064919085908110610b9057610b90611dae565b906000526020600020015485610ba69190611dc4565b610bb09190611df9565b604051600081818185875af1925050503d8060008114610bec576040519150601f19603f3d011682016040523d82523d6000602084013e610bf1565b606091505b5050905080610bff57600080fd5b5080610c0a81611e0d565b915050610b41565b60006001600160a01b038216610c7d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e1565b60005b600054811015610cbb576000818152600360205260409020546001600160a01b0384811691161415610cb3578160010191505b600101610c80565b50919050565b6007546001600160a01b03163314610ceb5760405162461bcd60e51b81526004016106e190611cfa565b610cf56000611446565b565b6060600280546105f690611cc5565b610859338383611498565b610d1b3383611048565b610d375760405162461bcd60e51b81526004016106e190611d2f565b610d4384848484611567565b50505050565b6007546001600160a01b03163314610d735760405162461bcd60e51b81526004016106e190611cfa565b6007805460ff60a01b19169055565b6060610d8d82610faf565b610df15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e1565b600754600160a81b900460ff16610e945760098054610e0f90611cc5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3b90611cc5565b8015610e885780601f10610e5d57610100808354040283529160200191610e88565b820191906000526020600020905b815481529060010190602001808311610e6b57829003601f168201915b50505050509050919050565b610e9c61159a565b610ea5836115a9565b604051602001610eb6929190611e28565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610ef65760405162461bcd60e51b81526004016106e190611cfa565b6001600160a01b038116610f5b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e1565b61093981611446565b6007546001600160a01b03163314610f8e5760405162461bcd60e51b81526004016106e190611cfa565b6007805460ff60a81b198116600160a81b9182900460ff1615909102179055565b60008054821080156105e15750506000908152600360205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061100f82610957565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061105382610faf565b6110b45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e1565b60006110bf83610957565b9050806001600160a01b0316846001600160a01b031614806110fa5750836001600160a01b03166110ef84610679565b6001600160a01b0316145b8061112a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661114582610957565b6001600160a01b0316146111ad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e1565b6001600160a01b03821661120f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e1565b61121a600082610fda565b60008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60148211156112be5760405162461bcd60e51b815260206004820152601460248201527326b0bc103832b9102a3c1032bc31b2b2b232b21760611b60448201526064016106e1565b346112d26001600160801b03831684611dc4565b11156113165760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b60448201526064016106e1565b600d54611e619061132b9061ffff1684611d96565b11156113845760405162461bcd60e51b815260206004820152602260248201527f5075726368617365206578636565647320617661696c61626c6520737570706c6044820152613c9760f11b60648201526084016106e1565b60005b828110156113e057600d805461ffff169060006113a383611e67565b82546101009290920a61ffff818102199093169183160217909155600d546113ce92508691166116a7565b806113d881611e0d565b915050611387565b50610817826116c1565b6000805b60018161ffff16101561143e5733600c61ffff83166001811061141357611413611dae565b01546001600160a01b0316141561142c57600191505090565b8061143681611e67565b9150506113ee565b506000905090565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114fa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611572848484611132565b61157e848484846116db565b610d435760405162461bcd60e51b81526004016106e190611e89565b6060600880546105f690611cc5565b6060816115cd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115f757806115e181611e0d565b91506115f09050600a83611df9565b91506115d1565b60008167ffffffffffffffff81111561161257611612611aae565b6040519080825280601f01601f19166020018201604052801561163c576020820181803683370190505b5090505b841561112a57611651600183611edb565b915061165e600a86611ef2565b611669906030611d96565b60f81b81838151811061167e5761167e611dae565b60200101906001600160f81b031916908160001a9053506116a0600a86611df9565b9450611640565b6108598282604051806020016040528060008152506117d9565b80600660008282546116d39190611d96565b909155505050565b60006001600160a01b0384163b156117ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061171f903390899088908890600401611f06565b6020604051808303816000875af192505050801561175a575060408051601f3d908101601f1916820190925261175791810190611f43565b60015b6117b4573d808015611788576040519150601f19603f3d011682016040523d82523d6000602084013e61178d565b606091505b5080516117ac5760405162461bcd60e51b81526004016106e190611e89565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061112a565b506001949350505050565b6117e3838361180c565b6117f060008484846116db565b6108175760405162461bcd60e51b81526004016106e190611e89565b6001600160a01b0382166118625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e1565b61186b81610faf565b156118b85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e1565b60008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461191d90611cc5565b90600052602060002090601f01602090048101928261193f5760008555611985565b82601f1061195857805160ff1916838001178555611985565b82800160010185558215611985579182015b8281111561198557825182559160200191906001019061196a565b50611991929150611995565b5090565b5b808211156119915760008155600101611996565b6001600160e01b03198116811461093957600080fd5b6000602082840312156119d257600080fd5b81356119dd816119aa565b9392505050565b60005b838110156119ff5781810151838201526020016119e7565b83811115610d435750506000910152565b60008151808452611a288160208601602086016119e4565b601f01601f19169290920160200192915050565b6020815260006119dd6020830184611a10565b600060208284031215611a6157600080fd5b5035919050565b80356001600160a01b0381168114611a7f57600080fd5b919050565b60008060408385031215611a9757600080fd5b611aa083611a68565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611adf57611adf611aae565b604051601f8501601f19908116603f01168101908282118183101715611b0757611b07611aae565b81604052809350858152868686011115611b2057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b4c57600080fd5b813567ffffffffffffffff811115611b6357600080fd5b8201601f81018413611b7457600080fd5b61112a84823560208401611ac4565b600080600060608486031215611b9857600080fd5b611ba184611a68565b9250611baf60208501611a68565b9150604084013590509250925092565b600060208284031215611bd157600080fd5b6119dd82611a68565b60008060408385031215611bed57600080fd5b611bf683611a68565b915060208301358015158114611c0b57600080fd5b809150509250929050565b60008060008060808587031215611c2c57600080fd5b611c3585611a68565b9350611c4360208601611a68565b925060408501359150606085013567ffffffffffffffff811115611c6657600080fd5b8501601f81018713611c7757600080fd5b611c8687823560208401611ac4565b91505092959194509250565b60008060408385031215611ca557600080fd5b611cae83611a68565b9150611cbc60208401611a68565b90509250929050565b600181811c90821680611cd957607f821691505b60208210811415610cbb57634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611da957611da9611d80565b500190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615611dde57611dde611d80565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e0857611e08611de3565b500490565b6000600019821415611e2157611e21611d80565b5060010190565b60008351611e3a8184602088016119e4565b835190830190611e4e8183602088016119e4565b64173539b7b760d91b9101908152600501949350505050565b600061ffff80831681811415611e7f57611e7f611d80565b6001019392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082821015611eed57611eed611d80565b500390565b600082611f0157611f01611de3565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3990830184611a10565b9695505050505050565b600060208284031215611f5557600080fd5b81516119dd816119aa56fea264697066735822122009b2966bb16c9dd674f83757cc2cc079a46ecd3b1528bd6b9ce4d36e62906bbb64736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6538777750546e6666443170615242453441786b3273783535364b7a7a5a4c74455265426a7371336b4557482f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000004f1e4f24c96e3c84c29209e184ca3cd92e6d27ee00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b88d4fde11610095578063e191865a11610064578063e191865a146104f6578063e985e9c514610517578063f2fde38b14610560578063f6cffdfc1461058057600080fd5b8063b88d4fde1461048c578063b936b6d7146104ac578063c87b56dd146104c1578063d5abeb01146104e157600080fd5b80638da5cb5b116100d15780638da5cb5b1461041757806395d89b4114610435578063a22cb4651461044a578063a5a865dc1461046a57600080fd5b806370a08231146103af578063715018a6146103cf5780638693da20146103e457600080fd5b806323b872dd1161016f5780636352211e1161013e5780636352211e1461035257806363b28ee6146103725780636919153a1461038557806369d895751461039a57600080fd5b806323b872dd146102e25780632db115441461030257806342842e0e14610315578063475133341461033557600080fd5b8063095ea7b3116101ab578063095ea7b3146102615780630be4d2b81461028357806313403b3b146102a357806318160ddd146102c357600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046119c0565b610595565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105e7565b6040516101fe9190611a3c565b34801561023557600080fd5b50610249610244366004611a4f565b610679565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a84565b610706565b005b34801561028f57600080fd5b5061028161029e366004611b3a565b61081c565b3480156102af57600080fd5b506102816102be366004611b3a565b61085d565b3480156102cf57600080fd5b506006545b6040519081526020016101fe565b3480156102ee57600080fd5b506102816102fd366004611b83565b61089a565b610281610310366004611a4f565b6108cb565b34801561032157600080fd5b50610281610330366004611b83565b61093c565b34801561034157600080fd5b50604051610bb881526020016101fe565b34801561035e57600080fd5b5061024961036d366004611a4f565b610957565b610281610380366004611a4f565b6109dc565b34801561039157600080fd5b50610281610ab7565b3480156103a657600080fd5b50610281610af6565b3480156103bb57600080fd5b506102d46103ca366004611bbf565b610c12565b3480156103db57600080fd5b50610281610cc1565b3480156103f057600080fd5b506103ff6618838370f3400081565b6040516001600160801b0390911681526020016101fe565b34801561042357600080fd5b506007546001600160a01b0316610249565b34801561044157600080fd5b5061021c610cf7565b34801561045657600080fd5b50610281610465366004611bda565b610d06565b34801561047657600080fd5b50600754600160a01b900460ff166002146101f2565b34801561049857600080fd5b506102816104a7366004611c16565b610d11565b3480156104b857600080fd5b50610281610d49565b3480156104cd57600080fd5b5061021c6104dc366004611a4f565b610d82565b3480156104ed57600080fd5b506000546102d4565b34801561050257600080fd5b506007546101f290600160a81b900460ff1681565b34801561052357600080fd5b506101f2610532366004611c92565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056c57600080fd5b5061028161057b366004611bbf565b610ecc565b34801561058c57600080fd5b50610281610f64565b60006001600160e01b031982166380ac58cd60e01b14806105c657506001600160e01b03198216635b5e139f60e01b145b806105e157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105f690611cc5565b80601f016020809104026020016040519081016040528092919081815260200182805461062290611cc5565b801561066f5780601f106106445761010080835404028352916020019161066f565b820191906000526020600020905b81548152906001019060200180831161065257829003601f168201915b5050505050905090565b600061068482610faf565b6106ea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071182610957565b9050806001600160a01b0316836001600160a01b0316141561077f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e1565b336001600160a01b038216148061079b575061079b8133610532565b61080d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e1565b6108178383610fda565b505050565b6007546001600160a01b031633146108465760405162461bcd60e51b81526004016106e190611cfa565b8051610859906008906020840190611911565b5050565b6007546001600160a01b031633146108875760405162461bcd60e51b81526004016106e190611cfa565b8051610859906009906020840190611911565b6108a43382611048565b6108c05760405162461bcd60e51b81526004016106e190611d2f565b610817838383611132565b600754600160a01b900460ff166002146109275760405162461bcd60e51b815260206004820152601e60248201527f636f6e7472616374206973206e6f74206f6e207075626c69632073616c65000060448201526064016106e1565b61093933826618838370f34000611276565b50565b61081783838360405180602001604052806000815250610d11565b600061096282610faf565b6109c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e1565b506000908152600360205260409020546001600160a01b031690565b600754600160a01b900460ff16600214610a385760405162461bcd60e51b815260206004820152601e60248201527f636f6e7472616374206973206e6f74206f6e207075626c69632073616c65000060448201526064016106e1565b600d54610bb890610a4d9061ffff1683611d96565b1115610aab5760405162461bcd60e51b815260206004820152602760248201527f5075726368617365206578636565647320617661696c61626c6520667265652060448201526639bab838363c9760c91b60648201526084016106e1565b61093933826000611276565b6007546001600160a01b03163314610ae15760405162461bcd60e51b81526004016106e190611cfa565b6007805460ff60a01b1916600160a11b179055565b610afe6113ea565b610b3d5760405162461bcd60e51b815260206004820152601060248201526f31b0b63632b9103737ba1030b236b4b760811b60448201526064016106e1565b4760005b600a54811015610859576000600a8281548110610b6057610b60611dae565b600091825260209091200154600b80546001600160a01b03909216916064919085908110610b9057610b90611dae565b906000526020600020015485610ba69190611dc4565b610bb09190611df9565b604051600081818185875af1925050503d8060008114610bec576040519150601f19603f3d011682016040523d82523d6000602084013e610bf1565b606091505b5050905080610bff57600080fd5b5080610c0a81611e0d565b915050610b41565b60006001600160a01b038216610c7d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e1565b60005b600054811015610cbb576000818152600360205260409020546001600160a01b0384811691161415610cb3578160010191505b600101610c80565b50919050565b6007546001600160a01b03163314610ceb5760405162461bcd60e51b81526004016106e190611cfa565b610cf56000611446565b565b6060600280546105f690611cc5565b610859338383611498565b610d1b3383611048565b610d375760405162461bcd60e51b81526004016106e190611d2f565b610d4384848484611567565b50505050565b6007546001600160a01b03163314610d735760405162461bcd60e51b81526004016106e190611cfa565b6007805460ff60a01b19169055565b6060610d8d82610faf565b610df15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e1565b600754600160a81b900460ff16610e945760098054610e0f90611cc5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3b90611cc5565b8015610e885780601f10610e5d57610100808354040283529160200191610e88565b820191906000526020600020905b815481529060010190602001808311610e6b57829003601f168201915b50505050509050919050565b610e9c61159a565b610ea5836115a9565b604051602001610eb6929190611e28565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610ef65760405162461bcd60e51b81526004016106e190611cfa565b6001600160a01b038116610f5b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e1565b61093981611446565b6007546001600160a01b03163314610f8e5760405162461bcd60e51b81526004016106e190611cfa565b6007805460ff60a81b198116600160a81b9182900460ff1615909102179055565b60008054821080156105e15750506000908152600360205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061100f82610957565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061105382610faf565b6110b45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e1565b60006110bf83610957565b9050806001600160a01b0316846001600160a01b031614806110fa5750836001600160a01b03166110ef84610679565b6001600160a01b0316145b8061112a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661114582610957565b6001600160a01b0316146111ad5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e1565b6001600160a01b03821661120f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e1565b61121a600082610fda565b60008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60148211156112be5760405162461bcd60e51b815260206004820152601460248201527326b0bc103832b9102a3c1032bc31b2b2b232b21760611b60448201526064016106e1565b346112d26001600160801b03831684611dc4565b11156113165760405162461bcd60e51b815260206004820152601360248201527224b739bab33334b1b4b2b73a10333ab732399760691b60448201526064016106e1565b600d54611e619061132b9061ffff1684611d96565b11156113845760405162461bcd60e51b815260206004820152602260248201527f5075726368617365206578636565647320617661696c61626c6520737570706c6044820152613c9760f11b60648201526084016106e1565b60005b828110156113e057600d805461ffff169060006113a383611e67565b82546101009290920a61ffff818102199093169183160217909155600d546113ce92508691166116a7565b806113d881611e0d565b915050611387565b50610817826116c1565b6000805b60018161ffff16101561143e5733600c61ffff83166001811061141357611413611dae565b01546001600160a01b0316141561142c57600191505090565b8061143681611e67565b9150506113ee565b506000905090565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156114fa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611572848484611132565b61157e848484846116db565b610d435760405162461bcd60e51b81526004016106e190611e89565b6060600880546105f690611cc5565b6060816115cd5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115f757806115e181611e0d565b91506115f09050600a83611df9565b91506115d1565b60008167ffffffffffffffff81111561161257611612611aae565b6040519080825280601f01601f19166020018201604052801561163c576020820181803683370190505b5090505b841561112a57611651600183611edb565b915061165e600a86611ef2565b611669906030611d96565b60f81b81838151811061167e5761167e611dae565b60200101906001600160f81b031916908160001a9053506116a0600a86611df9565b9450611640565b6108598282604051806020016040528060008152506117d9565b80600660008282546116d39190611d96565b909155505050565b60006001600160a01b0384163b156117ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061171f903390899088908890600401611f06565b6020604051808303816000875af192505050801561175a575060408051601f3d908101601f1916820190925261175791810190611f43565b60015b6117b4573d808015611788576040519150601f19603f3d011682016040523d82523d6000602084013e61178d565b606091505b5080516117ac5760405162461bcd60e51b81526004016106e190611e89565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061112a565b506001949350505050565b6117e3838361180c565b6117f060008484846116db565b6108175760405162461bcd60e51b81526004016106e190611e89565b6001600160a01b0382166118625760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e1565b61186b81610faf565b156118b85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e1565b60008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461191d90611cc5565b90600052602060002090601f01602090048101928261193f5760008555611985565b82601f1061195857805160ff1916838001178555611985565b82800160010185558215611985579182015b8281111561198557825182559160200191906001019061196a565b50611991929150611995565b5090565b5b808211156119915760008155600101611996565b6001600160e01b03198116811461093957600080fd5b6000602082840312156119d257600080fd5b81356119dd816119aa565b9392505050565b60005b838110156119ff5781810151838201526020016119e7565b83811115610d435750506000910152565b60008151808452611a288160208601602086016119e4565b601f01601f19169290920160200192915050565b6020815260006119dd6020830184611a10565b600060208284031215611a6157600080fd5b5035919050565b80356001600160a01b0381168114611a7f57600080fd5b919050565b60008060408385031215611a9757600080fd5b611aa083611a68565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611adf57611adf611aae565b604051601f8501601f19908116603f01168101908282118183101715611b0757611b07611aae565b81604052809350858152868686011115611b2057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b4c57600080fd5b813567ffffffffffffffff811115611b6357600080fd5b8201601f81018413611b7457600080fd5b61112a84823560208401611ac4565b600080600060608486031215611b9857600080fd5b611ba184611a68565b9250611baf60208501611a68565b9150604084013590509250925092565b600060208284031215611bd157600080fd5b6119dd82611a68565b60008060408385031215611bed57600080fd5b611bf683611a68565b915060208301358015158114611c0b57600080fd5b809150509250929050565b60008060008060808587031215611c2c57600080fd5b611c3585611a68565b9350611c4360208601611a68565b925060408501359150606085013567ffffffffffffffff811115611c6657600080fd5b8501601f81018713611c7757600080fd5b611c8687823560208401611ac4565b91505092959194509250565b60008060408385031215611ca557600080fd5b611cae83611a68565b9150611cbc60208401611a68565b90509250929050565b600181811c90821680611cd957607f821691505b60208210811415610cbb57634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611da957611da9611d80565b500190565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615611dde57611dde611d80565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e0857611e08611de3565b500490565b6000600019821415611e2157611e21611d80565b5060010190565b60008351611e3a8184602088016119e4565b835190830190611e4e8183602088016119e4565b64173539b7b760d91b9101908152600501949350505050565b600061ffff80831681811415611e7f57611e7f611d80565b6001019392505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082821015611eed57611eed611d80565b500390565b600082611f0157611f01611de3565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f3990830184611a10565b9695505050505050565b600060208284031215611f5557600080fd5b81516119dd816119aa56fea264697066735822122009b2966bb16c9dd674f83757cc2cc079a46ecd3b1528bd6b9ce4d36e62906bbb64736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6538777750546e6666443170615242453441786b3273783535364b7a7a5a4c74455265426a7371336b4557482f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000004f1e4f24c96e3c84c29209e184ca3cd92e6d27ee00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : initialTokenId_ (uint16): 1
Arg [1] : projectURI_ (string): ipfs://Qme8wwPTnffD1paRBE4Axk2sx556KzzZLtEReBjsq3kEWH/hidden.json
Arg [2] : payees_ (address[]): 0x4F1E4F24C96E3c84c29209e184ca3cD92E6D27ee
Arg [3] : payeesShares_ (uint256[]): 100

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [5] : 697066733a2f2f516d6538777750546e6666443170615242453441786b327378
Arg [6] : 3535364b7a7a5a4c74455265426a7371336b4557482f68696464656e2e6a736f
Arg [7] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 0000000000000000000000004f1e4f24c96e3c84c29209e184ca3cd92e6d27ee
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000064


Deployed Bytecode Sourcemap

38880:6087:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24105:305;;;;;;;;;;-1:-1:-1;24105:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24105:305:0;;;;;;;;25219:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26963:221::-;;;;;;;;;;-1:-1:-1;26963:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26963:221:0;1528:203:1;26484:413:0;;;;;;;;;;-1:-1:-1;26484:413:0;;;;;:::i;:::-;;:::i;:::-;;43432:105;;;;;;;;;;-1:-1:-1;43432:105:0;;;;;:::i;:::-;;:::i;43648:129::-;;;;;;;;;;-1:-1:-1;43648:129:0;;;;;:::i;:::-;;:::i;37716:141::-;;;;;;;;;;-1:-1:-1;37836:13:0;;37716:141;;;3544:25:1;;;3532:2;3517:18;37716:141:0;3398:177:1;27713:339:0;;;;;;;;;;-1:-1:-1;27713:339:0;;;;;:::i;:::-;;:::i;41869:125::-;;;;;;:::i;:::-;;:::i;28123:185::-;;;;;;;;;;-1:-1:-1;28123:185:0;;;;;:::i;:::-;;:::i;43055:89::-;;;;;;;;;;-1:-1:-1;43055:89:0;;39273:4;4057:38:1;;4045:2;4030:18;43055:89:0;3913:188:1;24916:236:0;;;;;;;;;;-1:-1:-1;24916:236:0;;;;;:::i;:::-;;:::i;42120:226::-;;;;;;:::i;:::-;;:::i;44146:80::-;;;;;;;;;;;;;:::i;44691:273::-;;;;;;;;;;;;;:::i;24474:380::-;;;;;;;;;;-1:-1:-1;24474:380:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;38980:49::-;;;;;;;;;;;;39017:12;38980:49;;;;;-1:-1:-1;;;;;4461:47:1;;;4443:66;;4431:2;4416:18;38980:49:0;4297:218:1;4112:87:0;;;;;;;;;;-1:-1:-1;4185:6:0;;-1:-1:-1;;;;;4185:6:0;4112:87;;25567:104;;;;;;;;;;;;;:::i;27256:155::-;;;;;;;;;;-1:-1:-1;27256:155:0;;;;;:::i;:::-;;:::i;42921:87::-;;;;;;;;;;-1:-1:-1;42984:13:0;;-1:-1:-1;;;42984:13:0;;;;43001:1;42984:18;42921:87;;28379:328;;;;;;;;;;-1:-1:-1;28379:328:0;;;;;:::i;:::-;;:::i;43921:80::-;;;;;;;;;;;;;:::i;42550:309::-;;;;;;;;;;-1:-1:-1;42550:309:0;;;;;:::i;:::-;;:::i;25403:95::-;;;;;;;;;;-1:-1:-1;25453:7:0;25480:10;25403:95;;39422:31;;;;;;;;;;-1:-1:-1;39422:31:0;;;;-1:-1:-1;;;39422:31:0;;;;;;27482:164;;;;;;;;;;-1:-1:-1;27482:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27603:25:0;;;27579:4;27603:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27482:164;5021:201;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;44307:72::-;;;;;;;;;;;;;:::i;24105:305::-;24207:4;-1:-1:-1;;;;;;24244:40:0;;-1:-1:-1;;;24244:40:0;;:105;;-1:-1:-1;;;;;;;24301:48:0;;-1:-1:-1;;;24301:48:0;24244:105;:158;;;-1:-1:-1;;;;;;;;;;16653:40:0;;;24366:36;24224:178;24105:305;-1:-1:-1;;24105:305:0:o;25219:100::-;25273:13;25306:5;25299:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25219:100;:::o;26963:221::-;27039:7;27067:16;27075:7;27067;:16::i;:::-;27059:73;;;;-1:-1:-1;;;27059:73:0;;6396:2:1;27059:73:0;;;6378:21:1;6435:2;6415:18;;;6408:30;6474:34;6454:18;;;6447:62;-1:-1:-1;;;6525:18:1;;;6518:42;6577:19;;27059:73:0;;;;;;;;;-1:-1:-1;27152:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27152:24:0;;26963:221::o;26484:413::-;26565:13;26581:25;26598:7;26581:16;:25::i;:::-;26565:41;;26631:5;-1:-1:-1;;;;;26625:11:0;:2;-1:-1:-1;;;;;26625:11:0;;;26617:57;;;;-1:-1:-1;;;26617:57:0;;6809:2:1;26617:57:0;;;6791:21:1;6848:2;6828:18;;;6821:30;6887:34;6867:18;;;6860:62;-1:-1:-1;;;6938:18:1;;;6931:31;6979:19;;26617:57:0;6607:397:1;26617:57:0;2916:10;-1:-1:-1;;;;;26709:21:0;;;;:62;;-1:-1:-1;26734:37:0;26751:5;2916:10;27482:164;:::i;26734:37::-;26687:168;;;;-1:-1:-1;;;26687:168:0;;7211:2:1;26687:168:0;;;7193:21:1;7250:2;7230:18;;;7223:30;7289:34;7269:18;;;7262:62;7360:26;7340:18;;;7333:54;7404:19;;26687:168:0;7009:420:1;26687:168:0;26868:21;26877:2;26881:7;26868:8;:21::i;:::-;26554:343;26484:413;;:::o;43432:105::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;43506:25;;::::1;::::0;:11:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43432:105:::0;:::o;43648:129::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;43734:37;;::::1;::::0;:17:::1;::::0;:37:::1;::::0;::::1;::::0;::::1;:::i;27713:339::-:0;27908:41;2916:10;27941:7;27908:18;:41::i;:::-;27900:103;;;;-1:-1:-1;;;27900:103:0;;;;;;;:::i;:::-;28016:28;28026:4;28032:2;28036:7;28016:9;:28::i;41869:125::-;40471:13;;-1:-1:-1;;;40471:13:0;;;;40488:1;40471:18;40463:61;;;;-1:-1:-1;;;40463:61:0;;8415:2:1;40463:61:0;;;8397:21:1;8454:2;8434:18;;;8427:30;8493:32;8473:18;;;8466:60;8543:18;;40463:61:0;8213:354:1;40463:61:0;41945:43:::1;41954:10;41966:9;39017:12;41945:8;:43::i;:::-;41869:125:::0;:::o;28123:185::-;28261:39;28278:4;28284:2;28288:7;28261:39;;;;;;;;;;;;:16;:39::i;24916:236::-;24988:7;25016:16;25024:7;25016;:16::i;:::-;25008:70;;;;-1:-1:-1;;;25008:70:0;;8774:2:1;25008:70:0;;;8756:21:1;8813:2;8793:18;;;8786:30;8852:34;8832:18;;;8825:62;-1:-1:-1;;;8903:18:1;;;8896:39;8952:19;;25008:70:0;8572:405:1;25008:70:0;-1:-1:-1;25089:13:0;25105:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25105:16:0;;24916:236::o;42120:226::-;40471:13;;-1:-1:-1;;;40471:13:0;;;;40488:1;40471:18;40463:61;;;;-1:-1:-1;;;40463:61:0;;8415:2:1;40463:61:0;;;8397:21:1;8454:2;8434:18;;;8427:30;8493:32;8473:18;;;8466:60;8543:18;;40463:61:0;8213:354:1;40463:61:0;42220:15:::1;::::0;39273:4:::1;::::0;42208:27:::1;::::0;:45:::1;42220:15;42208:9:::0;:27:::1;:::i;:::-;:45;;42200:97;;;::::0;-1:-1:-1;;;42200:97:0;;9449:2:1;42200:97:0::1;::::0;::::1;9431:21:1::0;9488:2;9468:18;;;9461:30;9527:34;9507:18;;;9500:62;-1:-1:-1;;;9578:18:1;;;9571:37;9625:19;;42200:97:0::1;9247:403:1::0;42200:97:0::1;42306:34;42315:10;42327:9;42338:1;42306:8;:34::i;44146:80::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;44203:13:::1;:17:::0;;-1:-1:-1;;;;44203:17:0::1;-1:-1:-1::0;;;44203:17:0::1;::::0;;44146:80::o;44691:273::-;40380:9;:7;:9::i;:::-;40372:38;;;;-1:-1:-1;;;40372:38:0;;9857:2:1;40372:38:0;;;9839:21:1;9896:2;9876:18;;;9869:30;-1:-1:-1;;;9915:18:1;;;9908:46;9971:18;;40372:38:0;9655:340:1;40372:38:0;44760:21:::1;44741:16;44788:171;44812:7;:14:::0;44808:18;::::1;44788:171;;;44850:7;44871;44879:1;44871:10;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;44904:13:::1;:16:::0;;-1:-1:-1;;;;;44871:10:0;;::::1;::::0;44921:3:::1;::::0;44904:13;44918:1;;44904:16;::::1;;;;;:::i;:::-;;;;;;;;;44895:8;:25;;;;:::i;:::-;:29;;;;:::i;:::-;44863:66;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44849:80;;;44948:2;44940:11;;;::::0;::::1;;-1:-1:-1::0;44828:3:0;::::1;::::0;::::1;:::i;:::-;;;;44788:171;;24474:380:::0;24546:15;-1:-1:-1;;;;;24582:19:0;;24574:74;;;;-1:-1:-1;;;24574:74:0;;11114:2:1;24574:74:0;;;11096:21:1;11153:2;11133:18;;;11126:30;11192:34;11172:18;;;11165:62;-1:-1:-1;;;11243:18:1;;;11236:40;11293:19;;24574:74:0;10912:406:1;24574:74:0;24689:9;24684:152;24708:10;;24704:1;:14;24684:152;;;24748:10;;;;:7;:10;;;;;;-1:-1:-1;;;;;24748:19:0;;;:10;;:19;24744:77;;;24792:9;;;;;24744:77;24720:3;;24684:152;;;;24474:380;;;:::o;4763:103::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;25567:104::-;25623:13;25656:7;25649:14;;;;;:::i;27256:155::-;27351:52;2916:10;27384:8;27394;27351:18;:52::i;28379:328::-;28554:41;2916:10;28587:7;28554:18;:41::i;:::-;28546:103;;;;-1:-1:-1;;;28546:103:0;;;;;;;:::i;:::-;28660:39;28674:4;28680:2;28684:7;28693:5;28660:13;:39::i;:::-;28379:328;;;;:::o;43921:80::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;43978:13:::1;:17:::0;;-1:-1:-1;;;;43978:17:0::1;::::0;;43921:80::o;42550:309::-;42624:13;42654:17;42662:8;42654:7;:17::i;:::-;42646:76;;;;-1:-1:-1;;;42646:76:0;;11525:2:1;42646:76:0;;;11507:21:1;11564:2;11544:18;;;11537:30;11603:34;11583:18;;;11576:62;-1:-1:-1;;;11654:18:1;;;11647:45;11709:19;;42646:76:0;11323:411:1;42646:76:0;42733:7;;-1:-1:-1;;;42733:7:0;;;;42729:44;;42756:17;42749:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42550:309;;;:::o;42729:44::-;42811:10;:8;:10::i;:::-;42823:19;:8;:17;:19::i;:::-;42794:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42780:73;;42550:309;;;:::o;5021:201::-;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;::::0;-1:-1:-1;;;5102:73:0;;12583:2:1;5102:73:0::1;::::0;::::1;12565:21:1::0;12622:2;12602:18;;;12595:30;12661:34;12641:18;;;12634:62;-1:-1:-1;;;12712:18:1;;;12705:36;12758:19;;5102:73:0::1;12381:402:1::0;5102:73:0::1;5186:28;5205:8;5186:18;:28::i;44307:72::-:0;4185:6;;-1:-1:-1;;;;;4185:6:0;2916:10;4332:23;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;44366:7:::1;::::0;;-1:-1:-1;;;;44355:18:0;::::1;-1:-1:-1::0;;;44366:7:0;;;::::1;;;44365:8;44355:18:::0;;::::1;;::::0;;44307:72::o;30217:151::-;30282:4;30316:10;;30306:7;:20;:54;;;;-1:-1:-1;;30358:1:0;30330:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30330:16:0;:30;;;30217:151::o;34104:176::-;34179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34179:29:0;-1:-1:-1;;;;;34179:29:0;;;;;;;;:24;;34233:25;34179:24;34233:16;:25::i;:::-;-1:-1:-1;;;;;34224:48:0;;;;;;;;;;;34104:176;;:::o;30535:350::-;30628:4;30653:16;30661:7;30653;:16::i;:::-;30645:73;;;;-1:-1:-1;;;30645:73:0;;12990:2:1;30645:73:0;;;12972:21:1;13029:2;13009:18;;;13002:30;13068:34;13048:18;;;13041:62;-1:-1:-1;;;13119:18:1;;;13112:42;13171:19;;30645:73:0;12788:408:1;30645:73:0;30729:13;30745:25;30762:7;30745:16;:25::i;:::-;30729:41;;30800:5;-1:-1:-1;;;;;30789:16:0;:7;-1:-1:-1;;;;;30789:16:0;;:51;;;;30833:7;-1:-1:-1;;;;;30809:31:0;:20;30821:7;30809:11;:20::i;:::-;-1:-1:-1;;;;;30809:31:0;;30789:51;:87;;;-1:-1:-1;;;;;;27603:25:0;;;27579:4;27603:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30844:32;30781:96;30535:350;-1:-1:-1;;;;30535:350:0:o;33466:520::-;33627:4;-1:-1:-1;;;;;33598:33:0;:25;33615:7;33598:16;:25::i;:::-;-1:-1:-1;;;;;33598:33:0;;33590:87;;;;-1:-1:-1;;;33590:87:0;;13403:2:1;33590:87:0;;;13385:21:1;13442:2;13422:18;;;13415:30;13481:34;13461:18;;;13454:62;-1:-1:-1;;;13532:18:1;;;13525:39;13581:19;;33590:87:0;13201:405:1;33590:87:0;-1:-1:-1;;;;;33696:16:0;;33688:65;;;;-1:-1:-1;;;33688:65:0;;13813:2:1;33688:65:0;;;13795:21:1;13852:2;13832:18;;;13825:30;13891:34;13871:18;;;13864:62;-1:-1:-1;;;13942:18:1;;;13935:34;13986:19;;33688:65:0;13611:400:1;33688:65:0;33870:29;33887:1;33891:7;33870:8;:29::i;:::-;33912:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33912:21:0;-1:-1:-1;;;;;33912:21:0;;;;;;;;;33951:27;;33912:16;;33951:27;;;;;;;33466:520;;;:::o;41098:479::-;39320:2;41189:23;;;41181:56;;;;-1:-1:-1;;;41181:56:0;;14218:2:1;41181:56:0;;;14200:21:1;14257:2;14237:18;;;14230:30;-1:-1:-1;;;14276:18:1;;;14269:50;14336:18;;41181:56:0;14016:344:1;41181:56:0;41276:9;41254:18;-1:-1:-1;;;;;41254:18:0;;:9;:18;:::i;:::-;:31;;41246:63;;;;-1:-1:-1;;;41246:63:0;;14567:2:1;41246:63:0;;;14549:21:1;14606:2;14586:18;;;14579:30;-1:-1:-1;;;14625:18:1;;;14618:49;14684:18;;41246:63:0;14365:343:1;41246:63:0;41338:15;;39222:4;;41326:27;;:41;41338:15;41326:9;:27;:::i;:::-;:41;;41318:87;;;;-1:-1:-1;;;41318:87:0;;14915:2:1;41318:87:0;;;14897:21:1;14954:2;14934:18;;;14927:30;14993:34;14973:18;;;14966:62;-1:-1:-1;;;15044:18:1;;;15037:32;15086:19;;41318:87:0;14713:398:1;41318:87:0;41419:9;41414:124;41438:9;41434:1;:13;41414:124;;;41467:15;:17;;;;;:15;:17;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;41512:15;;41497:31;;-1:-1:-1;41507:3:0;;41512:15;41497:9;:31::i;:::-;41449:3;;;;:::i;:::-;;;;41414:124;;;;41546:25;41561:9;41546:14;:25::i;40722:202::-;40763:4;;40776:124;40798:22;40794:1;:26;;;40776:124;;;40860:10;40838:15;:18;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;40838:18:0;:32;40835:57;;;40888:4;40881:11;;;40722:202;:::o;40835:57::-;40822:3;;;;:::i;:::-;;;;40776:124;;;;40913:5;40906:12;;40722:202;:::o;5382:191::-;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5445:128;5382:191;:::o;34422:315::-;34577:8;-1:-1:-1;;;;;34568:17:0;:5;-1:-1:-1;;;;;34568:17:0;;;34560:55;;;;-1:-1:-1;;;34560:55:0;;15520:2:1;34560:55:0;;;15502:21:1;15559:2;15539:18;;;15532:30;15598:27;15578:18;;;15571:55;15643:18;;34560:55:0;15318:349:1;34560:55:0;-1:-1:-1;;;;;34626:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34626:46:0;;;;;;;;;;34688:41;;540::1;;;34688::0;;513:18:1;34688:41:0;;;;;;;34422:315;;;:::o;29589:::-;29746:28;29756:4;29762:2;29766:7;29746:9;:28::i;:::-;29793:48;29816:4;29822:2;29826:7;29835:5;29793:22;:48::i;:::-;29785:111;;;;-1:-1:-1;;;29785:111:0;;;;;;;:::i;40930:106::-;40990:13;41019:11;41012:18;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;31227:110;31303:26;31313:2;31317:7;31303:26;;;;;;;;;;;;:9;:26::i;37865:96::-;37952:1;37935:13;;:18;;;;;;;:::i;:::-;;;;-1:-1:-1;;;37865:96:0:o;35302:799::-;35457:4;-1:-1:-1;;;;;35478:13:0;;6723:20;6771:8;35474:620;;35514:72;;-1:-1:-1;;;35514:72:0;;-1:-1:-1;;;;;35514:36:0;;;;;:72;;2916:10;;35565:4;;35571:7;;35580:5;;35514:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35514:72:0;;;;;;;;-1:-1:-1;;35514:72:0;;;;;;;;;;;;:::i;:::-;;;35510:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35756:13:0;;35752:272;;35799:60;;-1:-1:-1;;;35799:60:0;;;;;;;:::i;35752:272::-;35974:6;35968:13;35959:6;35955:2;35951:15;35944:38;35510:529;-1:-1:-1;;;;;;35637:51:0;-1:-1:-1;;;35637:51:0;;-1:-1:-1;35630:58:0;;35474:620;-1:-1:-1;36078:4:0;35302:799;;;;;;:::o;31564:320::-;31694:17;31700:2;31703:7;31694:5;:17::i;:::-;31744:54;31775:1;31779:2;31783:7;31792:5;31744:22;:54::i;:::-;31722:154;;;;-1:-1:-1;;;31722:154:0;;;;;;;:::i;32220:350::-;-1:-1:-1;;;;;32299:16:0;;32291:61;;;;-1:-1:-1;;;32291:61:0;;17288:2:1;32291:61:0;;;17270:21:1;;;17307:18;;;17300:30;17366:34;17346:18;;;17339:62;17418:18;;32291:61:0;17086:356:1;32291:61:0;32372:16;32380:7;32372;:16::i;:::-;32371:17;32363:58;;;;-1:-1:-1;;;32363:58:0;;17649:2:1;32363:58:0;;;17631:21:1;17688:2;17668:18;;;17661:30;17727;17707:18;;;17700:58;17775:18;;32363:58:0;17447:352:1;32363:58:0;32490:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32490:21:0;-1:-1:-1;;;;;32490:21:0;;;;;;;;32529:33;;32490:16;;;32529:33;;32490:16;;32529:33;32220:350;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;2400:18;2441:2;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3153:18;3145:6;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;4106:186::-;4165:6;4218:2;4206:9;4197:7;4193:23;4189:32;4186:52;;;4234:1;4231;4224:12;4186:52;4257:29;4276:9;4257:29;:::i;4520:347::-;4585:6;4593;4646:2;4634:9;4625:7;4621:23;4617:32;4614:52;;;4662:1;4659;4652:12;4614:52;4685:29;4704:9;4685:29;:::i;:::-;4675:39;;4764:2;4753:9;4749:18;4736:32;4811:5;4804:13;4797:21;4790:5;4787:32;4777:60;;4833:1;4830;4823:12;4777:60;4856:5;4846:15;;;4520:347;;;;;:::o;4872:667::-;4967:6;4975;4983;4991;5044:3;5032:9;5023:7;5019:23;5015:33;5012:53;;;5061:1;5058;5051:12;5012:53;5084:29;5103:9;5084:29;:::i;:::-;5074:39;;5132:38;5166:2;5155:9;5151:18;5132:38;:::i;:::-;5122:48;;5217:2;5206:9;5202:18;5189:32;5179:42;;5272:2;5261:9;5257:18;5244:32;5299:18;5291:6;5288:30;5285:50;;;5331:1;5328;5321:12;5285:50;5354:22;;5407:4;5399:13;;5395:27;-1:-1:-1;5385:55:1;;5436:1;5433;5426:12;5385:55;5459:74;5525:7;5520:2;5507:16;5502:2;5498;5494:11;5459:74;:::i;:::-;5449:84;;;4872:667;;;;;;;:::o;5544:260::-;5612:6;5620;5673:2;5661:9;5652:7;5648:23;5644:32;5641:52;;;5689:1;5686;5679:12;5641:52;5712:29;5731:9;5712:29;:::i;:::-;5702:39;;5760:38;5794:2;5783:9;5779:18;5760:38;:::i;:::-;5750:48;;5544:260;;;;;:::o;5809:380::-;5888:1;5884:12;;;;5931;;;5952:61;;6006:4;5998:6;5994:17;5984:27;;5952:61;6059:2;6051:6;6048:14;6028:18;6025:38;6022:161;;;6105:10;6100:3;6096:20;6093:1;6086:31;6140:4;6137:1;6130:15;6168:4;6165:1;6158:15;7434:356;7636:2;7618:21;;;7655:18;;;7648:30;7714:34;7709:2;7694:18;;7687:62;7781:2;7766:18;;7434:356::o;7795:413::-;7997:2;7979:21;;;8036:2;8016:18;;;8009:30;8075:34;8070:2;8055:18;;8048:62;-1:-1:-1;;;8141:2:1;8126:18;;8119:47;8198:3;8183:19;;7795:413::o;8982:127::-;9043:10;9038:3;9034:20;9031:1;9024:31;9074:4;9071:1;9064:15;9098:4;9095:1;9088:15;9114:128;9154:3;9185:1;9181:6;9178:1;9175:13;9172:39;;;9191:18;;:::i;:::-;-1:-1:-1;9227:9:1;;9114:128::o;10000:127::-;10061:10;10056:3;10052:20;10049:1;10042:31;10092:4;10089:1;10082:15;10116:4;10113:1;10106:15;10132:168;10172:7;10238:1;10234;10230:6;10226:14;10223:1;10220:21;10215:1;10208:9;10201:17;10197:45;10194:71;;;10245:18;;:::i;:::-;-1:-1:-1;10285:9:1;;10132:168::o;10305:127::-;10366:10;10361:3;10357:20;10354:1;10347:31;10397:4;10394:1;10387:15;10421:4;10418:1;10411:15;10437:120;10477:1;10503;10493:35;;10508:18;;:::i;:::-;-1:-1:-1;10542:9:1;;10437:120::o;10772:135::-;10811:3;-1:-1:-1;;10832:17:1;;10829:43;;;10852:18;;:::i;:::-;-1:-1:-1;10899:1:1;10888:13;;10772:135::o;11739:637::-;12019:3;12057:6;12051:13;12073:53;12119:6;12114:3;12107:4;12099:6;12095:17;12073:53;:::i;:::-;12189:13;;12148:16;;;;12211:57;12189:13;12148:16;12245:4;12233:17;;12211:57;:::i;:::-;-1:-1:-1;;;12290:20:1;;12319:22;;;12368:1;12357:13;;11739:637;-1:-1:-1;;;;11739:637:1:o;15116:197::-;15154:3;15182:6;15223:2;15216:5;15212:14;15250:2;15241:7;15238:15;15235:41;;;15256:18;;:::i;:::-;15305:1;15292:15;;15116:197;-1:-1:-1;;;15116:197:1:o;15672:414::-;15874:2;15856:21;;;15913:2;15893:18;;;15886:30;15952:34;15947:2;15932:18;;15925:62;-1:-1:-1;;;16018:2:1;16003:18;;15996:48;16076:3;16061:19;;15672:414::o;16091:125::-;16131:4;16159:1;16156;16153:8;16150:34;;;16164:18;;:::i;:::-;-1:-1:-1;16201:9:1;;16091:125::o;16221:112::-;16253:1;16279;16269:35;;16284:18;;:::i;:::-;-1:-1:-1;16318:9:1;;16221:112::o;16338:489::-;-1:-1:-1;;;;;16607:15:1;;;16589:34;;16659:15;;16654:2;16639:18;;16632:43;16706:2;16691:18;;16684:34;;;16754:3;16749:2;16734:18;;16727:31;;;16532:4;;16775:46;;16801:19;;16793:6;16775:46;:::i;:::-;16767:54;16338:489;-1:-1:-1;;;;;;16338:489:1:o;16832:249::-;16901:6;16954:2;16942:9;16933:7;16929:23;16925:32;16922:52;;;16970:1;16967;16960:12;16922:52;17002:9;16996:16;17021:30;17045:5;17021:30;:::i

Swarm Source

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