ETH Price: $2,644.24 (+0.67%)

MetaMiners (META)
 

Overview

TokenID

109

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
MetaMiners

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-23
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

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


/**
 * @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/ERC1155/IERC1155Receiver.sol

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

contract MetaMiners is ERC1155, Ownable {
    string public constant name = "MetaMiners";
    string public constant symbol = "META";

    uint256 public totalSupply = 0;
    uint256 public presalePrice = 0.25 ether;
    uint256 public publicPrice = 0.3 ether;
    
    uint256 public maxSupply = 10001;

    bool public isPresale = false;
    bool public isPublic = false;

    address private _wallet = 0xb555c6aD57C28788eD56665c0297F7Fff8C3E605;

    constructor(string memory uri) ERC1155(uri) {}

    function setURI(string memory uri) public onlyOwner {
        _setURI(uri);
    }

    function setPresale(bool status) public onlyOwner {
        isPresale = status;
    }

    function setPublic(bool status) public onlyOwner {
        isPublic = status;
    }

    function setPresalePrice(uint256 price) public onlyOwner {
        presalePrice = price;
    }

    function setPublicPrice(uint256 price) public onlyOwner {
        publicPrice = price;
    }

    function setMaxSupply(uint256 _supply) public onlyOwner {
        maxSupply = _supply;
    }

    function mint(address to, uint256 quantity) internal {
        if (quantity > 1) {
            uint256[] memory ids = new uint256[](uint256(quantity));
            uint256[] memory amounts = new uint256[](uint256(quantity));

            for (uint256 i = 0; i < quantity; i++) {
                ids[i] = totalSupply + i;
                amounts[i] = 1;
            }

            _mintBatch(to, ids, amounts, "");
        } else {
            _mint(to, totalSupply, 1, "");
        }

        totalSupply += quantity;
    }
    
    function presaleMint(uint256 quantity) external payable {
        require(msg.sender == tx.origin, "MM/NO_CONTRACTS");
        require(isPresale, "MM/SALE_INACTIVE");
        require(quantity > 0 && quantity < 6, "MM/INVALID_QUANTITY");
        require(totalSupply + quantity < maxSupply, "MM/MAX_SUPPLY_EXCEEDED");
        require(msg.value == presalePrice * quantity, "MM/INSUFFICIENT_BALANCE");

        mint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity) external payable {
        require(msg.sender == tx.origin, "MM/NO_CONTRACTS");
        require(isPublic, "MM/SALE_INACTIVE");
        require(quantity > 0 && quantity < 6, "MM/INVALID_QUANTITY");
        require(totalSupply + quantity < maxSupply, "MM/MAX_SUPPLY_EXCEEDED");
        require(msg.value == publicPrice * quantity, "MM/INSUFFICIENT_BALANCE");

        mint(msg.sender, quantity);
    }

    function teamMint(uint256 quantity) external onlyOwner {
        require(totalSupply + quantity <= maxSupply, "MM/MAX_SUPPLY_EXCEEDED");
        mint(msg.sender, quantity);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(_wallet).transfer(balance);
    }

    function withdrawToOwner() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006004556703782dace9d90000600555670429d069189e0000600655612711600755600880546001600160b01b03191675b555c6ad57c28788ed56665c0297f7fff8c3e60500001790553480156200005c57600080fd5b506040516200265b3803806200265b8339810160408190526200007f91620001c5565b806200008b816200009e565b506200009733620000b7565b50620002de565b8051620000b390600290602084019062000109565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011790620002a1565b90600052602060002090601f0160209004810192826200013b576000855562000186565b82601f106200015657805160ff191683800117855562000186565b8280016001018555821562000186579182015b828111156200018657825182559160200191906001019062000169565b506200019492915062000198565b5090565b5b8082111562000194576000815560010162000199565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620001d957600080fd5b82516001600160401b0380821115620001f157600080fd5b818501915085601f8301126200020657600080fd5b8151818111156200021b576200021b620001af565b604051601f8201601f19908116603f01168101908382118183101715620002465762000246620001af565b8160405282815288868487010111156200025f57600080fd5b600093505b8284101562000283578484018601518185018701529285019262000264565b82841115620002955760008684830101525b98975050505050505050565b600181811c90821680620002b657607f821691505b60208210811415620002d857634e487b7160e01b600052602260045260246000fd5b50919050565b61236d80620002ee6000396000f3fe6080604052600436106101cb5760003560e01c80636f8b44b0116100f7578063c54e73e311610095578063dc9a153511610064578063dc9a153514610514578063e985e9c514610533578063f242432a1461057c578063f2fde38b1461059c57600080fd5b8063c54e73e3146104ab578063c6275255146104cb578063c9b298f1146104eb578063d5abeb01146104fe57600080fd5b806395364a84116100d157806395364a841461042b57806395d89b4114610445578063a22cb46514610475578063a945bf801461049557600080fd5b80636f8b44b0146103ce578063715018a6146103ee5780638da5cb5b1461040357600080fd5b80632db115441161016f5780633cb40e161161013e5780633cb40e16146103575780633ccfd60b1461036c5780634e1273f4146103815780635cbcec4e146103ae57600080fd5b80632db11544146102e45780632eb2c2d6146102f75780632fbba115146103175780633549345e1461033757600080fd5b806302fe5305116101ab57806302fe53051461024957806306fdde031461026b5780630e89341c146102ae57806318160ddd146102ce57600080fd5b80620e7fa8146101d0578062fdd58e146101f957806301ffc9a714610219575b600080fd5b3480156101dc57600080fd5b506101e660055481565b6040519081526020015b60405180910390f35b34801561020557600080fd5b506101e66102143660046119d6565b6105bc565b34801561022557600080fd5b50610239610234366004611a16565b610653565b60405190151581526020016101f0565b34801561025557600080fd5b50610269610264366004611adb565b6106a5565b005b34801561027757600080fd5b506102a16040518060400160405280600a8152602001694d6574614d696e65727360b01b81525081565b6040516101f09190611b79565b3480156102ba57600080fd5b506102a16102c9366004611b8c565b6106db565b3480156102da57600080fd5b506101e660045481565b6102696102f2366004611b8c565b61076f565b34801561030357600080fd5b50610269610312366004611c5a565b6108e0565b34801561032357600080fd5b50610269610332366004611b8c565b610977565b34801561034357600080fd5b50610269610352366004611b8c565b6109d0565b34801561036357600080fd5b506102696109ff565b34801561037857600080fd5b50610269610a78565b34801561038d57600080fd5b506103a161039c366004611d04565b610ae2565b6040516101f09190611e0a565b3480156103ba57600080fd5b506102696103c9366004611e2d565b610c0c565b3480156103da57600080fd5b506102696103e9366004611b8c565b610c50565b3480156103fa57600080fd5b50610269610c7f565b34801561040f57600080fd5b506003546040516001600160a01b0390911681526020016101f0565b34801561043757600080fd5b506008546102399060ff1681565b34801561045157600080fd5b506102a1604051806040016040528060048152602001634d45544160e01b81525081565b34801561048157600080fd5b50610269610490366004611e48565b610cb5565b3480156104a157600080fd5b506101e660065481565b3480156104b757600080fd5b506102696104c6366004611e2d565b610d8c565b3480156104d757600080fd5b506102696104e6366004611b8c565b610dc9565b6102696104f9366004611b8c565b610df8565b34801561050a57600080fd5b506101e660075481565b34801561052057600080fd5b5060085461023990610100900460ff1681565b34801561053f57600080fd5b5061023961054e366004611e7b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561058857600080fd5b50610269610597366004611ea5565b610f0c565b3480156105a857600080fd5b506102696105b7366004611f0a565b610f93565b60006001600160a01b03831661062d5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061068457506001600160e01b031982166303a24d0760e21b145b8061069f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146106cf5760405162461bcd60e51b815260040161062490611f25565b6106d88161102b565b50565b6060600280546106ea90611f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461071690611f5a565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b50505050509050919050565b3332146107b05760405162461bcd60e51b815260206004820152600f60248201526e4d4d2f4e4f5f434f4e54524143545360881b6044820152606401610624565b600854610100900460ff166107fa5760405162461bcd60e51b815260206004820152601060248201526f4d4d2f53414c455f494e41435449564560801b6044820152606401610624565b60008111801561080a5750600681105b61084c5760405162461bcd60e51b81526020600482015260136024820152724d4d2f494e56414c49445f5155414e5449545960681b6044820152606401610624565b6007548160045461085d9190611fab565b1061087a5760405162461bcd60e51b815260040161062490611fc3565b806006546108889190611ff3565b34146108d65760405162461bcd60e51b815260206004820152601760248201527f4d4d2f494e53554646494349454e545f42414c414e43450000000000000000006044820152606401610624565b6106d8338261103e565b6001600160a01b0385163314806108fc57506108fc853361054e565b6109635760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610624565b6109708585858585611199565b5050505050565b6003546001600160a01b031633146109a15760405162461bcd60e51b815260040161062490611f25565b600754816004546109b29190611fab565b11156108d65760405162461bcd60e51b815260040161062490611fc3565b6003546001600160a01b031633146109fa5760405162461bcd60e51b815260040161062490611f25565b600555565b6003546001600160a01b03163314610a295760405162461bcd60e51b815260040161062490611f25565b47610a3c6003546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610a74573d6000803e3d6000fd5b5050565b6003546001600160a01b03163314610aa25760405162461bcd60e51b815260040161062490611f25565b60085460405147916201000090046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610a74573d6000803e3d6000fd5b60608151835114610b475760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610624565b6000835167ffffffffffffffff811115610b6357610b63611a3a565b604051908082528060200260200182016040528015610b8c578160200160208202803683370190505b50905060005b8451811015610c0457610bd7858281518110610bb057610bb0612012565b6020026020010151858381518110610bca57610bca612012565b60200260200101516105bc565b828281518110610be957610be9612012565b6020908102919091010152610bfd81612028565b9050610b92565b509392505050565b6003546001600160a01b03163314610c365760405162461bcd60e51b815260040161062490611f25565b600880549115156101000261ff0019909216919091179055565b6003546001600160a01b03163314610c7a5760405162461bcd60e51b815260040161062490611f25565b600755565b6003546001600160a01b03163314610ca95760405162461bcd60e51b815260040161062490611f25565b610cb36000611335565b565b336001600160a01b0383161415610d205760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610624565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6003546001600160a01b03163314610db65760405162461bcd60e51b815260040161062490611f25565b6008805460ff1916911515919091179055565b6003546001600160a01b03163314610df35760405162461bcd60e51b815260040161062490611f25565b600655565b333214610e395760405162461bcd60e51b815260206004820152600f60248201526e4d4d2f4e4f5f434f4e54524143545360881b6044820152606401610624565b60085460ff16610e7e5760405162461bcd60e51b815260206004820152601060248201526f4d4d2f53414c455f494e41435449564560801b6044820152606401610624565b600081118015610e8e5750600681105b610ed05760405162461bcd60e51b81526020600482015260136024820152724d4d2f494e56414c49445f5155414e5449545960681b6044820152606401610624565b60075481600454610ee19190611fab565b10610efe5760405162461bcd60e51b815260040161062490611fc3565b806005546108889190611ff3565b6001600160a01b038516331480610f285750610f28853361054e565b610f865760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610624565b6109708585858585611387565b6003546001600160a01b03163314610fbd5760405162461bcd60e51b815260040161062490611f25565b6001600160a01b0381166110225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610624565b6106d881611335565b8051610a74906002906020840190611921565b60018111156111605760008167ffffffffffffffff81111561106257611062611a3a565b60405190808252806020026020018201604052801561108b578160200160208202803683370190505b50905060008267ffffffffffffffff8111156110a9576110a9611a3a565b6040519080825280602002602001820160405280156110d2578160200160208202803683370190505b50905060005b8381101561113d57806004546110ee9190611fab565b83828151811061110057611100612012565b602002602001018181525050600182828151811061112057611120612012565b60209081029190910101528061113581612028565b9150506110d8565b50611159848383604051806020016040528060008152506114ad565b505061117e565b61117e826004546001604051806020016040528060008152506115f8565b80600460008282546111909190611fab565b90915550505050565b81518351146111ba5760405162461bcd60e51b815260040161062490612043565b6001600160a01b0384166111e05760405162461bcd60e51b81526004016106249061208b565b3360005b84518110156112c757600085828151811061120157611201612012565b60200260200101519050600085838151811061121f5761121f612012565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561126f5760405162461bcd60e51b8152600401610624906120d0565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112ac908490611fab565b92505081905550505050806112c090612028565b90506111e4565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161131792919061211a565b60405180910390a461132d8187878787876116bf565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166113ad5760405162461bcd60e51b81526004016106249061208b565b336113c68187876113bd8861181b565b6109708861181b565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156114075760405162461bcd60e51b8152600401610624906120d0565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611444908490611fab565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46114a4828888888888611866565b50505050505050565b6001600160a01b0384166114d35760405162461bcd60e51b815260040161062490612148565b81518351146114f45760405162461bcd60e51b815260040161062490612043565b3360005b84518110156115905783818151811061151357611513612012565b602002602001015160008087848151811061153057611530612012565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546115789190611fab565b9091555081905061158881612028565b9150506114f8565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115e192919061211a565b60405180910390a4610970816000878787876116bf565b6001600160a01b03841661161e5760405162461bcd60e51b815260040161062490612148565b3361162f816000876113bd8861181b565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061165f908490611fab565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461097081600087878787611866565b6001600160a01b0384163b1561132d5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906117039089908990889088908890600401612189565b6020604051808303816000875af192505050801561173e575060408051601f3d908101601f1916820190925261173b918101906121e7565b60015b6117eb5761174a612204565b806308c379a01415611784575061175f612220565b8061176a5750611786565b8060405162461bcd60e51b81526004016106249190611b79565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610624565b6001600160e01b0319811663bc197c8160e01b146114a45760405162461bcd60e51b8152600401610624906122aa565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061185557611855612012565b602090810291909101015292915050565b6001600160a01b0384163b1561132d5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906118aa90899089908890889088906004016122f2565b6020604051808303816000875af19250505080156118e5575060408051601f3d908101601f191682019092526118e2918101906121e7565b60015b6118f15761174a612204565b6001600160e01b0319811663f23a6e6160e01b146114a45760405162461bcd60e51b8152600401610624906122aa565b82805461192d90611f5a565b90600052602060002090601f01602090048101928261194f5760008555611995565b82601f1061196857805160ff1916838001178555611995565b82800160010185558215611995579182015b8281111561199557825182559160200191906001019061197a565b506119a19291506119a5565b5090565b5b808211156119a157600081556001016119a6565b80356001600160a01b03811681146119d157600080fd5b919050565b600080604083850312156119e957600080fd5b6119f2836119ba565b946020939093013593505050565b6001600160e01b0319811681146106d857600080fd5b600060208284031215611a2857600080fd5b8135611a3381611a00565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715611a7657611a76611a3a565b6040525050565b600067ffffffffffffffff831115611a9757611a97611a3a565b604051611aae601f8501601f191660200182611a50565b809150838152848484011115611ac357600080fd5b83836020830137600060208583010152509392505050565b600060208284031215611aed57600080fd5b813567ffffffffffffffff811115611b0457600080fd5b8201601f81018413611b1557600080fd5b611b2484823560208401611a7d565b949350505050565b6000815180845260005b81811015611b5257602081850181015186830182015201611b36565b81811115611b64576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611a336020830184611b2c565b600060208284031215611b9e57600080fd5b5035919050565b600067ffffffffffffffff821115611bbf57611bbf611a3a565b5060051b60200190565b600082601f830112611bda57600080fd5b81356020611be782611ba5565b604051611bf48282611a50565b83815260059390931b8501820192828101915086841115611c1457600080fd5b8286015b84811015611c2f5780358352918301918301611c18565b509695505050505050565b600082601f830112611c4b57600080fd5b611a3383833560208501611a7d565b600080600080600060a08688031215611c7257600080fd5b611c7b866119ba565b9450611c89602087016119ba565b9350604086013567ffffffffffffffff80821115611ca657600080fd5b611cb289838a01611bc9565b94506060880135915080821115611cc857600080fd5b611cd489838a01611bc9565b93506080880135915080821115611cea57600080fd5b50611cf788828901611c3a565b9150509295509295909350565b60008060408385031215611d1757600080fd5b823567ffffffffffffffff80821115611d2f57600080fd5b818501915085601f830112611d4357600080fd5b81356020611d5082611ba5565b604051611d5d8282611a50565b83815260059390931b8501820192828101915089841115611d7d57600080fd5b948201945b83861015611da257611d93866119ba565b82529482019490820190611d82565b96505086013592505080821115611db857600080fd5b50611dc585828601611bc9565b9150509250929050565b600081518084526020808501945080840160005b83811015611dff57815187529582019590820190600101611de3565b509495945050505050565b602081526000611a336020830184611dcf565b803580151581146119d157600080fd5b600060208284031215611e3f57600080fd5b611a3382611e1d565b60008060408385031215611e5b57600080fd5b611e64836119ba565b9150611e7260208401611e1d565b90509250929050565b60008060408385031215611e8e57600080fd5b611e97836119ba565b9150611e72602084016119ba565b600080600080600060a08688031215611ebd57600080fd5b611ec6866119ba565b9450611ed4602087016119ba565b93506040860135925060608601359150608086013567ffffffffffffffff811115611efe57600080fd5b611cf788828901611c3a565b600060208284031215611f1c57600080fd5b611a33826119ba565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f6e57607f821691505b60208210811415611f8f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fbe57611fbe611f95565b500190565b60208082526016908201527513534bd3505617d4d55414131657d15610d15151115160521b604082015260600190565b600081600019048311821515161561200d5761200d611f95565b500290565b634e487b7160e01b600052603260045260246000fd5b600060001982141561203c5761203c611f95565b5060010190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061212d6040830185611dcf565b828103602084015261213f8185611dcf565b95945050505050565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906121b590830186611dcf565b82810360608401526121c78186611dcf565b905082810360808401526121db8185611b2c565b98975050505050505050565b6000602082840312156121f957600080fd5b8151611a3381611a00565b600060033d111561221d5760046000803e5060005160e01c5b90565b600060443d101561222e5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561225e57505050505090565b82850191508151818111156122765750505050505090565b843d87010160208285010111156122905750505050505090565b61229f60208286010187611a50565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061232c90830184611b2c565b97965050505050505056fea2646970667358221220d9adf90dcafe1c569d3da638b15462be89a2e69904acba01d2b432b8cc0fe29364736f6c634300080b003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cb5760003560e01c80636f8b44b0116100f7578063c54e73e311610095578063dc9a153511610064578063dc9a153514610514578063e985e9c514610533578063f242432a1461057c578063f2fde38b1461059c57600080fd5b8063c54e73e3146104ab578063c6275255146104cb578063c9b298f1146104eb578063d5abeb01146104fe57600080fd5b806395364a84116100d157806395364a841461042b57806395d89b4114610445578063a22cb46514610475578063a945bf801461049557600080fd5b80636f8b44b0146103ce578063715018a6146103ee5780638da5cb5b1461040357600080fd5b80632db115441161016f5780633cb40e161161013e5780633cb40e16146103575780633ccfd60b1461036c5780634e1273f4146103815780635cbcec4e146103ae57600080fd5b80632db11544146102e45780632eb2c2d6146102f75780632fbba115146103175780633549345e1461033757600080fd5b806302fe5305116101ab57806302fe53051461024957806306fdde031461026b5780630e89341c146102ae57806318160ddd146102ce57600080fd5b80620e7fa8146101d0578062fdd58e146101f957806301ffc9a714610219575b600080fd5b3480156101dc57600080fd5b506101e660055481565b6040519081526020015b60405180910390f35b34801561020557600080fd5b506101e66102143660046119d6565b6105bc565b34801561022557600080fd5b50610239610234366004611a16565b610653565b60405190151581526020016101f0565b34801561025557600080fd5b50610269610264366004611adb565b6106a5565b005b34801561027757600080fd5b506102a16040518060400160405280600a8152602001694d6574614d696e65727360b01b81525081565b6040516101f09190611b79565b3480156102ba57600080fd5b506102a16102c9366004611b8c565b6106db565b3480156102da57600080fd5b506101e660045481565b6102696102f2366004611b8c565b61076f565b34801561030357600080fd5b50610269610312366004611c5a565b6108e0565b34801561032357600080fd5b50610269610332366004611b8c565b610977565b34801561034357600080fd5b50610269610352366004611b8c565b6109d0565b34801561036357600080fd5b506102696109ff565b34801561037857600080fd5b50610269610a78565b34801561038d57600080fd5b506103a161039c366004611d04565b610ae2565b6040516101f09190611e0a565b3480156103ba57600080fd5b506102696103c9366004611e2d565b610c0c565b3480156103da57600080fd5b506102696103e9366004611b8c565b610c50565b3480156103fa57600080fd5b50610269610c7f565b34801561040f57600080fd5b506003546040516001600160a01b0390911681526020016101f0565b34801561043757600080fd5b506008546102399060ff1681565b34801561045157600080fd5b506102a1604051806040016040528060048152602001634d45544160e01b81525081565b34801561048157600080fd5b50610269610490366004611e48565b610cb5565b3480156104a157600080fd5b506101e660065481565b3480156104b757600080fd5b506102696104c6366004611e2d565b610d8c565b3480156104d757600080fd5b506102696104e6366004611b8c565b610dc9565b6102696104f9366004611b8c565b610df8565b34801561050a57600080fd5b506101e660075481565b34801561052057600080fd5b5060085461023990610100900460ff1681565b34801561053f57600080fd5b5061023961054e366004611e7b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561058857600080fd5b50610269610597366004611ea5565b610f0c565b3480156105a857600080fd5b506102696105b7366004611f0a565b610f93565b60006001600160a01b03831661062d5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061068457506001600160e01b031982166303a24d0760e21b145b8061069f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6003546001600160a01b031633146106cf5760405162461bcd60e51b815260040161062490611f25565b6106d88161102b565b50565b6060600280546106ea90611f5a565b80601f016020809104026020016040519081016040528092919081815260200182805461071690611f5a565b80156107635780601f1061073857610100808354040283529160200191610763565b820191906000526020600020905b81548152906001019060200180831161074657829003601f168201915b50505050509050919050565b3332146107b05760405162461bcd60e51b815260206004820152600f60248201526e4d4d2f4e4f5f434f4e54524143545360881b6044820152606401610624565b600854610100900460ff166107fa5760405162461bcd60e51b815260206004820152601060248201526f4d4d2f53414c455f494e41435449564560801b6044820152606401610624565b60008111801561080a5750600681105b61084c5760405162461bcd60e51b81526020600482015260136024820152724d4d2f494e56414c49445f5155414e5449545960681b6044820152606401610624565b6007548160045461085d9190611fab565b1061087a5760405162461bcd60e51b815260040161062490611fc3565b806006546108889190611ff3565b34146108d65760405162461bcd60e51b815260206004820152601760248201527f4d4d2f494e53554646494349454e545f42414c414e43450000000000000000006044820152606401610624565b6106d8338261103e565b6001600160a01b0385163314806108fc57506108fc853361054e565b6109635760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610624565b6109708585858585611199565b5050505050565b6003546001600160a01b031633146109a15760405162461bcd60e51b815260040161062490611f25565b600754816004546109b29190611fab565b11156108d65760405162461bcd60e51b815260040161062490611fc3565b6003546001600160a01b031633146109fa5760405162461bcd60e51b815260040161062490611f25565b600555565b6003546001600160a01b03163314610a295760405162461bcd60e51b815260040161062490611f25565b47610a3c6003546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610a74573d6000803e3d6000fd5b5050565b6003546001600160a01b03163314610aa25760405162461bcd60e51b815260040161062490611f25565b60085460405147916201000090046001600160a01b0316906108fc8315029083906000818181858888f19350505050158015610a74573d6000803e3d6000fd5b60608151835114610b475760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610624565b6000835167ffffffffffffffff811115610b6357610b63611a3a565b604051908082528060200260200182016040528015610b8c578160200160208202803683370190505b50905060005b8451811015610c0457610bd7858281518110610bb057610bb0612012565b6020026020010151858381518110610bca57610bca612012565b60200260200101516105bc565b828281518110610be957610be9612012565b6020908102919091010152610bfd81612028565b9050610b92565b509392505050565b6003546001600160a01b03163314610c365760405162461bcd60e51b815260040161062490611f25565b600880549115156101000261ff0019909216919091179055565b6003546001600160a01b03163314610c7a5760405162461bcd60e51b815260040161062490611f25565b600755565b6003546001600160a01b03163314610ca95760405162461bcd60e51b815260040161062490611f25565b610cb36000611335565b565b336001600160a01b0383161415610d205760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610624565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6003546001600160a01b03163314610db65760405162461bcd60e51b815260040161062490611f25565b6008805460ff1916911515919091179055565b6003546001600160a01b03163314610df35760405162461bcd60e51b815260040161062490611f25565b600655565b333214610e395760405162461bcd60e51b815260206004820152600f60248201526e4d4d2f4e4f5f434f4e54524143545360881b6044820152606401610624565b60085460ff16610e7e5760405162461bcd60e51b815260206004820152601060248201526f4d4d2f53414c455f494e41435449564560801b6044820152606401610624565b600081118015610e8e5750600681105b610ed05760405162461bcd60e51b81526020600482015260136024820152724d4d2f494e56414c49445f5155414e5449545960681b6044820152606401610624565b60075481600454610ee19190611fab565b10610efe5760405162461bcd60e51b815260040161062490611fc3565b806005546108889190611ff3565b6001600160a01b038516331480610f285750610f28853361054e565b610f865760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610624565b6109708585858585611387565b6003546001600160a01b03163314610fbd5760405162461bcd60e51b815260040161062490611f25565b6001600160a01b0381166110225760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610624565b6106d881611335565b8051610a74906002906020840190611921565b60018111156111605760008167ffffffffffffffff81111561106257611062611a3a565b60405190808252806020026020018201604052801561108b578160200160208202803683370190505b50905060008267ffffffffffffffff8111156110a9576110a9611a3a565b6040519080825280602002602001820160405280156110d2578160200160208202803683370190505b50905060005b8381101561113d57806004546110ee9190611fab565b83828151811061110057611100612012565b602002602001018181525050600182828151811061112057611120612012565b60209081029190910101528061113581612028565b9150506110d8565b50611159848383604051806020016040528060008152506114ad565b505061117e565b61117e826004546001604051806020016040528060008152506115f8565b80600460008282546111909190611fab565b90915550505050565b81518351146111ba5760405162461bcd60e51b815260040161062490612043565b6001600160a01b0384166111e05760405162461bcd60e51b81526004016106249061208b565b3360005b84518110156112c757600085828151811061120157611201612012565b60200260200101519050600085838151811061121f5761121f612012565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561126f5760405162461bcd60e51b8152600401610624906120d0565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112ac908490611fab565b92505081905550505050806112c090612028565b90506111e4565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161131792919061211a565b60405180910390a461132d8187878787876116bf565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0384166113ad5760405162461bcd60e51b81526004016106249061208b565b336113c68187876113bd8861181b565b6109708861181b565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156114075760405162461bcd60e51b8152600401610624906120d0565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611444908490611fab565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46114a4828888888888611866565b50505050505050565b6001600160a01b0384166114d35760405162461bcd60e51b815260040161062490612148565b81518351146114f45760405162461bcd60e51b815260040161062490612043565b3360005b84518110156115905783818151811061151357611513612012565b602002602001015160008087848151811061153057611530612012565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546115789190611fab565b9091555081905061158881612028565b9150506114f8565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516115e192919061211a565b60405180910390a4610970816000878787876116bf565b6001600160a01b03841661161e5760405162461bcd60e51b815260040161062490612148565b3361162f816000876113bd8861181b565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061165f908490611fab565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461097081600087878787611866565b6001600160a01b0384163b1561132d5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906117039089908990889088908890600401612189565b6020604051808303816000875af192505050801561173e575060408051601f3d908101601f1916820190925261173b918101906121e7565b60015b6117eb5761174a612204565b806308c379a01415611784575061175f612220565b8061176a5750611786565b8060405162461bcd60e51b81526004016106249190611b79565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610624565b6001600160e01b0319811663bc197c8160e01b146114a45760405162461bcd60e51b8152600401610624906122aa565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061185557611855612012565b602090810291909101015292915050565b6001600160a01b0384163b1561132d5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906118aa90899089908890889088906004016122f2565b6020604051808303816000875af19250505080156118e5575060408051601f3d908101601f191682019092526118e2918101906121e7565b60015b6118f15761174a612204565b6001600160e01b0319811663f23a6e6160e01b146114a45760405162461bcd60e51b8152600401610624906122aa565b82805461192d90611f5a565b90600052602060002090601f01602090048101928261194f5760008555611995565b82601f1061196857805160ff1916838001178555611995565b82800160010185558215611995579182015b8281111561199557825182559160200191906001019061197a565b506119a19291506119a5565b5090565b5b808211156119a157600081556001016119a6565b80356001600160a01b03811681146119d157600080fd5b919050565b600080604083850312156119e957600080fd5b6119f2836119ba565b946020939093013593505050565b6001600160e01b0319811681146106d857600080fd5b600060208284031215611a2857600080fd5b8135611a3381611a00565b9392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715611a7657611a76611a3a565b6040525050565b600067ffffffffffffffff831115611a9757611a97611a3a565b604051611aae601f8501601f191660200182611a50565b809150838152848484011115611ac357600080fd5b83836020830137600060208583010152509392505050565b600060208284031215611aed57600080fd5b813567ffffffffffffffff811115611b0457600080fd5b8201601f81018413611b1557600080fd5b611b2484823560208401611a7d565b949350505050565b6000815180845260005b81811015611b5257602081850181015186830182015201611b36565b81811115611b64576000602083870101525b50601f01601f19169290920160200192915050565b602081526000611a336020830184611b2c565b600060208284031215611b9e57600080fd5b5035919050565b600067ffffffffffffffff821115611bbf57611bbf611a3a565b5060051b60200190565b600082601f830112611bda57600080fd5b81356020611be782611ba5565b604051611bf48282611a50565b83815260059390931b8501820192828101915086841115611c1457600080fd5b8286015b84811015611c2f5780358352918301918301611c18565b509695505050505050565b600082601f830112611c4b57600080fd5b611a3383833560208501611a7d565b600080600080600060a08688031215611c7257600080fd5b611c7b866119ba565b9450611c89602087016119ba565b9350604086013567ffffffffffffffff80821115611ca657600080fd5b611cb289838a01611bc9565b94506060880135915080821115611cc857600080fd5b611cd489838a01611bc9565b93506080880135915080821115611cea57600080fd5b50611cf788828901611c3a565b9150509295509295909350565b60008060408385031215611d1757600080fd5b823567ffffffffffffffff80821115611d2f57600080fd5b818501915085601f830112611d4357600080fd5b81356020611d5082611ba5565b604051611d5d8282611a50565b83815260059390931b8501820192828101915089841115611d7d57600080fd5b948201945b83861015611da257611d93866119ba565b82529482019490820190611d82565b96505086013592505080821115611db857600080fd5b50611dc585828601611bc9565b9150509250929050565b600081518084526020808501945080840160005b83811015611dff57815187529582019590820190600101611de3565b509495945050505050565b602081526000611a336020830184611dcf565b803580151581146119d157600080fd5b600060208284031215611e3f57600080fd5b611a3382611e1d565b60008060408385031215611e5b57600080fd5b611e64836119ba565b9150611e7260208401611e1d565b90509250929050565b60008060408385031215611e8e57600080fd5b611e97836119ba565b9150611e72602084016119ba565b600080600080600060a08688031215611ebd57600080fd5b611ec6866119ba565b9450611ed4602087016119ba565b93506040860135925060608601359150608086013567ffffffffffffffff811115611efe57600080fd5b611cf788828901611c3a565b600060208284031215611f1c57600080fd5b611a33826119ba565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f6e57607f821691505b60208210811415611f8f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fbe57611fbe611f95565b500190565b60208082526016908201527513534bd3505617d4d55414131657d15610d15151115160521b604082015260600190565b600081600019048311821515161561200d5761200d611f95565b500290565b634e487b7160e01b600052603260045260246000fd5b600060001982141561203c5761203c611f95565b5060010190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60408152600061212d6040830185611dcf565b828103602084015261213f8185611dcf565b95945050505050565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6001600160a01b0386811682528516602082015260a0604082018190526000906121b590830186611dcf565b82810360608401526121c78186611dcf565b905082810360808401526121db8185611b2c565b98975050505050505050565b6000602082840312156121f957600080fd5b8151611a3381611a00565b600060033d111561221d5760046000803e5060005160e01c5b90565b600060443d101561222e5790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561225e57505050505090565b82850191508151818111156122765750505050505090565b843d87010160208285010111156122905750505050505090565b61229f60208286010187611a50565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061232c90830184611b2c565b97965050505050505056fea2646970667358221220d9adf90dcafe1c569d3da638b15462be89a2e69904acba01d2b432b8cc0fe29364736f6c634300080b0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35258:3061:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35438:40;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;35438:40:0;;;;;;;;21964:231;;;;;;;;;;-1:-1:-1;21964:231:0;;;;;:::i;:::-;;:::i;20987:310::-;;;;;;;;;;-1:-1:-1;20987:310:0;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;20987:310:0;1019:187:1;35781:83:0;;;;;;;;;;-1:-1:-1;35781:83:0;;;;;:::i;:::-;;:::i;:::-;;35305:42;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35305:42:0;;;;;;;;;;;;:::i;21708:105::-;;;;;;;;;;-1:-1:-1;21708:105:0;;;;;:::i;:::-;;:::i;35401:30::-;;;;;;;;;;;;;;;;37375:445;;;;;;:::i;:::-;;:::i;24059:442::-;;;;;;;;;;-1:-1:-1;24059:442:0;;;;;:::i;:::-;;:::i;37828:181::-;;;;;;;;;;-1:-1:-1;37828:181:0;;;;;:::i;:::-;;:::i;36060:96::-;;;;;;;;;;-1:-1:-1;36060:96:0;;;;;:::i;:::-;;:::i;38167:149::-;;;;;;;;;;;;;:::i;38017:142::-;;;;;;;;;;;;;:::i;22361:524::-;;;;;;;;;;-1:-1:-1;22361:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35967:85::-;;;;;;;;;;-1:-1:-1;35967:85:0;;;;;:::i;:::-;;:::i;36266:94::-;;;;;;;;;;-1:-1:-1;36266:94:0;;;;;:::i;:::-;;:::i;2485:::-;;;;;;;;;;;;;:::i;1834:87::-;;;;;;;;;;-1:-1:-1;1907:6:0;;1834:87;;-1:-1:-1;;;;;1907:6:0;;;7920:51:1;;7908:2;7893:18;1834:87:0;7774:203:1;35577:29:0;;;;;;;;;;-1:-1:-1;35577:29:0;;;;;;;;35354:38;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35354:38:0;;;;;22958:311;;;;;;;;;;-1:-1:-1;22958:311:0;;;;;:::i;:::-;;:::i;35485:38::-;;;;;;;;;;;;;;;;35872:87;;;;;;;;;;-1:-1:-1;35872:87:0;;;;;:::i;:::-;;:::i;36164:94::-;;;;;;;;;;-1:-1:-1;36164:94:0;;;;;:::i;:::-;;:::i;36919:448::-;;;;;;:::i;:::-;;:::i;35536:32::-;;;;;;;;;;;;;;;;35613:28;;;;;;;;;;-1:-1:-1;35613:28:0;;;;;;;;;;;23341:168;;;;;;;;;;-1:-1:-1;23341:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;23464:27:0;;;23440:4;23464:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;23341:168;23581:401;;;;;;;;;;-1:-1:-1;23581:401:0;;;;;:::i;:::-;;:::i;2734:192::-;;;;;;;;;;-1:-1:-1;2734:192:0;;;;;:::i;:::-;;:::i;21964:231::-;22050:7;-1:-1:-1;;;;;22078:21:0;;22070:77;;;;-1:-1:-1;;;22070:77:0;;9510:2:1;22070:77:0;;;9492:21:1;9549:2;9529:18;;;9522:30;9588:34;9568:18;;;9561:62;-1:-1:-1;;;9639:18:1;;;9632:41;9690:19;;22070:77:0;;;;;;;;;-1:-1:-1;22165:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;22165:22:0;;;;;;;;;;;;21964:231::o;20987:310::-;21089:4;-1:-1:-1;;;;;;21126:41:0;;-1:-1:-1;;;21126:41:0;;:110;;-1:-1:-1;;;;;;;21184:52:0;;-1:-1:-1;;;21184:52:0;21126:110;:163;;;-1:-1:-1;;;;;;;;;;12874:40:0;;;21253:36;21106:183;20987:310;-1:-1:-1;;20987:310:0:o;35781:83::-;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;35844:12:::1;35852:3;35844:7;:12::i;:::-;35781:83:::0;:::o;21708:105::-;21768:13;21801:4;21794:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21708:105;;;:::o;37375:445::-;37449:10;37463:9;37449:23;37441:51;;;;-1:-1:-1;;;37441:51:0;;10668:2:1;37441:51:0;;;10650:21:1;10707:2;10687:18;;;10680:30;-1:-1:-1;;;10726:18:1;;;10719:45;10781:18;;37441:51:0;10466:339:1;37441:51:0;37511:8;;;;;;;37503:37;;;;-1:-1:-1;;;37503:37:0;;11012:2:1;37503:37:0;;;10994:21:1;11051:2;11031:18;;;11024:30;-1:-1:-1;;;11070:18:1;;;11063:46;11126:18;;37503:37:0;10810:340:1;37503:37:0;37570:1;37559:8;:12;:28;;;;;37586:1;37575:8;:12;37559:28;37551:60;;;;-1:-1:-1;;;37551:60:0;;11357:2:1;37551:60:0;;;11339:21:1;11396:2;11376:18;;;11369:30;-1:-1:-1;;;11415:18:1;;;11408:49;11474:18;;37551:60:0;11155:343:1;37551:60:0;37655:9;;37644:8;37630:11;;:22;;;;:::i;:::-;:34;37622:69;;;;-1:-1:-1;;;37622:69:0;;;;;;;:::i;:::-;37737:8;37723:11;;:22;;;;:::i;:::-;37710:9;:35;37702:71;;;;-1:-1:-1;;;37702:71:0;;12494:2:1;37702:71:0;;;12476:21:1;12533:2;12513:18;;;12506:30;12572:25;12552:18;;;12545:53;12615:18;;37702:71:0;12292:347:1;37702:71:0;37786:26;37791:10;37803:8;37786:4;:26::i;24059:442::-;-1:-1:-1;;;;;24292:20:0;;735:10;24292:20;;:60;;-1:-1:-1;24316:36:0;24333:4;735:10;23341:168;:::i;24316:36::-;24270:160;;;;-1:-1:-1;;;24270:160:0;;12846:2:1;24270:160:0;;;12828:21:1;12885:2;12865:18;;;12858:30;12924:34;12904:18;;;12897:62;-1:-1:-1;;;12975:18:1;;;12968:48;13033:19;;24270:160:0;12644:414:1;24270:160:0;24441:52;24464:4;24470:2;24474:3;24479:7;24488:4;24441:22;:52::i;:::-;24059:442;;;;;:::o;37828:181::-;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;37928:9:::1;;37916:8;37902:11;;:22;;;;:::i;:::-;:35;;37894:70;;;;-1:-1:-1::0;;;37894:70:0::1;;;;;;;:::i;36060:96::-:0;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;36128:12:::1;:20:::0;36060:96::o;38167:149::-;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;38242:21:::1;38282:7;1907:6:::0;;-1:-1:-1;;;;;1907:6:0;;1834:87;38282:7:::1;-1:-1:-1::0;;;;;38274:25:0::1;:34;38300:7;38274:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38213:103;38167:149::o:0;38017:142::-;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;38125:7:::1;::::0;38117:34:::1;::::0;38085:21:::1;::::0;38125:7;;::::1;-1:-1:-1::0;;;;;38125:7:0::1;::::0;38117:34:::1;::::0;::::1;;::::0;38085:21;;38067:15:::1;38117:34:::0;38067:15;38117:34;38085:21;38125:7;38117:34;::::1;;;;;;;;;;;;;::::0;::::1;;;;22361:524:::0;22517:16;22578:3;:10;22559:8;:15;:29;22551:83;;;;-1:-1:-1;;;22551:83:0;;13265:2:1;22551:83:0;;;13247:21:1;13304:2;13284:18;;;13277:30;13343:34;13323:18;;;13316:62;-1:-1:-1;;;13394:18:1;;;13387:39;13443:19;;22551:83:0;13063:405:1;22551:83:0;22647:30;22694:8;:15;22680:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22680:30:0;;22647:63;;22728:9;22723:122;22747:8;:15;22743:1;:19;22723:122;;;22803:30;22813:8;22822:1;22813:11;;;;;;;;:::i;:::-;;;;;;;22826:3;22830:1;22826:6;;;;;;;;:::i;:::-;;;;;;;22803:9;:30::i;:::-;22784:13;22798:1;22784:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;22764:3;;;:::i;:::-;;;22723:122;;;-1:-1:-1;22864:13:0;22361:524;-1:-1:-1;;;22361:524:0:o;35967:85::-;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;36027:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;36027:17:0;;::::1;::::0;;;::::1;::::0;;35967:85::o;36266:94::-;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;36333:9:::1;:19:::0;36266:94::o;2485:::-;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;2550:21:::1;2568:1;2550:9;:21::i;:::-;2485:94::o:0;22958:311::-;735:10;-1:-1:-1;;;;;23061:24:0;;;;23053:78;;;;-1:-1:-1;;;23053:78:0;;13947:2:1;23053:78:0;;;13929:21:1;13986:2;13966:18;;;13959:30;14025:34;14005:18;;;13998:62;-1:-1:-1;;;14076:18:1;;;14069:39;14125:19;;23053:78:0;13745:405:1;23053:78:0;735:10;23144:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23144:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23144:53:0;;;;;;;;;;23213:48;;1159:41:1;;;23144:42:0;;735:10;23213:48;;1132:18:1;23213:48:0;;;;;;;22958:311;;:::o;35872:87::-;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;35933:9:::1;:18:::0;;-1:-1:-1;;35933:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35872:87::o;36164:94::-;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;36231:11:::1;:19:::0;36164:94::o;36919:448::-;36994:10;37008:9;36994:23;36986:51;;;;-1:-1:-1;;;36986:51:0;;10668:2:1;36986:51:0;;;10650:21:1;10707:2;10687:18;;;10680:30;-1:-1:-1;;;10726:18:1;;;10719:45;10781:18;;36986:51:0;10466:339:1;36986:51:0;37056:9;;;;37048:38;;;;-1:-1:-1;;;37048:38:0;;11012:2:1;37048:38:0;;;10994:21:1;11051:2;11031:18;;;11024:30;-1:-1:-1;;;11070:18:1;;;11063:46;11126:18;;37048:38:0;10810:340:1;37048:38:0;37116:1;37105:8;:12;:28;;;;;37132:1;37121:8;:12;37105:28;37097:60;;;;-1:-1:-1;;;37097:60:0;;11357:2:1;37097:60:0;;;11339:21:1;11396:2;11376:18;;;11369:30;-1:-1:-1;;;11415:18:1;;;11408:49;11474:18;;37097:60:0;11155:343:1;37097:60:0;37201:9;;37190:8;37176:11;;:22;;;;:::i;:::-;:34;37168:69;;;;-1:-1:-1;;;37168:69:0;;;;;;;:::i;:::-;37284:8;37269:12;;:23;;;;:::i;23581:401::-;-1:-1:-1;;;;;23789:20:0;;735:10;23789:20;;:60;;-1:-1:-1;23813:36:0;23830:4;735:10;23341:168;:::i;23813:36::-;23767:151;;;;-1:-1:-1;;;23767:151:0;;14357:2:1;23767:151:0;;;14339:21:1;14396:2;14376:18;;;14369:30;14435:34;14415:18;;;14408:62;-1:-1:-1;;;14486:18:1;;;14479:39;14535:19;;23767:151:0;14155:405:1;23767:151:0;23929:45;23947:4;23953:2;23957;23961:6;23969:4;23929:17;:45::i;2734:192::-;1907:6;;-1:-1:-1;;;;;1907:6:0;735:10;2054:23;2046:68;;;;-1:-1:-1;;;2046:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2823:22:0;::::1;2815:73;;;::::0;-1:-1:-1;;;2815:73:0;;14767:2:1;2815:73:0::1;::::0;::::1;14749:21:1::0;14806:2;14786:18;;;14779:30;14845:34;14825:18;;;14818:62;-1:-1:-1;;;14896:18:1;;;14889:36;14942:19;;2815:73:0::1;14565:402:1::0;2815:73:0::1;2899:19;2909:8;2899:9;:19::i;28061:88::-:0;28128:13;;;;:4;;:13;;;;;:::i;36368:539::-;36447:1;36436:8;:12;36432:432;;;36465:20;36510:8;36488:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36488:32:0;;36465:55;;36535:24;36584:8;36562:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36562:32:0;;36535:59;;36616:9;36611:131;36635:8;36631:1;:12;36611:131;;;36692:1;36678:11;;:15;;;;:::i;:::-;36669:3;36673:1;36669:6;;;;;;;;:::i;:::-;;;;;;:24;;;;;36725:1;36712:7;36720:1;36712:10;;;;;;;;:::i;:::-;;;;;;;;;;:14;36645:3;;;;:::i;:::-;;;;36611:131;;;;36758:32;36769:2;36773:3;36778:7;36758:32;;;;;;;;;;;;:10;:32::i;:::-;36450:352;;36432:432;;;36823:29;36829:2;36833:11;;36846:1;36823:29;;;;;;;;;;;;:5;:29::i;:::-;36891:8;36876:11;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;36368:539:0:o;26143:1074::-;26370:7;:14;26356:3;:10;:28;26348:81;;;;-1:-1:-1;;;26348:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26448:16:0;;26440:66;;;;-1:-1:-1;;;26440:66:0;;;;;;;:::i;:::-;735:10;26519:16;26636:421;26660:3;:10;26656:1;:14;26636:421;;;26692:10;26705:3;26709:1;26705:6;;;;;;;;:::i;:::-;;;;;;;26692:19;;26726:14;26743:7;26751:1;26743:10;;;;;;;;:::i;:::-;;;;;;;;;;;;26770:19;26792:13;;;;;;;;;;-1:-1:-1;;;;;26792:19:0;;;;;;;;;;;;26743:10;;-1:-1:-1;26834:21:0;;;;26826:76;;;;-1:-1:-1;;;26826:76:0;;;;;;;:::i;:::-;26946:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26946:19:0;;;;;;;;;;26968:20;;;26946:42;;27018:17;;;;;;;:27;;26968:20;;26946:9;27018:27;;26968:20;;27018:27;:::i;:::-;;;;;;;;26677:380;;;26672:3;;;;:::i;:::-;;;26636:421;;;;27104:2;-1:-1:-1;;;;;27074:47:0;27098:4;-1:-1:-1;;;;;27074:47:0;27088:8;-1:-1:-1;;;;;27074:47:0;;27108:3;27113:7;27074:47;;;;;;;:::i;:::-;;;;;;;;27134:75;27170:8;27180:4;27186:2;27190:3;27195:7;27204:4;27134:35;:75::i;:::-;26337:880;26143:1074;;;;;:::o;2934:173::-;3009:6;;;-1:-1:-1;;;;;3026:17:0;;;-1:-1:-1;;;;;;3026:17:0;;;;;;;3059:40;;3009:6;;;3026:17;3009:6;;3059:40;;2990:16;;3059:40;2979:128;2934:173;:::o;24965:820::-;-1:-1:-1;;;;;25153:16:0;;25145:66;;;;-1:-1:-1;;;25145:66:0;;;;;;;:::i;:::-;735:10;25268:96;735:10;25299:4;25305:2;25309:21;25327:2;25309:17;:21::i;:::-;25332:25;25350:6;25332:17;:25::i;25268:96::-;25377:19;25399:13;;;;;;;;;;;-1:-1:-1;;;;;25399:19:0;;;;;;;;;;25437:21;;;;25429:76;;;;-1:-1:-1;;;25429:76:0;;;;;;;:::i;:::-;25541:9;:13;;;;;;;;;;;-1:-1:-1;;;;;25541:19:0;;;;;;;;;;25563:20;;;25541:42;;25605:17;;;;;;;:27;;25563:20;;25541:9;25605:27;;25563:20;;25605:27;:::i;:::-;;;;-1:-1:-1;;25650:46:0;;;16842:25:1;;;16898:2;16883:18;;16876:34;;;-1:-1:-1;;;;;25650:46:0;;;;;;;;;;;;;;16815:18:1;25650:46:0;;;;;;;25709:68;25740:8;25750:4;25756:2;25760;25764:6;25772:4;25709:30;:68::i;:::-;25134:651;;24965:820;;;;;:::o;29505:735::-;-1:-1:-1;;;;;29683:16:0;;29675:62;;;;-1:-1:-1;;;29675:62:0;;;;;;;:::i;:::-;29770:7;:14;29756:3;:10;:28;29748:81;;;;-1:-1:-1;;;29748:81:0;;;;;;;:::i;:::-;735:10;29842:16;29965:103;29989:3;:10;29985:1;:14;29965:103;;;30046:7;30054:1;30046:10;;;;;;;;:::i;:::-;;;;;;;30021:9;:17;30031:3;30035:1;30031:6;;;;;;;;:::i;:::-;;;;;;;30021:17;;;;;;;;;;;:21;30039:2;-1:-1:-1;;;;;30021:21:0;-1:-1:-1;;;;;30021:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;30001:3:0;;-1:-1:-1;30001:3:0;;;:::i;:::-;;;;29965:103;;;;30121:2;-1:-1:-1;;;;;30085:53:0;30117:1;-1:-1:-1;;;;;30085:53:0;30099:8;-1:-1:-1;;;;;30085:53:0;;30125:3;30130:7;30085:53;;;;;;;:::i;:::-;;;;;;;;30151:81;30187:8;30205:1;30209:2;30213:3;30218:7;30227:4;30151:35;:81::i;28550:599::-;-1:-1:-1;;;;;28708:21:0;;28700:67;;;;-1:-1:-1;;;28700:67:0;;;;;;;:::i;:::-;735:10;28824:107;735:10;28780:16;28867:7;28876:21;28894:2;28876:17;:21::i;28824:107::-;28944:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28944:22:0;;;;;;;;;:32;;28970:6;;28944:9;:32;;28970:6;;28944:32;:::i;:::-;;;;-1:-1:-1;;28992:57:0;;;16842:25:1;;;16898:2;16883:18;;16876:34;;;-1:-1:-1;;;;;28992:57:0;;;;29025:1;;28992:57;;;;;;16815:18:1;28992:57:0;;;;;;;29062:79;29093:8;29111:1;29115:7;29124:2;29128:6;29136:4;29062:30;:79::i;34232:813::-;-1:-1:-1;;;;;34472:13:0;;4172:20;4220:8;34468:570;;34508:79;;-1:-1:-1;;;34508:79:0;;-1:-1:-1;;;;;34508:43:0;;;;;:79;;34552:8;;34562:4;;34568:3;;34573:7;;34582:4;;34508:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34508:79:0;;;;;;;;-1:-1:-1;;34508:79:0;;;;;;;;;;;;:::i;:::-;;;34504:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;34900:6;34893:14;;-1:-1:-1;;;34893:14:0;;;;;;;;:::i;34504:523::-;;;34949:62;;-1:-1:-1;;;34949:62:0;;19471:2:1;34949:62:0;;;19453:21:1;19510:2;19490:18;;;19483:30;19549:34;19529:18;;;19522:62;-1:-1:-1;;;19600:18:1;;;19593:50;19660:19;;34949:62:0;19269:416:1;34504:523:0;-1:-1:-1;;;;;;34669:60:0;;-1:-1:-1;;;34669:60:0;34665:159;;34754:50;;-1:-1:-1;;;34754:50:0;;;;;;;:::i;35053:198::-;35173:16;;;35187:1;35173:16;;;;;;;;;35119;;35148:22;;35173:16;;;;;;;;;;;;-1:-1:-1;35173:16:0;35148:41;;35211:7;35200:5;35206:1;35200:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;35238:5;35053:198;-1:-1:-1;;35053:198:0:o;33480:744::-;-1:-1:-1;;;;;33695:13:0;;4172:20;4220:8;33691:526;;33731:72;;-1:-1:-1;;;33731:72:0;;-1:-1:-1;;;;;33731:38:0;;;;;:72;;33770:8;;33780:4;;33786:2;;33790:6;;33798:4;;33731:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33731:72:0;;;;;;;;-1:-1:-1;;33731:72:0;;;;;;;;;;;;:::i;:::-;;;33727:479;;;;:::i;:::-;-1:-1:-1;;;;;;33853:55:0;;-1:-1:-1;;;33853:55:0;33849:154;;33933:50;;-1:-1:-1;;;33933:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;196:173:1;264:20;;-1:-1:-1;;;;;313:31:1;;303:42;;293:70;;359:1;356;349:12;293:70;196:173;;;:::o;374:254::-;442:6;450;503:2;491:9;482:7;478:23;474:32;471:52;;;519:1;516;509:12;471:52;542:29;561:9;542:29;:::i;:::-;532:39;618:2;603:18;;;;590:32;;-1:-1:-1;;;374:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:127::-;1272:10;1267:3;1263:20;1260:1;1253:31;1303:4;1300:1;1293:15;1327:4;1324:1;1317:15;1343:249;1453:2;1434:13;;-1:-1:-1;;1430:27:1;1418:40;;1488:18;1473:34;;1509:22;;;1470:62;1467:88;;;1535:18;;:::i;:::-;1571:2;1564:22;-1:-1:-1;;1343:249:1:o;1597:469::-;1662:5;1696:18;1688:6;1685:30;1682:56;;;1718:18;;:::i;:::-;1767:2;1761:9;1779:69;1836:2;1815:15;;-1:-1:-1;;1811:29:1;1842:4;1807:40;1761:9;1779:69;:::i;:::-;1866:6;1857:15;;1896:6;1888;1881:22;1936:3;1927:6;1922:3;1918:16;1915:25;1912:45;;;1953:1;1950;1943:12;1912:45;2003:6;1998:3;1991:4;1983:6;1979:17;1966:44;2058:1;2051:4;2042:6;2034;2030:19;2026:30;2019:41;;1597:469;;;;;:::o;2071:451::-;2140:6;2193:2;2181:9;2172:7;2168:23;2164:32;2161:52;;;2209:1;2206;2199:12;2161:52;2249:9;2236:23;2282:18;2274:6;2271:30;2268:50;;;2314:1;2311;2304:12;2268:50;2337:22;;2390:4;2382:13;;2378:27;-1:-1:-1;2368:55:1;;2419:1;2416;2409:12;2368:55;2442:74;2508:7;2503:2;2490:16;2485:2;2481;2477:11;2442:74;:::i;:::-;2432:84;2071:451;-1:-1:-1;;;;2071:451:1:o;2527:472::-;2569:3;2607:5;2601:12;2634:6;2629:3;2622:19;2659:1;2669:162;2683:6;2680:1;2677:13;2669:162;;;2745:4;2801:13;;;2797:22;;2791:29;2773:11;;;2769:20;;2762:59;2698:12;2669:162;;;2849:6;2846:1;2843:13;2840:87;;;2915:1;2908:4;2899:6;2894:3;2890:16;2886:27;2879:38;2840:87;-1:-1:-1;2981:2:1;2960:15;-1:-1:-1;;2956:29:1;2947:39;;;;2988:4;2943:50;;2527:472;-1:-1:-1;;2527:472:1:o;3004:220::-;3153:2;3142:9;3135:21;3116:4;3173:45;3214:2;3203:9;3199:18;3191:6;3173:45;:::i;3229:180::-;3288:6;3341:2;3329:9;3320:7;3316:23;3312:32;3309:52;;;3357:1;3354;3347:12;3309:52;-1:-1:-1;3380:23:1;;3229:180;-1:-1:-1;3229:180:1:o;3414:183::-;3474:4;3507:18;3499:6;3496:30;3493:56;;;3529:18;;:::i;:::-;-1:-1:-1;3574:1:1;3570:14;3586:4;3566:25;;3414:183::o;3602:724::-;3656:5;3709:3;3702:4;3694:6;3690:17;3686:27;3676:55;;3727:1;3724;3717:12;3676:55;3763:6;3750:20;3789:4;3812:43;3852:2;3812:43;:::i;:::-;3884:2;3878:9;3896:31;3924:2;3916:6;3896:31;:::i;:::-;3962:18;;;4054:1;4050:10;;;;4038:23;;4034:32;;;3996:15;;;;-1:-1:-1;4078:15:1;;;4075:35;;;4106:1;4103;4096:12;4075:35;4142:2;4134:6;4130:15;4154:142;4170:6;4165:3;4162:15;4154:142;;;4236:17;;4224:30;;4274:12;;;;4187;;4154:142;;;-1:-1:-1;4314:6:1;3602:724;-1:-1:-1;;;;;;3602:724:1:o;4331:221::-;4373:5;4426:3;4419:4;4411:6;4407:17;4403:27;4393:55;;4444:1;4441;4434:12;4393:55;4466:80;4542:3;4533:6;4520:20;4513:4;4505:6;4501:17;4466:80;:::i;4557:943::-;4711:6;4719;4727;4735;4743;4796:3;4784:9;4775:7;4771:23;4767:33;4764:53;;;4813:1;4810;4803:12;4764:53;4836:29;4855:9;4836:29;:::i;:::-;4826:39;;4884:38;4918:2;4907:9;4903:18;4884:38;:::i;:::-;4874:48;;4973:2;4962:9;4958:18;4945:32;4996:18;5037:2;5029:6;5026:14;5023:34;;;5053:1;5050;5043:12;5023:34;5076:61;5129:7;5120:6;5109:9;5105:22;5076:61;:::i;:::-;5066:71;;5190:2;5179:9;5175:18;5162:32;5146:48;;5219:2;5209:8;5206:16;5203:36;;;5235:1;5232;5225:12;5203:36;5258:63;5313:7;5302:8;5291:9;5287:24;5258:63;:::i;:::-;5248:73;;5374:3;5363:9;5359:19;5346:33;5330:49;;5404:2;5394:8;5391:16;5388:36;;;5420:1;5417;5410:12;5388:36;;5443:51;5486:7;5475:8;5464:9;5460:24;5443:51;:::i;:::-;5433:61;;;4557:943;;;;;;;;:::o;5505:1208::-;5623:6;5631;5684:2;5672:9;5663:7;5659:23;5655:32;5652:52;;;5700:1;5697;5690:12;5652:52;5740:9;5727:23;5769:18;5810:2;5802:6;5799:14;5796:34;;;5826:1;5823;5816:12;5796:34;5864:6;5853:9;5849:22;5839:32;;5909:7;5902:4;5898:2;5894:13;5890:27;5880:55;;5931:1;5928;5921:12;5880:55;5967:2;5954:16;5989:4;6012:43;6052:2;6012:43;:::i;:::-;6084:2;6078:9;6096:31;6124:2;6116:6;6096:31;:::i;:::-;6162:18;;;6250:1;6246:10;;;;6238:19;;6234:28;;;6196:15;;;;-1:-1:-1;6274:19:1;;;6271:39;;;6306:1;6303;6296:12;6271:39;6330:11;;;;6350:148;6366:6;6361:3;6358:15;6350:148;;;6432:23;6451:3;6432:23;:::i;:::-;6420:36;;6383:12;;;;6476;;;;6350:148;;;6517:6;-1:-1:-1;;6561:18:1;;6548:32;;-1:-1:-1;;6592:16:1;;;6589:36;;;6621:1;6618;6611:12;6589:36;;6644:63;6699:7;6688:8;6677:9;6673:24;6644:63;:::i;:::-;6634:73;;;5505:1208;;;;;:::o;6718:435::-;6771:3;6809:5;6803:12;6836:6;6831:3;6824:19;6862:4;6891:2;6886:3;6882:12;6875:19;;6928:2;6921:5;6917:14;6949:1;6959:169;6973:6;6970:1;6967:13;6959:169;;;7034:13;;7022:26;;7068:12;;;;7103:15;;;;6995:1;6988:9;6959:169;;;-1:-1:-1;7144:3:1;;6718:435;-1:-1:-1;;;;;6718:435:1:o;7158:261::-;7337:2;7326:9;7319:21;7300:4;7357:56;7409:2;7398:9;7394:18;7386:6;7357:56;:::i;7424:160::-;7489:20;;7545:13;;7538:21;7528:32;;7518:60;;7574:1;7571;7564:12;7589:180;7645:6;7698:2;7686:9;7677:7;7673:23;7669:32;7666:52;;;7714:1;7711;7704:12;7666:52;7737:26;7753:9;7737:26;:::i;7982:254::-;8047:6;8055;8108:2;8096:9;8087:7;8083:23;8079:32;8076:52;;;8124:1;8121;8114:12;8076:52;8147:29;8166:9;8147:29;:::i;:::-;8137:39;;8195:35;8226:2;8215:9;8211:18;8195:35;:::i;:::-;8185:45;;7982:254;;;;;:::o;8241:260::-;8309:6;8317;8370:2;8358:9;8349:7;8345:23;8341:32;8338:52;;;8386:1;8383;8376:12;8338:52;8409:29;8428:9;8409:29;:::i;:::-;8399:39;;8457:38;8491:2;8480:9;8476:18;8457:38;:::i;8506:606::-;8610:6;8618;8626;8634;8642;8695:3;8683:9;8674:7;8670:23;8666:33;8663:53;;;8712:1;8709;8702:12;8663:53;8735:29;8754:9;8735:29;:::i;:::-;8725:39;;8783:38;8817:2;8806:9;8802:18;8783:38;:::i;:::-;8773:48;;8868:2;8857:9;8853:18;8840:32;8830:42;;8919:2;8908:9;8904:18;8891:32;8881:42;;8974:3;8963:9;8959:19;8946:33;9002:18;8994:6;8991:30;8988:50;;;9034:1;9031;9024:12;8988:50;9057:49;9098:7;9089:6;9078:9;9074:22;9057:49;:::i;9117:186::-;9176:6;9229:2;9217:9;9208:7;9204:23;9200:32;9197:52;;;9245:1;9242;9235:12;9197:52;9268:29;9287:9;9268:29;:::i;9720:356::-;9922:2;9904:21;;;9941:18;;;9934:30;10000:34;9995:2;9980:18;;9973:62;10067:2;10052:18;;9720:356::o;10081:380::-;10160:1;10156:12;;;;10203;;;10224:61;;10278:4;10270:6;10266:17;10256:27;;10224:61;10331:2;10323:6;10320:14;10300:18;10297:38;10294:161;;;10377:10;10372:3;10368:20;10365:1;10358:31;10412:4;10409:1;10402:15;10440:4;10437:1;10430:15;10294:161;;10081:380;;;:::o;11503:127::-;11564:10;11559:3;11555:20;11552:1;11545:31;11595:4;11592:1;11585:15;11619:4;11616:1;11609:15;11635:128;11675:3;11706:1;11702:6;11699:1;11696:13;11693:39;;;11712:18;;:::i;:::-;-1:-1:-1;11748:9:1;;11635:128::o;11768:346::-;11970:2;11952:21;;;12009:2;11989:18;;;11982:30;-1:-1:-1;;;12043:2:1;12028:18;;12021:52;12105:2;12090:18;;11768:346::o;12119:168::-;12159:7;12225:1;12221;12217:6;12213:14;12210:1;12207:21;12202:1;12195:9;12188:17;12184:45;12181:71;;;12232:18;;:::i;:::-;-1:-1:-1;12272:9:1;;12119:168::o;13473:127::-;13534:10;13529:3;13525:20;13522:1;13515:31;13565:4;13562:1;13555:15;13589:4;13586:1;13579:15;13605:135;13644:3;-1:-1:-1;;13665:17:1;;13662:43;;;13685:18;;:::i;:::-;-1:-1:-1;13732:1:1;13721:13;;13605:135::o;14972:404::-;15174:2;15156:21;;;15213:2;15193:18;;;15186:30;15252:34;15247:2;15232:18;;15225:62;-1:-1:-1;;;15318:2:1;15303:18;;15296:38;15366:3;15351:19;;14972:404::o;15381:401::-;15583:2;15565:21;;;15622:2;15602:18;;;15595:30;15661:34;15656:2;15641:18;;15634:62;-1:-1:-1;;;15727:2:1;15712:18;;15705:35;15772:3;15757:19;;15381:401::o;15787:406::-;15989:2;15971:21;;;16028:2;16008:18;;;16001:30;16067:34;16062:2;16047:18;;16040:62;-1:-1:-1;;;16133:2:1;16118:18;;16111:40;16183:3;16168:19;;15787:406::o;16198:465::-;16455:2;16444:9;16437:21;16418:4;16481:56;16533:2;16522:9;16518:18;16510:6;16481:56;:::i;:::-;16585:9;16577:6;16573:22;16568:2;16557:9;16553:18;16546:50;16613:44;16650:6;16642;16613:44;:::i;:::-;16605:52;16198:465;-1:-1:-1;;;;;16198:465:1:o;16921:397::-;17123:2;17105:21;;;17162:2;17142:18;;;17135:30;17201:34;17196:2;17181:18;;17174:62;-1:-1:-1;;;17267:2:1;17252:18;;17245:31;17308:3;17293:19;;16921:397::o;17323:827::-;-1:-1:-1;;;;;17720:15:1;;;17702:34;;17772:15;;17767:2;17752:18;;17745:43;17682:3;17819:2;17804:18;;17797:31;;;17645:4;;17851:57;;17888:19;;17880:6;17851:57;:::i;:::-;17956:9;17948:6;17944:22;17939:2;17928:9;17924:18;17917:50;17990:44;18027:6;18019;17990:44;:::i;:::-;17976:58;;18083:9;18075:6;18071:22;18065:3;18054:9;18050:19;18043:51;18111:33;18137:6;18129;18111:33;:::i;:::-;18103:41;17323:827;-1:-1:-1;;;;;;;;17323:827:1:o;18155:249::-;18224:6;18277:2;18265:9;18256:7;18252:23;18248:32;18245:52;;;18293:1;18290;18283:12;18245:52;18325:9;18319:16;18344:30;18368:5;18344:30;:::i;18409:179::-;18444:3;18486:1;18468:16;18465:23;18462:120;;;18532:1;18529;18526;18511:23;-1:-1:-1;18569:1:1;18563:8;18558:3;18554:18;18462:120;18409:179;:::o;18593:671::-;18632:3;18674:4;18656:16;18653:26;18650:39;;;18593:671;:::o;18650:39::-;18716:2;18710:9;-1:-1:-1;;18781:16:1;18777:25;;18774:1;18710:9;18753:50;18832:4;18826:11;18856:16;18891:18;18962:2;18955:4;18947:6;18943:17;18940:25;18935:2;18927:6;18924:14;18921:45;18918:58;;;18969:5;;;;;18593:671;:::o;18918:58::-;19006:6;19000:4;18996:17;18985:28;;19042:3;19036:10;19069:2;19061:6;19058:14;19055:27;;;19075:5;;;;;;18593:671;:::o;19055:27::-;19159:2;19140:16;19134:4;19130:27;19126:36;19119:4;19110:6;19105:3;19101:16;19097:27;19094:69;19091:82;;;19166:5;;;;;;18593:671;:::o;19091:82::-;19182:57;19233:4;19224:6;19216;19212:19;19208:30;19202:4;19182:57;:::i;:::-;-1:-1:-1;19255:3:1;;18593:671;-1:-1:-1;;;;;18593:671:1:o;19690:404::-;19892:2;19874:21;;;19931:2;19911:18;;;19904:30;19970:34;19965:2;19950:18;;19943:62;-1:-1:-1;;;20036:2:1;20021:18;;20014:38;20084:3;20069:19;;19690:404::o;20099:561::-;-1:-1:-1;;;;;20396:15:1;;;20378:34;;20448:15;;20443:2;20428:18;;20421:43;20495:2;20480:18;;20473:34;;;20538:2;20523:18;;20516:34;;;20358:3;20581;20566:19;;20559:32;;;20321:4;;20608:46;;20634:19;;20626:6;20608:46;:::i;:::-;20600:54;20099:561;-1:-1:-1;;;;;;;20099:561:1:o

Swarm Source

ipfs://d9adf90dcafe1c569d3da638b15462be89a2e69904acba01d2b432b8cc0fe293
Loading...
Loading
Loading...
Loading
[ 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.