ETH Price: $3,472.78 (+1.58%)
Gas: 13 Gwei

Token

3D mfers by mferverse (3DMF)
 

Overview

Max Total Supply

1,387 3DMF

Holders

674

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 3DMF
0x24fa699317e3ec78e1b66a4931406987fde28f7b
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:
OGMfers

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-01-30
*/

// 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: @openzeppelin/contracts/token/ERC721/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: contracts/3dmfers.sol



pragma solidity >=0.8.11;





contract OGMfers is ERC721, Ownable {

    address public MFERS_ADDRESS; 
    IERC721 private _mfersContract;

    uint private _totalSupply;

    string private _metadataBaseURI;
    string private _metadataExtension;

    /* events */
    event Received(address,  uint);

    /* metadata */

    constructor(address mfersAddress) ERC721("3D mfers by mferverse", "3DMF") Ownable() {
        setMfersAddress(mfersAddress);
        setMetadataBaseURI("https://mferverse.com/og-pfp/metadata/");
        setMetadataExtenstion(".json");
    }

    receive() external payable {
        emit Received(msg.sender, msg.value);
    }

    /* owner's functions */
    
    function setMfersAddress(address newAddress) public onlyOwner {
        MFERS_ADDRESS = newAddress;
        _mfersContract = IERC721(MFERS_ADDRESS);
    }

    function setMetadataBaseURI(string memory uri) public onlyOwner {
        _metadataBaseURI = uri;
    }

    function setMetadataExtenstion(string memory extension) public onlyOwner {
        _metadataExtension = extension;
    }

    function withdraw() public onlyOwner {
        (bool sent,) = owner().call{value: address(this).balance}("");
        require(sent, "Failed to send Ether");
    }

    /* Public functions */

    function _mint(uint256 token) private {        
        require(_mfersContract.ownerOf(token) == msg.sender, "Should own the mfer");

        _safeMint(msg.sender, token);

        _totalSupply += 1;
    }

    function mint(uint256 token) payable public {
        if (msg.value > 0) {
            emit Received(msg.sender, msg.value);
        }

        _mint(token);
    }

    function massMint(uint256[] memory tokens) payable public {
        if (msg.value > 0) {
            emit Received(msg.sender, msg.value);
        }

        for (uint i = 0; i < tokens.length; ++i)
        {
            _mint(tokens[i]);
        }
    }

    function totalSupply() public view returns(uint supply)
    {
        supply = _totalSupply;
    }

    function tokenURI(uint256 token) public view override(ERC721) returns(string memory)
    {
        return string(abi.encodePacked(_metadataBaseURI, Strings.toString(token), _metadataExtension));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"mfersAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MFERS_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokens","type":"uint256[]"}],"name":"massMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"token","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"uri","type":"string"}],"name":"setMetadataBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"extension","type":"string"}],"name":"setMetadataExtenstion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setMfersAddress","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":"token","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620020e8380380620020e883398101604081905262000034916200035b565b604080518082018252601581527f3344206d66657273206279206d6665727665727365000000000000000000000060208083019182528351808501909452600484526319a226a360e11b9084015281519192916200009591600091620002b5565b508051620000ab906001906020840190620002b5565b505050620000c8620000c26200012560201b60201c565b62000129565b620000d3816200017b565b620000f7604051806060016040528060268152602001620020a260269139620001f6565b604080518082019091526005815264173539b7b760d91b60208201526200011e906200025a565b50620003ca565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001ca5760405162461bcd60e51b81526020600482018190526024820152600080516020620020c883398151915260448201526064015b60405180910390fd5b600780546001600160a01b039092166001600160a01b0319928316811790915560088054909216179055565b6006546001600160a01b03163314620002415760405162461bcd60e51b81526020600482018190526024820152600080516020620020c88339815191526044820152606401620001c1565b80516200025690600a906020840190620002b5565b5050565b6006546001600160a01b03163314620002a55760405162461bcd60e51b81526020600482018190526024820152600080516020620020c88339815191526044820152606401620001c1565b80516200025690600b9060208401905b828054620002c3906200038d565b90600052602060002090601f016020900481019282620002e7576000855562000332565b82601f106200030257805160ff191683800117855562000332565b8280016001018555821562000332579182015b828111156200033257825182559160200191906001019062000315565b506200034092915062000344565b5090565b5b8082111562000340576000815560010162000345565b6000602082840312156200036e57600080fd5b81516001600160a01b03811681146200038657600080fd5b9392505050565b600181811c90821680620003a257607f821691505b60208210811415620003c457634e487b7160e01b600052602260045260246000fd5b50919050565b611cc880620003da6000396000f3fe60806040526004361061014f5760003560e01c8063715018a6116100b6578063b88d4fde1161006f578063b88d4fde146103d3578063c0fd9dfd146103f3578063c87b56dd14610406578063e985e9c514610426578063f2fde38b1461046f578063fb94bd8a1461048f57600080fd5b8063715018a61461033857806389d65e0c1461034d5780638da5cb5b1461036d57806395d89b411461038b578063a0712d68146103a0578063a22cb465146103b357600080fd5b80633ccfd60b116101085780633ccfd60b146102835780633d1a62f71461029857806342842e0e146102b85780634c3a6b77146102d85780636352211e146102f857806370a082311461031857600080fd5b806301ffc9a71461019357806306fdde03146101c8578063081812fc146101ea578063095ea7b31461022257806318160ddd1461024457806323b872dd1461026357600080fd5b3661018e57604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b34801561019f57600080fd5b506101b36101ae3660046115c6565b6104af565b60405190151581526020015b60405180910390f35b3480156101d457600080fd5b506101dd610501565b6040516101bf9190611642565b3480156101f657600080fd5b5061020a610205366004611655565b610593565b6040516001600160a01b0390911681526020016101bf565b34801561022e57600080fd5b5061024261023d366004611683565b61062d565b005b34801561025057600080fd5b506009545b6040519081526020016101bf565b34801561026f57600080fd5b5061024261027e3660046116af565b610743565b34801561028f57600080fd5b50610242610774565b3480156102a457600080fd5b506102426102b336600461178f565b61084c565b3480156102c457600080fd5b506102426102d33660046116af565b61088d565b3480156102e457600080fd5b5060075461020a906001600160a01b031681565b34801561030457600080fd5b5061020a610313366004611655565b6108a8565b34801561032457600080fd5b506102556103333660046117d8565b61091f565b34801561034457600080fd5b506102426109a6565b34801561035957600080fd5b506102426103683660046117d8565b6109dc565b34801561037957600080fd5b506006546001600160a01b031661020a565b34801561039757600080fd5b506101dd610a32565b6102426103ae366004611655565b610a41565b3480156103bf57600080fd5b506102426103ce3660046117f5565b610a89565b3480156103df57600080fd5b506102426103ee366004611833565b610a94565b6102426104013660046118b3565b610acc565b34801561041257600080fd5b506101dd610421366004611655565b610b49565b34801561043257600080fd5b506101b3610441366004611959565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561047b57600080fd5b5061024261048a3660046117d8565b610b80565b34801561049b57600080fd5b506102426104aa36600461178f565b610c18565b60006001600160e01b031982166380ac58cd60e01b14806104e057506001600160e01b03198216635b5e139f60e01b145b806104fb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461051090611987565b80601f016020809104026020016040519081016040528092919081815260200182805461053c90611987565b80156105895780601f1061055e57610100808354040283529160200191610589565b820191906000526020600020905b81548152906001019060200180831161056c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610638826108a8565b9050806001600160a01b0316836001600160a01b031614156106a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610608565b336001600160a01b03821614806106c257506106c28133610441565b6107345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610608565b61073e8383610c55565b505050565b61074d3382610cc3565b6107695760405162461bcd60e51b8152600401610608906119c2565b61073e838383610dba565b6006546001600160a01b0316331461079e5760405162461bcd60e51b815260040161060890611a13565b60006107b26006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146107fc576040519150601f19603f3d011682016040523d82523d6000602084013e610801565b606091505b50509050806108495760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610608565b50565b6006546001600160a01b031633146108765760405162461bcd60e51b815260040161060890611a13565b805161088990600b906020840190611517565b5050565b61073e83838360405180602001604052806000815250610a94565b6000818152600260205260408120546001600160a01b0316806104fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610608565b60006001600160a01b03821661098a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610608565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109d05760405162461bcd60e51b815260040161060890611a13565b6109da6000610f5a565b565b6006546001600160a01b03163314610a065760405162461bcd60e51b815260040161060890611a13565b600780546001600160a01b039092166001600160a01b0319928316811790915560088054909216179055565b60606001805461051090611987565b3415610a8057604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a15b61084981610fac565b61088933838361108a565b610a9e3383610cc3565b610aba5760405162461bcd60e51b8152600401610608906119c2565b610ac684848484611159565b50505050565b3415610b0b57604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a15b60005b815181101561088957610b39828281518110610b2c57610b2c611a48565b6020026020010151610fac565b610b4281611a74565b9050610b0e565b6060600a610b568361118c565b600b604051602001610b6a93929190611b29565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610baa5760405162461bcd60e51b815260040161060890611a13565b6001600160a01b038116610c0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610608565b61084981610f5a565b6006546001600160a01b03163314610c425760405162461bcd60e51b815260040161060890611a13565b805161088990600a906020840190611517565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c8a826108a8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d3c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610608565b6000610d47836108a8565b9050806001600160a01b0316846001600160a01b03161480610d825750836001600160a01b0316610d7784610593565b6001600160a01b0316145b80610db257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610dcd826108a8565b6001600160a01b031614610e355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610608565b6001600160a01b038216610e975760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610608565b610ea2600082610c55565b6001600160a01b0383166000908152600360205260408120805460019290610ecb908490611b5c565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ef9908490611b73565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110199190611b8b565b6001600160a01b0316146110655760405162461bcd60e51b815260206004820152601360248201527229b437bab6321037bbb7103a34329036b332b960691b6044820152606401610608565b61106f338261128a565b6001600960008282546110829190611b73565b909155505050565b816001600160a01b0316836001600160a01b031614156110ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610608565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611164848484610dba565b611170848484846112a4565b610ac65760405162461bcd60e51b815260040161060890611ba8565b6060816111b05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111da57806111c481611a74565b91506111d39050600a83611c10565b91506111b4565b60008167ffffffffffffffff8111156111f5576111f56116f0565b6040519080825280601f01601f19166020018201604052801561121f576020820181803683370190505b5090505b8415610db257611234600183611b5c565b9150611241600a86611c24565b61124c906030611b73565b60f81b81838151811061126157611261611a48565b60200101906001600160f81b031916908160001a905350611283600a86611c10565b9450611223565b6108898282604051806020016040528060008152506113a2565b60006001600160a01b0384163b1561139757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112e8903390899088908890600401611c38565b6020604051808303816000875af1925050508015611323575060408051601f3d908101601f1916820190925261132091810190611c75565b60015b61137d573d808015611351576040519150601f19603f3d011682016040523d82523d6000602084013e611356565b606091505b5080516113755760405162461bcd60e51b815260040161060890611ba8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610db2565b506001949350505050565b6113ac83836113d5565b6113b960008484846112a4565b61073e5760405162461bcd60e51b815260040161060890611ba8565b6001600160a01b03821661142b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610608565b6000818152600260205260409020546001600160a01b0316156114905760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610608565b6001600160a01b03821660009081526003602052604081208054600192906114b9908490611b73565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461152390611987565b90600052602060002090601f016020900481019282611545576000855561158b565b82601f1061155e57805160ff191683800117855561158b565b8280016001018555821561158b579182015b8281111561158b578251825591602001919060010190611570565b5061159792915061159b565b5090565b5b80821115611597576000815560010161159c565b6001600160e01b03198116811461084957600080fd5b6000602082840312156115d857600080fd5b81356115e3816115b0565b9392505050565b60005b838110156116055781810151838201526020016115ed565b83811115610ac65750506000910152565b6000815180845261162e8160208601602086016115ea565b601f01601f19169290920160200192915050565b6020815260006115e36020830184611616565b60006020828403121561166757600080fd5b5035919050565b6001600160a01b038116811461084957600080fd5b6000806040838503121561169657600080fd5b82356116a18161166e565b946020939093013593505050565b6000806000606084860312156116c457600080fd5b83356116cf8161166e565b925060208401356116df8161166e565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561172f5761172f6116f0565b604052919050565b600067ffffffffffffffff831115611751576117516116f0565b611764601f8401601f1916602001611706565b905082815283838301111561177857600080fd5b828260208301376000602084830101529392505050565b6000602082840312156117a157600080fd5b813567ffffffffffffffff8111156117b857600080fd5b8201601f810184136117c957600080fd5b610db284823560208401611737565b6000602082840312156117ea57600080fd5b81356115e38161166e565b6000806040838503121561180857600080fd5b82356118138161166e565b91506020830135801515811461182857600080fd5b809150509250929050565b6000806000806080858703121561184957600080fd5b84356118548161166e565b935060208501356118648161166e565b925060408501359150606085013567ffffffffffffffff81111561188757600080fd5b8501601f8101871361189857600080fd5b6118a787823560208401611737565b91505092959194509250565b600060208083850312156118c657600080fd5b823567ffffffffffffffff808211156118de57600080fd5b818501915085601f8301126118f257600080fd5b813581811115611904576119046116f0565b8060051b9150611915848301611706565b818152918301840191848101908884111561192f57600080fd5b938501935b8385101561194d57843582529385019390850190611934565b98975050505050505050565b6000806040838503121561196c57600080fd5b82356119778161166e565b915060208301356118288161166e565b600181811c9082168061199b57607f821691505b602082108114156119bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611a8857611a88611a5e565b5060010190565b8054600090600181811c9080831680611aa957607f831692505b6020808410821415611acb57634e487b7160e01b600052602260045260246000fd5b818015611adf5760018114611af057611b1d565b60ff19861689528489019650611b1d565b60008881526020902060005b86811015611b155781548b820152908501908301611afc565b505084890196505b50505050505092915050565b6000611b358286611a8f565b8451611b458183602089016115ea565b611b5181830186611a8f565b979650505050505050565b600082821015611b6e57611b6e611a5e565b500390565b60008219821115611b8657611b86611a5e565b500190565b600060208284031215611b9d57600080fd5b81516115e38161166e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611c1f57611c1f611bfa565b500490565b600082611c3357611c33611bfa565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c6b90830184611616565b9695505050505050565b600060208284031215611c8757600080fd5b81516115e3816115b056fea2646970667358221220ad29669cb7b6634696e075b3330478949366fe2cfad90e0b496eb5fd2e6b543764736f6c634300080b003368747470733a2f2f6d66657276657273652e636f6d2f6f672d7066702f6d657461646174612f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000079fcdef22feed20eddacbb2587640e45491b757f

Deployed Bytecode

0x60806040526004361061014f5760003560e01c8063715018a6116100b6578063b88d4fde1161006f578063b88d4fde146103d3578063c0fd9dfd146103f3578063c87b56dd14610406578063e985e9c514610426578063f2fde38b1461046f578063fb94bd8a1461048f57600080fd5b8063715018a61461033857806389d65e0c1461034d5780638da5cb5b1461036d57806395d89b411461038b578063a0712d68146103a0578063a22cb465146103b357600080fd5b80633ccfd60b116101085780633ccfd60b146102835780633d1a62f71461029857806342842e0e146102b85780634c3a6b77146102d85780636352211e146102f857806370a082311461031857600080fd5b806301ffc9a71461019357806306fdde03146101c8578063081812fc146101ea578063095ea7b31461022257806318160ddd1461024457806323b872dd1461026357600080fd5b3661018e57604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b34801561019f57600080fd5b506101b36101ae3660046115c6565b6104af565b60405190151581526020015b60405180910390f35b3480156101d457600080fd5b506101dd610501565b6040516101bf9190611642565b3480156101f657600080fd5b5061020a610205366004611655565b610593565b6040516001600160a01b0390911681526020016101bf565b34801561022e57600080fd5b5061024261023d366004611683565b61062d565b005b34801561025057600080fd5b506009545b6040519081526020016101bf565b34801561026f57600080fd5b5061024261027e3660046116af565b610743565b34801561028f57600080fd5b50610242610774565b3480156102a457600080fd5b506102426102b336600461178f565b61084c565b3480156102c457600080fd5b506102426102d33660046116af565b61088d565b3480156102e457600080fd5b5060075461020a906001600160a01b031681565b34801561030457600080fd5b5061020a610313366004611655565b6108a8565b34801561032457600080fd5b506102556103333660046117d8565b61091f565b34801561034457600080fd5b506102426109a6565b34801561035957600080fd5b506102426103683660046117d8565b6109dc565b34801561037957600080fd5b506006546001600160a01b031661020a565b34801561039757600080fd5b506101dd610a32565b6102426103ae366004611655565b610a41565b3480156103bf57600080fd5b506102426103ce3660046117f5565b610a89565b3480156103df57600080fd5b506102426103ee366004611833565b610a94565b6102426104013660046118b3565b610acc565b34801561041257600080fd5b506101dd610421366004611655565b610b49565b34801561043257600080fd5b506101b3610441366004611959565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561047b57600080fd5b5061024261048a3660046117d8565b610b80565b34801561049b57600080fd5b506102426104aa36600461178f565b610c18565b60006001600160e01b031982166380ac58cd60e01b14806104e057506001600160e01b03198216635b5e139f60e01b145b806104fb57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461051090611987565b80601f016020809104026020016040519081016040528092919081815260200182805461053c90611987565b80156105895780601f1061055e57610100808354040283529160200191610589565b820191906000526020600020905b81548152906001019060200180831161056c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610638826108a8565b9050806001600160a01b0316836001600160a01b031614156106a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610608565b336001600160a01b03821614806106c257506106c28133610441565b6107345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610608565b61073e8383610c55565b505050565b61074d3382610cc3565b6107695760405162461bcd60e51b8152600401610608906119c2565b61073e838383610dba565b6006546001600160a01b0316331461079e5760405162461bcd60e51b815260040161060890611a13565b60006107b26006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146107fc576040519150601f19603f3d011682016040523d82523d6000602084013e610801565b606091505b50509050806108495760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610608565b50565b6006546001600160a01b031633146108765760405162461bcd60e51b815260040161060890611a13565b805161088990600b906020840190611517565b5050565b61073e83838360405180602001604052806000815250610a94565b6000818152600260205260408120546001600160a01b0316806104fb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610608565b60006001600160a01b03821661098a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610608565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109d05760405162461bcd60e51b815260040161060890611a13565b6109da6000610f5a565b565b6006546001600160a01b03163314610a065760405162461bcd60e51b815260040161060890611a13565b600780546001600160a01b039092166001600160a01b0319928316811790915560088054909216179055565b60606001805461051090611987565b3415610a8057604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a15b61084981610fac565b61088933838361108a565b610a9e3383610cc3565b610aba5760405162461bcd60e51b8152600401610608906119c2565b610ac684848484611159565b50505050565b3415610b0b57604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a15b60005b815181101561088957610b39828281518110610b2c57610b2c611a48565b6020026020010151610fac565b610b4281611a74565b9050610b0e565b6060600a610b568361118c565b600b604051602001610b6a93929190611b29565b6040516020818303038152906040529050919050565b6006546001600160a01b03163314610baa5760405162461bcd60e51b815260040161060890611a13565b6001600160a01b038116610c0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610608565b61084981610f5a565b6006546001600160a01b03163314610c425760405162461bcd60e51b815260040161060890611a13565b805161088990600a906020840190611517565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c8a826108a8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d3c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610608565b6000610d47836108a8565b9050806001600160a01b0316846001600160a01b03161480610d825750836001600160a01b0316610d7784610593565b6001600160a01b0316145b80610db257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610dcd826108a8565b6001600160a01b031614610e355760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610608565b6001600160a01b038216610e975760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610608565b610ea2600082610c55565b6001600160a01b0383166000908152600360205260408120805460019290610ecb908490611b5c565b90915550506001600160a01b0382166000908152600360205260408120805460019290610ef9908490611b73565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e90602401602060405180830381865afa158015610ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110199190611b8b565b6001600160a01b0316146110655760405162461bcd60e51b815260206004820152601360248201527229b437bab6321037bbb7103a34329036b332b960691b6044820152606401610608565b61106f338261128a565b6001600960008282546110829190611b73565b909155505050565b816001600160a01b0316836001600160a01b031614156110ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610608565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611164848484610dba565b611170848484846112a4565b610ac65760405162461bcd60e51b815260040161060890611ba8565b6060816111b05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111da57806111c481611a74565b91506111d39050600a83611c10565b91506111b4565b60008167ffffffffffffffff8111156111f5576111f56116f0565b6040519080825280601f01601f19166020018201604052801561121f576020820181803683370190505b5090505b8415610db257611234600183611b5c565b9150611241600a86611c24565b61124c906030611b73565b60f81b81838151811061126157611261611a48565b60200101906001600160f81b031916908160001a905350611283600a86611c10565b9450611223565b6108898282604051806020016040528060008152506113a2565b60006001600160a01b0384163b1561139757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112e8903390899088908890600401611c38565b6020604051808303816000875af1925050508015611323575060408051601f3d908101601f1916820190925261132091810190611c75565b60015b61137d573d808015611351576040519150601f19603f3d011682016040523d82523d6000602084013e611356565b606091505b5080516113755760405162461bcd60e51b815260040161060890611ba8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610db2565b506001949350505050565b6113ac83836113d5565b6113b960008484846112a4565b61073e5760405162461bcd60e51b815260040161060890611ba8565b6001600160a01b03821661142b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610608565b6000818152600260205260409020546001600160a01b0316156114905760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610608565b6001600160a01b03821660009081526003602052604081208054600192906114b9908490611b73565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461152390611987565b90600052602060002090601f016020900481019282611545576000855561158b565b82601f1061155e57805160ff191683800117855561158b565b8280016001018555821561158b579182015b8281111561158b578251825591602001919060010190611570565b5061159792915061159b565b5090565b5b80821115611597576000815560010161159c565b6001600160e01b03198116811461084957600080fd5b6000602082840312156115d857600080fd5b81356115e3816115b0565b9392505050565b60005b838110156116055781810151838201526020016115ed565b83811115610ac65750506000910152565b6000815180845261162e8160208601602086016115ea565b601f01601f19169290920160200192915050565b6020815260006115e36020830184611616565b60006020828403121561166757600080fd5b5035919050565b6001600160a01b038116811461084957600080fd5b6000806040838503121561169657600080fd5b82356116a18161166e565b946020939093013593505050565b6000806000606084860312156116c457600080fd5b83356116cf8161166e565b925060208401356116df8161166e565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561172f5761172f6116f0565b604052919050565b600067ffffffffffffffff831115611751576117516116f0565b611764601f8401601f1916602001611706565b905082815283838301111561177857600080fd5b828260208301376000602084830101529392505050565b6000602082840312156117a157600080fd5b813567ffffffffffffffff8111156117b857600080fd5b8201601f810184136117c957600080fd5b610db284823560208401611737565b6000602082840312156117ea57600080fd5b81356115e38161166e565b6000806040838503121561180857600080fd5b82356118138161166e565b91506020830135801515811461182857600080fd5b809150509250929050565b6000806000806080858703121561184957600080fd5b84356118548161166e565b935060208501356118648161166e565b925060408501359150606085013567ffffffffffffffff81111561188757600080fd5b8501601f8101871361189857600080fd5b6118a787823560208401611737565b91505092959194509250565b600060208083850312156118c657600080fd5b823567ffffffffffffffff808211156118de57600080fd5b818501915085601f8301126118f257600080fd5b813581811115611904576119046116f0565b8060051b9150611915848301611706565b818152918301840191848101908884111561192f57600080fd5b938501935b8385101561194d57843582529385019390850190611934565b98975050505050505050565b6000806040838503121561196c57600080fd5b82356119778161166e565b915060208301356118288161166e565b600181811c9082168061199b57607f821691505b602082108114156119bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611a8857611a88611a5e565b5060010190565b8054600090600181811c9080831680611aa957607f831692505b6020808410821415611acb57634e487b7160e01b600052602260045260246000fd5b818015611adf5760018114611af057611b1d565b60ff19861689528489019650611b1d565b60008881526020902060005b86811015611b155781548b820152908501908301611afc565b505084890196505b50505050505092915050565b6000611b358286611a8f565b8451611b458183602089016115ea565b611b5181830186611a8f565b979650505050505050565b600082821015611b6e57611b6e611a5e565b500390565b60008219821115611b8657611b86611a5e565b500190565b600060208284031215611b9d57600080fd5b81516115e38161166e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611c1f57611c1f611bfa565b500490565b600082611c3357611c33611bfa565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c6b90830184611616565b9695505050505050565b600060208284031215611c8757600080fd5b81516115e3816115b056fea2646970667358221220ad29669cb7b6634696e075b3330478949366fe2cfad90e0b496eb5fd2e6b543764736f6c634300080b0033

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

00000000000000000000000079fcdef22feed20eddacbb2587640e45491b757f

-----Decoded View---------------
Arg [0] : mfersAddress (address): 0x79FCDEF22feeD20eDDacbB2587640e45491b757f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000079fcdef22feed20eddacbb2587640e45491b757f


Deployed Bytecode Sourcemap

36257:2283:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36865:31;;;36874:10;188:51:1;;36886:9:0;270:2:1;255:18;;248:34;36865:31:0;;161:18:1;36865:31:0;;;;;;;36257:2283;;;;;23742:305;;;;;;;;;;-1:-1:-1;23742:305:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;23742:305:0;;;;;;;;24687:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26246:221::-;;;;;;;;;;-1:-1:-1;26246:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1971:32:1;;;1953:51;;1941:2;1926:18;26246:221:0;1807:203:1;25769:411:0;;;;;;;;;;-1:-1:-1;25769:411:0;;;;;:::i;:::-;;:::i;:::-;;38225:101;;;;;;;;;;-1:-1:-1;38306:12:0;;38225:101;;;2617:25:1;;;2605:2;2590:18;38225:101:0;2471:177:1;26996:339:0;;;;;;;;;;-1:-1:-1;26996:339:0;;;;;:::i;:::-;;:::i;37355:165::-;;;;;;;;;;;;;:::i;37225:122::-;;;;;;;;;;-1:-1:-1;37225:122:0;;;;;:::i;:::-;;:::i;27406:185::-;;;;;;;;;;-1:-1:-1;27406:185:0;;;;;:::i;:::-;;:::i;36302:28::-;;;;;;;;;;-1:-1:-1;36302:28:0;;;;-1:-1:-1;;;;;36302:28:0;;;24381:239;;;;;;;;;;-1:-1:-1;24381:239:0;;;;;:::i;:::-;;:::i;24111:208::-;;;;;;;;;;-1:-1:-1;24111:208:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;36947:157::-;;;;;;;;;;-1:-1:-1;36947:157:0;;;;;:::i;:::-;;:::i;4079:87::-;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;24856:104;;;;;;;;;;;;;:::i;37777:169::-;;;;;;:::i;:::-;;:::i;26539:155::-;;;;;;;;;;-1:-1:-1;26539:155:0;;;;;:::i;:::-;;:::i;27662:328::-;;;;;;;;;;-1:-1:-1;27662:328:0;;;;;:::i;:::-;;:::i;37954:263::-;;;;;;:::i;:::-;;:::i;38334:203::-;;;;;;;;;;-1:-1:-1;38334:203:0;;;;;:::i;:::-;;:::i;26765:164::-;;;;;;;;;;-1:-1:-1;26765:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26886:25:0;;;26862:4;26886:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26765:164;4988:201;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;37112:105::-;;;;;;;;;;-1:-1:-1;37112:105:0;;;;;:::i;:::-;;:::i;23742:305::-;23844:4;-1:-1:-1;;;;;;23881:40:0;;-1:-1:-1;;;23881:40:0;;:105;;-1:-1:-1;;;;;;;23938:48:0;;-1:-1:-1;;;23938:48:0;23881:105;:158;;;-1:-1:-1;;;;;;;;;;16620:40:0;;;24003:36;23861:178;23742:305;-1:-1:-1;;23742:305:0:o;24687:100::-;24741:13;24774:5;24767:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24687:100;:::o;26246:221::-;26322:7;29589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29589:16:0;26342:73;;;;-1:-1:-1;;;26342:73:0;;7798:2:1;26342:73:0;;;7780:21:1;7837:2;7817:18;;;7810:30;7876:34;7856:18;;;7849:62;-1:-1:-1;;;7927:18:1;;;7920:42;7979:19;;26342:73:0;;;;;;;;;-1:-1:-1;26435:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26435:24:0;;26246:221::o;25769:411::-;25850:13;25866:23;25881:7;25866:14;:23::i;:::-;25850:39;;25914:5;-1:-1:-1;;;;;25908:11:0;:2;-1:-1:-1;;;;;25908:11:0;;;25900:57;;;;-1:-1:-1;;;25900:57:0;;8211:2:1;25900:57:0;;;8193:21:1;8250:2;8230:18;;;8223:30;8289:34;8269:18;;;8262:62;-1:-1:-1;;;8340:18:1;;;8333:31;8381:19;;25900:57:0;8009:397:1;25900:57:0;2883:10;-1:-1:-1;;;;;25992:21:0;;;;:62;;-1:-1:-1;26017:37:0;26034:5;2883:10;26765:164;:::i;26017:37::-;25970:168;;;;-1:-1:-1;;;25970:168:0;;8613:2:1;25970:168:0;;;8595:21:1;8652:2;8632:18;;;8625:30;8691:34;8671:18;;;8664:62;8762:26;8742:18;;;8735:54;8806:19;;25970:168:0;8411:420:1;25970:168:0;26151:21;26160:2;26164:7;26151:8;:21::i;:::-;25839:341;25769:411;;:::o;26996:339::-;27191:41;2883:10;27224:7;27191:18;:41::i;:::-;27183:103;;;;-1:-1:-1;;;27183:103:0;;;;;;;:::i;:::-;27299:28;27309:4;27315:2;27319:7;27299:9;:28::i;37355:165::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;37404:9:::1;37418:7;4152:6:::0;;-1:-1:-1;;;;;4152:6:0;;4079:87;37418:7:::1;-1:-1:-1::0;;;;;37418:12:0::1;37438:21;37418:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37403:61;;;37483:4;37475:37;;;::::0;-1:-1:-1;;;37475:37:0;;10027:2:1;37475:37:0::1;::::0;::::1;10009:21:1::0;10066:2;10046:18;;;10039:30;-1:-1:-1;;;10085:18:1;;;10078:50;10145:18;;37475:37:0::1;9825:344:1::0;37475:37:0::1;37392:128;37355:165::o:0;37225:122::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;37309:30;;::::1;::::0;:18:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;37225:122:::0;:::o;27406:185::-;27544:39;27561:4;27567:2;27571:7;27544:39;;;;;;;;;;;;:16;:39::i;24381:239::-;24453:7;24489:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24489:16:0;24524:19;24516:73;;;;-1:-1:-1;;;24516:73:0;;10376:2:1;24516:73:0;;;10358:21:1;10415:2;10395:18;;;10388:30;10454:34;10434:18;;;10427:62;-1:-1:-1;;;10505:18:1;;;10498:39;10554:19;;24516:73:0;10174:405:1;24111:208:0;24183:7;-1:-1:-1;;;;;24211:19:0;;24203:74;;;;-1:-1:-1;;;24203:74:0;;10786:2:1;24203:74:0;;;10768:21:1;10825:2;10805:18;;;10798:30;10864:34;10844:18;;;10837:62;-1:-1:-1;;;10915:18:1;;;10908:40;10965:19;;24203:74:0;10584:406:1;24203:74:0;-1:-1:-1;;;;;;24295:16:0;;;;;:9;:16;;;;;;;24111:208::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;36947:157::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;37020:13:::1;:26:::0;;-1:-1:-1;;;;;37020:26:0;;::::1;-1:-1:-1::0;;;;;;37020:26:0;;::::1;::::0;::::1;::::0;;;37057:14:::1;:39:::0;;;;::::1;;::::0;;36947:157::o;24856:104::-;24912:13;24945:7;24938:14;;;;;:::i;37777:169::-;37836:9;:13;37832:82;;37871:31;;;37880:10;188:51:1;;37892:9:0;270:2:1;255:18;;248:34;37871:31:0;;161:18:1;37871:31:0;;;;;;;37832:82;37926:12;37932:5;37926;:12::i;26539:155::-;26634:52;2883:10;26667:8;26677;26634:18;:52::i;27662:328::-;27837:41;2883:10;27870:7;27837:18;:41::i;:::-;27829:103;;;;-1:-1:-1;;;27829:103:0;;;;;;;:::i;:::-;27943:39;27957:4;27963:2;27967:7;27976:5;27943:13;:39::i;:::-;27662:328;;;;:::o;37954:263::-;38027:9;:13;38023:82;;38062:31;;;38071:10;188:51:1;;38083:9:0;270:2:1;255:18;;248:34;38062:31:0;;161:18:1;38062:31:0;;;;;;;38023:82;38122:6;38117:93;38138:6;:13;38134:1;:17;38117:93;;;38182:16;38188:6;38195:1;38188:9;;;;;;;;:::i;:::-;;;;;;;38182:5;:16::i;:::-;38153:3;;;:::i;:::-;;;38117:93;;38334:203;38404:13;38466:16;38484:23;38501:5;38484:16;:23::i;:::-;38509:18;38449:79;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38435:94;;38334:203;;;:::o;4988:201::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;13166:2:1;5069:73:0::1;::::0;::::1;13148:21:1::0;13205:2;13185:18;;;13178:30;13244:34;13224:18;;;13217:62;-1:-1:-1;;;13295:18:1;;;13288:36;13341:19;;5069:73:0::1;12964:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;37112:105::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;37187:22;;::::1;::::0;:16:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;33482:174::-:0;33557:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33557:29:0;-1:-1:-1;;;;;33557:29:0;;;;;;;;:24;;33611:23;33557:24;33611:14;:23::i;:::-;-1:-1:-1;;;;;33602:46:0;;;;;;;;;;;33482:174;;:::o;29794:348::-;29887:4;29589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29589:16:0;29904:73;;;;-1:-1:-1;;;29904:73:0;;13573:2:1;29904:73:0;;;13555:21:1;13612:2;13592:18;;;13585:30;13651:34;13631:18;;;13624:62;-1:-1:-1;;;13702:18:1;;;13695:42;13754:19;;29904:73:0;13371:408:1;29904:73:0;29988:13;30004:23;30019:7;30004:14;:23::i;:::-;29988:39;;30057:5;-1:-1:-1;;;;;30046:16:0;:7;-1:-1:-1;;;;;30046:16:0;;:51;;;;30090:7;-1:-1:-1;;;;;30066:31:0;:20;30078:7;30066:11;:20::i;:::-;-1:-1:-1;;;;;30066:31:0;;30046:51;:87;;;-1:-1:-1;;;;;;26886:25:0;;;26862:4;26886:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30101:32;30038:96;29794:348;-1:-1:-1;;;;29794:348:0:o;32786:578::-;32945:4;-1:-1:-1;;;;;32918:31:0;:23;32933:7;32918:14;:23::i;:::-;-1:-1:-1;;;;;32918:31:0;;32910:85;;;;-1:-1:-1;;;32910:85:0;;13986:2:1;32910:85:0;;;13968:21:1;14025:2;14005:18;;;13998:30;14064:34;14044:18;;;14037:62;-1:-1:-1;;;14115:18:1;;;14108:39;14164:19;;32910:85:0;13784:405:1;32910:85:0;-1:-1:-1;;;;;33014:16:0;;33006:65;;;;-1:-1:-1;;;33006:65:0;;14396:2:1;33006:65:0;;;14378:21:1;14435:2;14415:18;;;14408:30;14474:34;14454:18;;;14447:62;-1:-1:-1;;;14525:18:1;;;14518:34;14569:19;;33006:65:0;14194:400:1;33006:65:0;33188:29;33205:1;33209:7;33188:8;:29::i;:::-;-1:-1:-1;;;;;33230:15:0;;;;;;:9;:15;;;;;:20;;33249:1;;33230:15;:20;;33249:1;;33230:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33261:13:0;;;;;;:9;:13;;;;;:18;;33278:1;;33261:13;:18;;33278:1;;33261:18;:::i;:::-;;;;-1:-1:-1;;33290:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33290:21:0;-1:-1:-1;;;;;33290:21:0;;;;;;;;;33329:27;;33290:16;;33329:27;;;;;;;32786:578;;;:::o;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;37558:211::-;37623:14;;:29;;-1:-1:-1;;;37623:29:0;;;;;2617:25:1;;;37656:10:0;;-1:-1:-1;;;;;37623:14:0;;:22;;2590:18:1;;37623:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37623:43:0;;37615:75;;;;-1:-1:-1;;;37615:75:0;;15320:2:1;37615:75:0;;;15302:21:1;15359:2;15339:18;;;15332:30;-1:-1:-1;;;15378:18:1;;;15371:49;15437:18;;37615:75:0;15118:343:1;37615:75:0;37703:28;37713:10;37725:5;37703:9;:28::i;:::-;37760:1;37744:12;;:17;;;;;;;:::i;:::-;;;;-1:-1:-1;;;37558:211:0:o;33798:315::-;33953:8;-1:-1:-1;;;;;33944:17:0;:5;-1:-1:-1;;;;;33944:17:0;;;33936:55;;;;-1:-1:-1;;;33936:55:0;;15668:2:1;33936:55:0;;;15650:21:1;15707:2;15687:18;;;15680:30;15746:27;15726:18;;;15719:55;15791:18;;33936:55:0;15466:349:1;33936:55:0;-1:-1:-1;;;;;34002:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;34002:46:0;;;;;;;;;;34064:41;;819::1;;;34064::0;;792:18:1;34064:41:0;;;;;;;33798:315;;;:::o;28872:::-;29029:28;29039:4;29045:2;29049:7;29029:9;:28::i;:::-;29076:48;29099:4;29105:2;29109:7;29118:5;29076:22;:48::i;:::-;29068:111;;;;-1:-1:-1;;;29068:111:0;;;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30484:110;30560:26;30570:2;30574:7;30560:26;;;;;;;;;;;;:9;:26::i;34678:799::-;34833:4;-1:-1:-1;;;;;34854:13:0;;6690:20;6738:8;34850:620;;34890:72;;-1:-1:-1;;;34890:72:0;;-1:-1:-1;;;;;34890:36:0;;;;;:72;;2883:10;;34941:4;;34947:7;;34956:5;;34890:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34890:72:0;;;;;;;;-1:-1:-1;;34890:72:0;;;;;;;;;;;;:::i;:::-;;;34886:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35132:13:0;;35128:272;;35175:60;;-1:-1:-1;;;35175:60:0;;;;;;;:::i;35128:272::-;35350:6;35344:13;35335:6;35331:2;35327:15;35320:38;34886:529;-1:-1:-1;;;;;;35013:51:0;-1:-1:-1;;;35013:51:0;;-1:-1:-1;35006:58:0;;34850:620;-1:-1:-1;35454:4:0;34678:799;;;;;;:::o;30821:321::-;30951:18;30957:2;30961:7;30951:5;:18::i;:::-;31002:54;31033:1;31037:2;31041:7;31050:5;31002:22;:54::i;:::-;30980:154;;;;-1:-1:-1;;;30980:154:0;;;;;;;:::i;31478:382::-;-1:-1:-1;;;;;31558:16:0;;31550:61;;;;-1:-1:-1;;;31550:61:0;;17563:2:1;31550:61:0;;;17545:21:1;;;17582:18;;;17575:30;17641:34;17621:18;;;17614:62;17693:18;;31550:61:0;17361:356:1;31550:61:0;29565:4;29589:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29589:16:0;:30;31622:58;;;;-1:-1:-1;;;31622:58:0;;17924:2:1;31622:58:0;;;17906:21:1;17963:2;17943:18;;;17936:30;18002;17982:18;;;17975:58;18050:18;;31622:58:0;17722:352:1;31622:58:0;-1:-1:-1;;;;;31751:13:0;;;;;;:9;:13;;;;;:18;;31768:1;;31751:13;:18;;31768:1;;31751:18;:::i;:::-;;;;-1:-1:-1;;31780:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31780:21:0;-1:-1:-1;;;;;31780:21:0;;;;;;;;31819:33;;31780:16;;;31819:33;;31780:16;;31819:33;31478:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;:::-;663:5;429:245;-1:-1:-1;;;429:245:1:o;871:258::-;943:1;953:113;967:6;964:1;961:13;953:113;;;1043:11;;;1037:18;1024:11;;;1017:39;989:2;982:10;953:113;;;1084:6;1081:1;1078:13;1075:48;;;-1:-1:-1;;1119:1:1;1101:16;;1094:27;871:258::o;1134:::-;1176:3;1214:5;1208:12;1241:6;1236:3;1229:19;1257:63;1313:6;1306:4;1301:3;1297:14;1290:4;1283:5;1279:16;1257:63;:::i;:::-;1374:2;1353:15;-1:-1:-1;;1349:29:1;1340:39;;;;1381:4;1336:50;;1134:258;-1:-1:-1;;1134:258:1:o;1397:220::-;1546:2;1535:9;1528:21;1509:4;1566:45;1607:2;1596:9;1592:18;1584:6;1566:45;:::i;1622:180::-;1681:6;1734:2;1722:9;1713:7;1709:23;1705:32;1702:52;;;1750:1;1747;1740:12;1702:52;-1:-1:-1;1773:23:1;;1622:180;-1:-1:-1;1622:180:1:o;2015:131::-;-1:-1:-1;;;;;2090:31:1;;2080:42;;2070:70;;2136:1;2133;2126:12;2151:315;2219:6;2227;2280:2;2268:9;2259:7;2255:23;2251:32;2248:52;;;2296:1;2293;2286:12;2248:52;2335:9;2322:23;2354:31;2379:5;2354:31;:::i;:::-;2404:5;2456:2;2441:18;;;;2428:32;;-1:-1:-1;;;2151:315:1:o;2653:456::-;2730:6;2738;2746;2799:2;2787:9;2778:7;2774:23;2770:32;2767:52;;;2815:1;2812;2805:12;2767:52;2854:9;2841:23;2873:31;2898:5;2873:31;:::i;:::-;2923:5;-1:-1:-1;2980:2:1;2965:18;;2952:32;2993:33;2952:32;2993:33;:::i;:::-;2653:456;;3045:7;;-1:-1:-1;;;3099:2:1;3084:18;;;;3071:32;;2653:456::o;3114:127::-;3175:10;3170:3;3166:20;3163:1;3156:31;3206:4;3203:1;3196:15;3230:4;3227:1;3220:15;3246:275;3317:2;3311:9;3382:2;3363:13;;-1:-1:-1;;3359:27:1;3347:40;;3417:18;3402:34;;3438:22;;;3399:62;3396:88;;;3464:18;;:::i;:::-;3500:2;3493:22;3246:275;;-1:-1:-1;3246:275:1:o;3526:407::-;3591:5;3625:18;3617:6;3614:30;3611:56;;;3647:18;;:::i;:::-;3685:57;3730:2;3709:15;;-1:-1:-1;;3705:29:1;3736:4;3701:40;3685:57;:::i;:::-;3676:66;;3765:6;3758:5;3751:21;3805:3;3796:6;3791:3;3787:16;3784:25;3781:45;;;3822:1;3819;3812:12;3781:45;3871:6;3866:3;3859:4;3852:5;3848:16;3835:43;3925:1;3918:4;3909:6;3902:5;3898:18;3894:29;3887:40;3526:407;;;;;:::o;3938:451::-;4007:6;4060:2;4048:9;4039:7;4035:23;4031:32;4028:52;;;4076:1;4073;4066:12;4028:52;4116:9;4103:23;4149:18;4141:6;4138:30;4135:50;;;4181:1;4178;4171:12;4135:50;4204:22;;4257:4;4249:13;;4245:27;-1:-1:-1;4235:55:1;;4286:1;4283;4276:12;4235:55;4309:74;4375:7;4370:2;4357:16;4352:2;4348;4344:11;4309:74;:::i;4394:247::-;4453:6;4506:2;4494:9;4485:7;4481:23;4477:32;4474:52;;;4522:1;4519;4512:12;4474:52;4561:9;4548:23;4580:31;4605:5;4580:31;:::i;4646:416::-;4711:6;4719;4772:2;4760:9;4751:7;4747:23;4743:32;4740:52;;;4788:1;4785;4778:12;4740:52;4827:9;4814:23;4846:31;4871:5;4846:31;:::i;:::-;4896:5;-1:-1:-1;4953:2:1;4938:18;;4925:32;4995:15;;4988:23;4976:36;;4966:64;;5026:1;5023;5016:12;4966:64;5049:7;5039:17;;;4646:416;;;;;:::o;5067:795::-;5162:6;5170;5178;5186;5239:3;5227:9;5218:7;5214:23;5210:33;5207:53;;;5256:1;5253;5246:12;5207:53;5295:9;5282:23;5314:31;5339:5;5314:31;:::i;:::-;5364:5;-1:-1:-1;5421:2:1;5406:18;;5393:32;5434:33;5393:32;5434:33;:::i;:::-;5486:7;-1:-1:-1;5540:2:1;5525:18;;5512:32;;-1:-1:-1;5595:2:1;5580:18;;5567:32;5622:18;5611:30;;5608:50;;;5654:1;5651;5644:12;5608:50;5677:22;;5730:4;5722:13;;5718:27;-1:-1:-1;5708:55:1;;5759:1;5756;5749:12;5708:55;5782:74;5848:7;5843:2;5830:16;5825:2;5821;5817:11;5782:74;:::i;:::-;5772:84;;;5067:795;;;;;;;:::o;5867:946::-;5951:6;5982:2;6025;6013:9;6004:7;6000:23;5996:32;5993:52;;;6041:1;6038;6031:12;5993:52;6081:9;6068:23;6110:18;6151:2;6143:6;6140:14;6137:34;;;6167:1;6164;6157:12;6137:34;6205:6;6194:9;6190:22;6180:32;;6250:7;6243:4;6239:2;6235:13;6231:27;6221:55;;6272:1;6269;6262:12;6221:55;6308:2;6295:16;6330:2;6326;6323:10;6320:36;;;6336:18;;:::i;:::-;6382:2;6379:1;6375:10;6365:20;;6405:28;6429:2;6425;6421:11;6405:28;:::i;:::-;6467:15;;;6537:11;;;6533:20;;;6498:12;;;;6565:19;;;6562:39;;;6597:1;6594;6587:12;6562:39;6621:11;;;;6641:142;6657:6;6652:3;6649:15;6641:142;;;6723:17;;6711:30;;6674:12;;;;6761;;;;6641:142;;;6802:5;5867:946;-1:-1:-1;;;;;;;;5867:946:1:o;6818:388::-;6886:6;6894;6947:2;6935:9;6926:7;6922:23;6918:32;6915:52;;;6963:1;6960;6953:12;6915:52;7002:9;6989:23;7021:31;7046:5;7021:31;:::i;:::-;7071:5;-1:-1:-1;7128:2:1;7113:18;;7100:32;7141:33;7100:32;7141:33;:::i;7211:380::-;7290:1;7286:12;;;;7333;;;7354:61;;7408:4;7400:6;7396:17;7386:27;;7354:61;7461:2;7453:6;7450:14;7430:18;7427:38;7424:161;;;7507:10;7502:3;7498:20;7495:1;7488:31;7542:4;7539:1;7532:15;7570:4;7567:1;7560:15;7424:161;;7211:380;;;:::o;8836:413::-;9038:2;9020:21;;;9077:2;9057:18;;;9050:30;9116:34;9111:2;9096:18;;9089:62;-1:-1:-1;;;9182:2:1;9167:18;;9160:47;9239:3;9224:19;;8836:413::o;9254:356::-;9456:2;9438:21;;;9475:18;;;9468:30;9534:34;9529:2;9514:18;;9507:62;9601:2;9586:18;;9254:356::o;10995:127::-;11056:10;11051:3;11047:20;11044:1;11037:31;11087:4;11084:1;11077:15;11111:4;11108:1;11101:15;11127:127;11188:10;11183:3;11179:20;11176:1;11169:31;11219:4;11216:1;11209:15;11243:4;11240:1;11233:15;11259:135;11298:3;-1:-1:-1;;11319:17:1;;11316:43;;;11339:18;;:::i;:::-;-1:-1:-1;11386:1:1;11375:13;;11259:135::o;11525:973::-;11610:12;;11575:3;;11665:1;11685:18;;;;11738;;;;11765:61;;11819:4;11811:6;11807:17;11797:27;;11765:61;11845:2;11893;11885:6;11882:14;11862:18;11859:38;11856:161;;;11939:10;11934:3;11930:20;11927:1;11920:31;11974:4;11971:1;11964:15;12002:4;11999:1;11992:15;11856:161;12033:18;12060:104;;;;12178:1;12173:319;;;;12026:466;;12060:104;-1:-1:-1;;12093:24:1;;12081:37;;12138:16;;;;-1:-1:-1;12060:104:1;;12173:319;11472:1;11465:14;;;11509:4;11496:18;;12267:1;12281:165;12295:6;12292:1;12289:13;12281:165;;;12373:14;;12360:11;;;12353:35;12416:16;;;;12310:10;;12281:165;;;12285:3;;12475:6;12470:3;12466:16;12459:23;;12026:466;;;;;;;11525:973;;;;:::o;12503:456::-;12724:3;12752:38;12786:3;12778:6;12752:38;:::i;:::-;12819:6;12813:13;12835:52;12880:6;12876:2;12869:4;12861:6;12857:17;12835:52;:::i;:::-;12903:50;12945:6;12941:2;12937:15;12929:6;12903:50;:::i;:::-;12896:57;12503:456;-1:-1:-1;;;;;;;12503:456:1:o;14599:125::-;14639:4;14667:1;14664;14661:8;14658:34;;;14672:18;;:::i;:::-;-1:-1:-1;14709:9:1;;14599:125::o;14729:128::-;14769:3;14800:1;14796:6;14793:1;14790:13;14787:39;;;14806:18;;:::i;:::-;-1:-1:-1;14842:9:1;;14729:128::o;14862:251::-;14932:6;14985:2;14973:9;14964:7;14960:23;14956:32;14953:52;;;15001:1;14998;14991:12;14953:52;15033:9;15027:16;15052:31;15077:5;15052:31;:::i;15820:414::-;16022:2;16004:21;;;16061:2;16041:18;;;16034:30;16100:34;16095:2;16080:18;;16073:62;-1:-1:-1;;;16166:2:1;16151:18;;16144:48;16224:3;16209:19;;15820:414::o;16239:127::-;16300:10;16295:3;16291:20;16288:1;16281:31;16331:4;16328:1;16321:15;16355:4;16352:1;16345:15;16371:120;16411:1;16437;16427:35;;16442:18;;:::i;:::-;-1:-1:-1;16476:9:1;;16371:120::o;16496:112::-;16528:1;16554;16544:35;;16559:18;;:::i;:::-;-1:-1:-1;16593:9:1;;16496:112::o;16613:489::-;-1:-1:-1;;;;;16882:15:1;;;16864:34;;16934:15;;16929:2;16914:18;;16907:43;16981:2;16966:18;;16959:34;;;17029:3;17024:2;17009:18;;17002:31;;;16807:4;;17050:46;;17076:19;;17068:6;17050:46;:::i;:::-;17042:54;16613:489;-1:-1:-1;;;;;;16613:489:1:o;17107:249::-;17176:6;17229:2;17217:9;17208:7;17204:23;17200:32;17197:52;;;17245:1;17242;17235:12;17197:52;17277:9;17271:16;17296:30;17320:5;17296:30;:::i

Swarm Source

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