ETH Price: $2,670.42 (+1.09%)

Token

Charadao Mint Practice (CMP)
 

Overview

Max Total Supply

171 CMP

Holders

143

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
CharadaoMintPractice

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-30
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @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.
     *
     * NOTE: 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.
     *
     * NOTE: 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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @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: address zero is not a valid owner");
        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 {
        _setApprovalForAll(_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 token 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: caller is not token 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();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, 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);

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

        _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);

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

        _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 `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

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

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

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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 _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);

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

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

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

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

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

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

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

        address operator = _msgSender();

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

        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: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

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

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 `ids` and `amounts` 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 {}

    /**
     * @dev Hook that is called after 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 _afterTokenTransfer(
        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;
    }
}

// File: contracts/CharadaoMintPractice.sol

pragma solidity ^0.8.7;

contract CharadaoMintPractice is ERC1155, Ownable {
    string public name;
    string public symbol;
    string[] public baseURI = ["ipfs://QmUrd92P6wuFCfVaCRiYBmXjUBJmacAcN3pfYnvNxbZZTJ"];
    bool public saleEnabled = true;
    uint256 public maxMintPerTx = 1;
    using Strings for uint256;
    //mapping address => id => amount
    mapping(address => mapping(uint256 => uint256)) public psMinted;

    constructor()
     ERC1155("") {
        name = "Charadao Mint Practice";
        symbol = "CMP";
    }

    // mint
    function mint(address to, uint256 id, uint256 amount) public onlySender{
        require(saleEnabled, "Mint: Paused");
        require(psMinted[msg.sender][id] < 3, "You have no mints remaining!");
        require(amount > 0, "Mint at least 1!");
        require(amount <= maxMintPerTx, "Max mint per tx is 1!");
 
        _mint(to, id, amount,"");
        psMinted[msg.sender][id] += amount;
    }

    function _beforeTokenTransfer(
        address,
        address from,
        address to,
        uint256[] memory,
        uint256[] memory,
        bytes memory
    ) internal virtual override{
        // for SoulBound
        // mint-> OK , transfer-> NG , burn-> OK
        require(to == address(0) || from == address(0),"this token is soulbound");
    }

    function _metadataURI(uint256 _id) internal view returns (string memory) {
            return baseURI[_id];
    }

    // refer the latest uri for token id
    function uri(uint256 id) public view override returns (string memory) {
        return string(abi.encodePacked(_metadataURI(id)));
    }

    // set newOwner by only owner
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function setSale(bool bool_) external onlyOwner {
        saleEnabled = bool_;
    }

    // set BaseURI
    function setBaseURI(string[] memory _uris) external onlyOwner {
        delete baseURI;
        baseURI = _uris;
    }

    modifier onlySender {
        require(msg.sender == tx.origin, "No smart contract"); _; 
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"uint256","name":"","type":"uint256"}],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"psMinted","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":[],"name":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_uris","type":"string[]"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setSale","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

610100604052603560a08181526080918291906200210560c03990526200002b90600690600162000158565b506007805460ff191660019081179091556008553480156200004c57600080fd5b506040805160208101909152600081526200006781620000ed565b50620000733362000106565b6040805180820190915260168082527f436861726164616f204d696e74205072616374696365000000000000000000006020909201918252620000b991600491620001bc565b50604080518082019091526003808252620434d560ec1b6020909201918252620000e691600591620001bc565b50620002fe565b805162000102906002906020840190620001bc565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620001aa579160200282015b82811115620001aa578251805162000199918491602090910190620001bc565b509160200191906001019062000179565b50620001b892915062000247565b5090565b828054620001ca90620002c1565b90600052602060002090601f016020900481019282620001ee576000855562000239565b82601f106200020957805160ff191683800117855562000239565b8280016001018555821562000239579182015b82811115620002395782518255916020019190600101906200021c565b50620001b892915062000268565b80821115620001b85760006200025e82826200027f565b5060010162000247565b5b80821115620001b8576000815560010162000269565b5080546200028d90620002c1565b6000825580601f106200029e575050565b601f016020900490600052602060002090810190620002be919062000268565b50565b600181811c90821680620002d657607f821691505b60208210811415620002f857634e487b7160e01b600052602260045260246000fd5b50919050565b611df7806200030e6000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c80634e1273f4116100ad578063a22cb46511610071578063a22cb46514610285578063de7fcb1d14610298578063e985e9c5146102a1578063f242432a146102dd578063f2fde38b146102f057600080fd5b80634e1273f41461022d578063715018a61461024d57806371b9b646146102555780638da5cb5b1461026257806395d89b411461027d57600080fd5b806310637d8a116100f457806310637d8a146101b6578063156e29f6146101e15780631d2e5a3a146101f45780632ccde4f6146102075780632eb2c2d61461021a57600080fd5b8062fdd58e1461013057806301ffc9a714610156578063059592161461017957806306fdde031461018e5780630e89341c146101a3575b600080fd5b61014361013e3660046116c2565b610303565b6040519081526020015b60405180910390f35b6101696101643660046118e1565b610399565b604051901515815260200161014d565b61018c6101873660046117f0565b6103eb565b005b610196610416565b60405161014d9190611a9b565b6101966101b136600461191b565b6104a4565b6101436101c43660046116c2565b600960209081526000928352604080842090915290825290205481565b61018c6101ef3660046116ec565b6104d5565b61018c6102023660046118c6565b61069f565b61019661021536600461191b565b6106ba565b61018c610228366004611589565b6106e5565b61024061023b36600461171f565b610731565b60405161014d9190611a5a565b61018c61085b565b6007546101699060ff1681565b6003546040516001600160a01b03909116815260200161014d565b61019661086f565b61018c610293366004611698565b61087c565b61014360085481565b6101696102af366004611556565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61018c6102eb366004611633565b610887565b61018c6102fe36600461153b565b6108cc565b60006001600160a01b0383166103735760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806103ca57506001600160e01b031982166303a24d0760e21b145b806103e557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6103f3610945565b6103ff600660006112b0565b80516104129060069060208401906112ce565b5050565b6004805461042390611c40565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90611c40565b801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b505050505081565b60606104af8261099f565b6040516020016104bf919061199b565b6040516020818303038152906040529050919050565b3332146105185760405162461bcd60e51b8152602060048201526011602482015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b604482015260640161036a565b60075460ff166105595760405162461bcd60e51b815260206004820152600c60248201526b135a5b9d0e8814185d5cd95960a21b604482015260640161036a565b3360009081526009602090815260408083208584529091529020546003116105c35760405162461bcd60e51b815260206004820152601c60248201527f596f752068617665206e6f206d696e74732072656d61696e696e672100000000604482015260640161036a565b600081116106065760405162461bcd60e51b815260206004820152601060248201526f4d696e74206174206c6561737420312160801b604482015260640161036a565b6008548111156106505760405162461bcd60e51b81526020600482015260156024820152744d6178206d696e742070657220747820697320312160581b604482015260640161036a565b61066b83838360405180602001604052806000815250610a4e565b33600090815260096020908152604080832085845290915281208054839290610695908490611bf8565b9091555050505050565b6106a7610945565b6007805460ff1916911515919091179055565b600681815481106106ca57600080fd5b90600052602060002001600091509050805461042390611c40565b6001600160a01b038516331480610701575061070185336102af565b61071d5760405162461bcd60e51b815260040161036a90611aae565b61072a8585858585610b71565b5050505050565b606081518351146107965760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161036a565b6000835167ffffffffffffffff8111156107b2576107b2611cef565b6040519080825280602002602001820160405280156107db578160200160208202803683370190505b50905060005b8451811015610853576108268582815181106107ff576107ff611cd9565b602002602001015185838151811061081957610819611cd9565b6020026020010151610303565b82828151811061083857610838611cd9565b602090810291909101015261084c81611ca8565b90506107e1565b509392505050565b610863610945565b61086d6000610d5c565b565b6005805461042390611c40565b610412338383610dae565b6001600160a01b0385163314806108a357506108a385336102af565b6108bf5760405162461bcd60e51b815260040161036a90611aae565b61072a8585858585610e8f565b6108d4610945565b6001600160a01b0381166109395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161036a565b61094281610d5c565b50565b6003546001600160a01b0316331461086d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161036a565b6060600682815481106109b4576109b4611cd9565b9060005260206000200180546109c990611c40565b80601f01602080910402602001604051908101604052809291908181526020018280546109f590611c40565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b50505050509050919050565b6001600160a01b038416610aae5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161036a565b336000610aba85610fc7565b90506000610ac785610fc7565b9050610ad883600089858589611012565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290610b08908490611bf8565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610b688360008989898961107b565b50505050505050565b8151835114610bd35760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161036a565b6001600160a01b038416610bf95760405162461bcd60e51b815260040161036a90611b45565b33610c08818787878787611012565b60005b8451811015610cee576000858281518110610c2857610c28611cd9565b602002602001015190506000858381518110610c4657610c46611cd9565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610c965760405162461bcd60e51b815260040161036a90611b8a565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610cd3908490611bf8565b9250508190555050505080610ce790611ca8565b9050610c0b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d3e929190611a6d565b60405180910390a4610d548187878787876111e6565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610e225760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161036a565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610eb55760405162461bcd60e51b815260040161036a90611b45565b336000610ec185610fc7565b90506000610ece85610fc7565b9050610ede838989858589611012565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015610f1f5760405162461bcd60e51b815260040161036a90611b8a565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290610f5c908490611bf8565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610fbc848a8a8a8a8a61107b565b505050505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061100157611001611cd9565b602090810291909101015292915050565b6001600160a01b038416158061102f57506001600160a01b038516155b610d545760405162461bcd60e51b815260206004820152601760248201527f7468697320746f6b656e20697320736f756c626f756e64000000000000000000604482015260640161036a565b6001600160a01b0384163b15610d545760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906110bf9089908990889088908890600401611a15565b602060405180830381600087803b1580156110d957600080fd5b505af1925050508015611109575060408051601f3d908101601f19168201909252611106918101906118fe565b60015b6111b657611115611d05565b806308c379a0141561114f575061112a611d21565b806111355750611151565b8060405162461bcd60e51b815260040161036a9190611a9b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161036a565b6001600160e01b0319811663f23a6e6160e01b14610b685760405162461bcd60e51b815260040161036a90611afd565b6001600160a01b0384163b15610d545760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061122a90899089908890889088906004016119b7565b602060405180830381600087803b15801561124457600080fd5b505af1925050508015611274575060408051601f3d908101601f19168201909252611271918101906118fe565b60015b61128057611115611d05565b6001600160e01b0319811663bc197c8160e01b14610b685760405162461bcd60e51b815260040161036a90611afd565b5080546000825590600052602060002090810190610942919061132b565b82805482825590600052602060002090810192821561131b579160200282015b8281111561131b578251805161130b918491602090910190611348565b50916020019190600101906112ee565b5061132792915061132b565b5090565b8082111561132757600061133f82826113c8565b5060010161132b565b82805461135490611c40565b90600052602060002090601f01602090048101928261137657600085556113bc565b82601f1061138f57805160ff19168380011785556113bc565b828001600101855582156113bc579182015b828111156113bc5782518255916020019190600101906113a1565b506113279291506113fe565b5080546113d490611c40565b6000825580601f106113e4575050565b601f01602090049060005260206000209081019061094291905b5b8082111561132757600081556001016113ff565b600067ffffffffffffffff83111561142d5761142d611cef565b604051611444601f8501601f191660200182611c7b565b80915083815284848401111561145957600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461148857600080fd5b919050565b600082601f83011261149e57600080fd5b813560206114ab82611bd4565b6040516114b88282611c7b565b8381528281019150858301600585901b870184018810156114d857600080fd5b60005b858110156114f7578135845292840192908401906001016114db565b5090979650505050505050565b8035801515811461148857600080fd5b600082601f83011261152557600080fd5b61153483833560208501611413565b9392505050565b60006020828403121561154d57600080fd5b61153482611471565b6000806040838503121561156957600080fd5b61157283611471565b915061158060208401611471565b90509250929050565b600080600080600060a086880312156115a157600080fd5b6115aa86611471565b94506115b860208701611471565b9350604086013567ffffffffffffffff808211156115d557600080fd5b6115e189838a0161148d565b945060608801359150808211156115f757600080fd5b61160389838a0161148d565b9350608088013591508082111561161957600080fd5b5061162688828901611514565b9150509295509295909350565b600080600080600060a0868803121561164b57600080fd5b61165486611471565b945061166260208701611471565b93506040860135925060608601359150608086013567ffffffffffffffff81111561168c57600080fd5b61162688828901611514565b600080604083850312156116ab57600080fd5b6116b483611471565b915061158060208401611504565b600080604083850312156116d557600080fd5b6116de83611471565b946020939093013593505050565b60008060006060848603121561170157600080fd5b61170a84611471565b95602085013595506040909401359392505050565b6000806040838503121561173257600080fd5b823567ffffffffffffffff8082111561174a57600080fd5b818501915085601f83011261175e57600080fd5b8135602061176b82611bd4565b6040516117788282611c7b565b8381528281019150858301600585901b870184018b101561179857600080fd5b600096505b848710156117c2576117ae81611471565b83526001969096019591830191830161179d565b50965050860135925050808211156117d957600080fd5b506117e68582860161148d565b9150509250929050565b6000602080838503121561180357600080fd5b823567ffffffffffffffff8082111561181b57600080fd5b818501915085601f83011261182f57600080fd5b813561183a81611bd4565b604080516118488382611c7b565b8381528681019250858701600585901b870188018b101561186857600080fd5b60005b858110156118b65781358781111561188257600080fd5b8801603f81018d1361189357600080fd5b6118a38d8b830135878401611413565b865250938801939088019060010161186b565b50909a9950505050505050505050565b6000602082840312156118d857600080fd5b61153482611504565b6000602082840312156118f357600080fd5b813561153481611dab565b60006020828403121561191057600080fd5b815161153481611dab565b60006020828403121561192d57600080fd5b5035919050565b600081518084526020808501945080840160005b8381101561196457815187529582019590820190600101611948565b509495945050505050565b60008151808452611987816020860160208601611c10565b601f01601f19169290920160200192915050565b600082516119ad818460208701611c10565b9190910192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906119e390830186611934565b82810360608401526119f58186611934565b90508281036080840152611a09818561196f565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611a4f9083018461196f565b979650505050505050565b6020815260006115346020830184611934565b604081526000611a806040830185611934565b8281036020840152611a928185611934565b95945050505050565b602081526000611534602083018461196f565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b600067ffffffffffffffff821115611bee57611bee611cef565b5060051b60200190565b60008219821115611c0b57611c0b611cc3565b500190565b60005b83811015611c2b578181015183820152602001611c13565b83811115611c3a576000848401525b50505050565b600181811c90821680611c5457607f821691505b60208210811415611c7557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611ca157611ca1611cef565b6040525050565b6000600019821415611cbc57611cbc611cc3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611d1e5760046000803e5060005160e01c5b90565b600060443d1015611d2f5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611d5f57505050505090565b8285019150815181811115611d775750505050505090565b843d8701016020828501011115611d915750505050505090565b611da060208286010187611c7b565b509095945050505050565b6001600160e01b03198116811461094257600080fdfea26469706673582212209ac0bc0014e7363d4df995cde38902e11efe7b180e0077bd23ee4457be5ba8b864736f6c63430008070033697066733a2f2f516d557264393250367775464366566143526959426d586a55424a6d616341634e337066596e764e78625a5a544a

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012b5760003560e01c80634e1273f4116100ad578063a22cb46511610071578063a22cb46514610285578063de7fcb1d14610298578063e985e9c5146102a1578063f242432a146102dd578063f2fde38b146102f057600080fd5b80634e1273f41461022d578063715018a61461024d57806371b9b646146102555780638da5cb5b1461026257806395d89b411461027d57600080fd5b806310637d8a116100f457806310637d8a146101b6578063156e29f6146101e15780631d2e5a3a146101f45780632ccde4f6146102075780632eb2c2d61461021a57600080fd5b8062fdd58e1461013057806301ffc9a714610156578063059592161461017957806306fdde031461018e5780630e89341c146101a3575b600080fd5b61014361013e3660046116c2565b610303565b6040519081526020015b60405180910390f35b6101696101643660046118e1565b610399565b604051901515815260200161014d565b61018c6101873660046117f0565b6103eb565b005b610196610416565b60405161014d9190611a9b565b6101966101b136600461191b565b6104a4565b6101436101c43660046116c2565b600960209081526000928352604080842090915290825290205481565b61018c6101ef3660046116ec565b6104d5565b61018c6102023660046118c6565b61069f565b61019661021536600461191b565b6106ba565b61018c610228366004611589565b6106e5565b61024061023b36600461171f565b610731565b60405161014d9190611a5a565b61018c61085b565b6007546101699060ff1681565b6003546040516001600160a01b03909116815260200161014d565b61019661086f565b61018c610293366004611698565b61087c565b61014360085481565b6101696102af366004611556565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61018c6102eb366004611633565b610887565b61018c6102fe36600461153b565b6108cc565b60006001600160a01b0383166103735760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806103ca57506001600160e01b031982166303a24d0760e21b145b806103e557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6103f3610945565b6103ff600660006112b0565b80516104129060069060208401906112ce565b5050565b6004805461042390611c40565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90611c40565b801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b505050505081565b60606104af8261099f565b6040516020016104bf919061199b565b6040516020818303038152906040529050919050565b3332146105185760405162461bcd60e51b8152602060048201526011602482015270139bc81cdb585c9d0818dbdb9d1c9858dd607a1b604482015260640161036a565b60075460ff166105595760405162461bcd60e51b815260206004820152600c60248201526b135a5b9d0e8814185d5cd95960a21b604482015260640161036a565b3360009081526009602090815260408083208584529091529020546003116105c35760405162461bcd60e51b815260206004820152601c60248201527f596f752068617665206e6f206d696e74732072656d61696e696e672100000000604482015260640161036a565b600081116106065760405162461bcd60e51b815260206004820152601060248201526f4d696e74206174206c6561737420312160801b604482015260640161036a565b6008548111156106505760405162461bcd60e51b81526020600482015260156024820152744d6178206d696e742070657220747820697320312160581b604482015260640161036a565b61066b83838360405180602001604052806000815250610a4e565b33600090815260096020908152604080832085845290915281208054839290610695908490611bf8565b9091555050505050565b6106a7610945565b6007805460ff1916911515919091179055565b600681815481106106ca57600080fd5b90600052602060002001600091509050805461042390611c40565b6001600160a01b038516331480610701575061070185336102af565b61071d5760405162461bcd60e51b815260040161036a90611aae565b61072a8585858585610b71565b5050505050565b606081518351146107965760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b606482015260840161036a565b6000835167ffffffffffffffff8111156107b2576107b2611cef565b6040519080825280602002602001820160405280156107db578160200160208202803683370190505b50905060005b8451811015610853576108268582815181106107ff576107ff611cd9565b602002602001015185838151811061081957610819611cd9565b6020026020010151610303565b82828151811061083857610838611cd9565b602090810291909101015261084c81611ca8565b90506107e1565b509392505050565b610863610945565b61086d6000610d5c565b565b6005805461042390611c40565b610412338383610dae565b6001600160a01b0385163314806108a357506108a385336102af565b6108bf5760405162461bcd60e51b815260040161036a90611aae565b61072a8585858585610e8f565b6108d4610945565b6001600160a01b0381166109395760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161036a565b61094281610d5c565b50565b6003546001600160a01b0316331461086d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161036a565b6060600682815481106109b4576109b4611cd9565b9060005260206000200180546109c990611c40565b80601f01602080910402602001604051908101604052809291908181526020018280546109f590611c40565b8015610a425780601f10610a1757610100808354040283529160200191610a42565b820191906000526020600020905b815481529060010190602001808311610a2557829003601f168201915b50505050509050919050565b6001600160a01b038416610aae5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161036a565b336000610aba85610fc7565b90506000610ac785610fc7565b9050610ad883600089858589611012565b6000868152602081815260408083206001600160a01b038b16845290915281208054879290610b08908490611bf8565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610b688360008989898961107b565b50505050505050565b8151835114610bd35760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b606482015260840161036a565b6001600160a01b038416610bf95760405162461bcd60e51b815260040161036a90611b45565b33610c08818787878787611012565b60005b8451811015610cee576000858281518110610c2857610c28611cd9565b602002602001015190506000858381518110610c4657610c46611cd9565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610c965760405162461bcd60e51b815260040161036a90611b8a565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610cd3908490611bf8565b9250508190555050505080610ce790611ca8565b9050610c0b565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d3e929190611a6d565b60405180910390a4610d548187878787876111e6565b505050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610e225760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b606482015260840161036a565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416610eb55760405162461bcd60e51b815260040161036a90611b45565b336000610ec185610fc7565b90506000610ece85610fc7565b9050610ede838989858589611012565b6000868152602081815260408083206001600160a01b038c16845290915290205485811015610f1f5760405162461bcd60e51b815260040161036a90611b8a565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290610f5c908490611bf8565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610fbc848a8a8a8a8a61107b565b505050505050505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061100157611001611cd9565b602090810291909101015292915050565b6001600160a01b038416158061102f57506001600160a01b038516155b610d545760405162461bcd60e51b815260206004820152601760248201527f7468697320746f6b656e20697320736f756c626f756e64000000000000000000604482015260640161036a565b6001600160a01b0384163b15610d545760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906110bf9089908990889088908890600401611a15565b602060405180830381600087803b1580156110d957600080fd5b505af1925050508015611109575060408051601f3d908101601f19168201909252611106918101906118fe565b60015b6111b657611115611d05565b806308c379a0141561114f575061112a611d21565b806111355750611151565b8060405162461bcd60e51b815260040161036a9190611a9b565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b606482015260840161036a565b6001600160e01b0319811663f23a6e6160e01b14610b685760405162461bcd60e51b815260040161036a90611afd565b6001600160a01b0384163b15610d545760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061122a90899089908890889088906004016119b7565b602060405180830381600087803b15801561124457600080fd5b505af1925050508015611274575060408051601f3d908101601f19168201909252611271918101906118fe565b60015b61128057611115611d05565b6001600160e01b0319811663bc197c8160e01b14610b685760405162461bcd60e51b815260040161036a90611afd565b5080546000825590600052602060002090810190610942919061132b565b82805482825590600052602060002090810192821561131b579160200282015b8281111561131b578251805161130b918491602090910190611348565b50916020019190600101906112ee565b5061132792915061132b565b5090565b8082111561132757600061133f82826113c8565b5060010161132b565b82805461135490611c40565b90600052602060002090601f01602090048101928261137657600085556113bc565b82601f1061138f57805160ff19168380011785556113bc565b828001600101855582156113bc579182015b828111156113bc5782518255916020019190600101906113a1565b506113279291506113fe565b5080546113d490611c40565b6000825580601f106113e4575050565b601f01602090049060005260206000209081019061094291905b5b8082111561132757600081556001016113ff565b600067ffffffffffffffff83111561142d5761142d611cef565b604051611444601f8501601f191660200182611c7b565b80915083815284848401111561145957600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b038116811461148857600080fd5b919050565b600082601f83011261149e57600080fd5b813560206114ab82611bd4565b6040516114b88282611c7b565b8381528281019150858301600585901b870184018810156114d857600080fd5b60005b858110156114f7578135845292840192908401906001016114db565b5090979650505050505050565b8035801515811461148857600080fd5b600082601f83011261152557600080fd5b61153483833560208501611413565b9392505050565b60006020828403121561154d57600080fd5b61153482611471565b6000806040838503121561156957600080fd5b61157283611471565b915061158060208401611471565b90509250929050565b600080600080600060a086880312156115a157600080fd5b6115aa86611471565b94506115b860208701611471565b9350604086013567ffffffffffffffff808211156115d557600080fd5b6115e189838a0161148d565b945060608801359150808211156115f757600080fd5b61160389838a0161148d565b9350608088013591508082111561161957600080fd5b5061162688828901611514565b9150509295509295909350565b600080600080600060a0868803121561164b57600080fd5b61165486611471565b945061166260208701611471565b93506040860135925060608601359150608086013567ffffffffffffffff81111561168c57600080fd5b61162688828901611514565b600080604083850312156116ab57600080fd5b6116b483611471565b915061158060208401611504565b600080604083850312156116d557600080fd5b6116de83611471565b946020939093013593505050565b60008060006060848603121561170157600080fd5b61170a84611471565b95602085013595506040909401359392505050565b6000806040838503121561173257600080fd5b823567ffffffffffffffff8082111561174a57600080fd5b818501915085601f83011261175e57600080fd5b8135602061176b82611bd4565b6040516117788282611c7b565b8381528281019150858301600585901b870184018b101561179857600080fd5b600096505b848710156117c2576117ae81611471565b83526001969096019591830191830161179d565b50965050860135925050808211156117d957600080fd5b506117e68582860161148d565b9150509250929050565b6000602080838503121561180357600080fd5b823567ffffffffffffffff8082111561181b57600080fd5b818501915085601f83011261182f57600080fd5b813561183a81611bd4565b604080516118488382611c7b565b8381528681019250858701600585901b870188018b101561186857600080fd5b60005b858110156118b65781358781111561188257600080fd5b8801603f81018d1361189357600080fd5b6118a38d8b830135878401611413565b865250938801939088019060010161186b565b50909a9950505050505050505050565b6000602082840312156118d857600080fd5b61153482611504565b6000602082840312156118f357600080fd5b813561153481611dab565b60006020828403121561191057600080fd5b815161153481611dab565b60006020828403121561192d57600080fd5b5035919050565b600081518084526020808501945080840160005b8381101561196457815187529582019590820190600101611948565b509495945050505050565b60008151808452611987816020860160208601611c10565b601f01601f19169290920160200192915050565b600082516119ad818460208701611c10565b9190910192915050565b6001600160a01b0386811682528516602082015260a0604082018190526000906119e390830186611934565b82810360608401526119f58186611934565b90508281036080840152611a09818561196f565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611a4f9083018461196f565b979650505050505050565b6020815260006115346020830184611934565b604081526000611a806040830185611934565b8281036020840152611a928185611934565b95945050505050565b602081526000611534602083018461196f565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b600067ffffffffffffffff821115611bee57611bee611cef565b5060051b60200190565b60008219821115611c0b57611c0b611cc3565b500190565b60005b83811015611c2b578181015183820152602001611c13565b83811115611c3a576000848401525b50505050565b600181811c90821680611c5457607f821691505b60208210811415611c7557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff81118282101715611ca157611ca1611cef565b6040525050565b6000600019821415611cbc57611cbc611cc3565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115611d1e5760046000803e5060005160e01c5b90565b600060443d1015611d2f5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611d5f57505050505090565b8285019150815181811115611d775750505050505090565b843d8701016020828501011115611d915750505050505090565b611da060208286010187611c7b565b509095945050505050565b6001600160e01b03198116811461094257600080fdfea26469706673582212209ac0bc0014e7363d4df995cde38902e11efe7b180e0077bd23ee4457be5ba8b864736f6c63430008070033

Deployed Bytecode Sourcemap

41757:2244:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26156:230;;;;;;:::i;:::-;;:::i;:::-;;;18898:25:1;;;18886:2;18871:18;26156:230:0;;;;;;;;25179:310;;;;;;:::i;:::-;;:::i;:::-;;;11537:14:1;;11530:22;11512:41;;11500:2;11485:18;25179:310:0;11372:187:1;43771:121:0;;;;;;:::i;:::-;;:::i;:::-;;41814:18;;;:::i;:::-;;;;;;;:::i;43258:138::-;;;;;;:::i;:::-;;:::i;42102:63::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;42302:406;;;;;;:::i;:::-;;:::i;43657:86::-;;;;;;:::i;:::-;;:::i;41866:83::-;;;;;;:::i;:::-;;:::i;28100:439::-;;;;;;:::i;:::-;;:::i;26552:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5308:103::-;;;:::i;41956:30::-;;;;;;;;;4660:87;4733:6;;4660:87;;-1:-1:-1;;;;;4733:6:0;;;9178:51:1;;9166:2;9151:18;4660:87:0;9032:203:1;41839:20:0;;;:::i;27149:155::-;;;;;;:::i;:::-;;:::i;41993:31::-;;;;;;27376:168;;;;;;:::i;:::-;-1:-1:-1;;;;;27499:27:0;;;27475:4;27499:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;27376:168;27616:407;;;;;;:::i;:::-;;:::i;43439:210::-;;;;;;:::i;:::-;;:::i;26156:230::-;26242:7;-1:-1:-1;;;;;26270:21:0;;26262:76;;;;-1:-1:-1;;;26262:76:0;;14346:2:1;26262:76:0;;;14328:21:1;14385:2;14365:18;;;14358:30;14424:34;14404:18;;;14397:62;-1:-1:-1;;;14475:18:1;;;14468:40;14525:19;;26262:76:0;;;;;;;;;-1:-1:-1;26356:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;26356:22:0;;;;;;;;;;;;26156:230::o;25179:310::-;25281:4;-1:-1:-1;;;;;;25318:41:0;;-1:-1:-1;;;25318:41:0;;:110;;-1:-1:-1;;;;;;;25376:52:0;;-1:-1:-1;;;25376:52:0;25318:110;:163;;;-1:-1:-1;;;;;;;;;;16569:40:0;;;25445:36;25298:183;25179:310;-1:-1:-1;;25179:310:0:o;43771:121::-;4546:13;:11;:13::i;:::-;43844:14:::1;43851:7;;43844:14;:::i;:::-;43869:15:::0;;::::1;::::0;:7:::1;::::0;:15:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43771:121:::0;:::o;41814:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43258:138::-;43313:13;43370:16;43383:2;43370:12;:16::i;:::-;43353:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;43339:49;;43258:138;;;:::o;42302:406::-;43939:10;43953:9;43939:23;43931:53;;;;-1:-1:-1;;;43931:53:0;;14000:2:1;43931:53:0;;;13982:21:1;14039:2;14019:18;;;14012:30;-1:-1:-1;;;14058:18:1;;;14051:47;14115:18;;43931:53:0;13798:341:1;43931:53:0;42392:11:::1;::::0;::::1;;42384:36;;;::::0;-1:-1:-1;;;42384:36:0;;16285:2:1;42384:36:0::1;::::0;::::1;16267:21:1::0;16324:2;16304:18;;;16297:30;-1:-1:-1;;;16343:18:1;;;16336:42;16395:18;;42384:36:0::1;16083:336:1::0;42384:36:0::1;42448:10;42439:20;::::0;;;:8:::1;:20;::::0;;;;;;;:24;;;;;;;;;42466:1:::1;-1:-1:-1::0;42431:69:0::1;;;::::0;-1:-1:-1;;;42431:69:0;;13643:2:1;42431:69:0::1;::::0;::::1;13625:21:1::0;13682:2;13662:18;;;13655:30;13721;13701:18;;;13694:58;13769:18;;42431:69:0::1;13441:352:1::0;42431:69:0::1;42528:1;42519:6;:10;42511:39;;;::::0;-1:-1:-1;;;42511:39:0;;17798:2:1;42511:39:0::1;::::0;::::1;17780:21:1::0;17837:2;17817:18;;;17810:30;-1:-1:-1;;;17856:18:1;;;17849:46;17912:18;;42511:39:0::1;17596:340:1::0;42511:39:0::1;42579:12;;42569:6;:22;;42561:56;;;::::0;-1:-1:-1;;;42561:56:0;;14757:2:1;42561:56:0::1;::::0;::::1;14739:21:1::0;14796:2;14776:18;;;14769:30;-1:-1:-1;;;14815:18:1;;;14808:51;14876:18;;42561:56:0::1;14555:345:1::0;42561:56:0::1;42631:24;42637:2;42641;42645:6;42631:24;;;;;;;;;;;::::0;:5:::1;:24::i;:::-;42675:10;42666:20;::::0;;;:8:::1;:20;::::0;;;;;;;:24;;;;;;;;:34;;42694:6;;42666:20;:34:::1;::::0;42694:6;;42666:34:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;42302:406:0:o;43657:86::-;4546:13;:11;:13::i;:::-;43716:11:::1;:19:::0;;-1:-1:-1;;43716:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43657:86::o;41866:83::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;28100:439::-;-1:-1:-1;;;;;28333:20:0;;3291:10;28333:20;;:60;;-1:-1:-1;28357:36:0;28374:4;3291:10;27376:168;:::i;28357:36::-;28311:157;;;;-1:-1:-1;;;28311:157:0;;;;;;;:::i;:::-;28479:52;28502:4;28508:2;28512:3;28517:7;28526:4;28479:22;:52::i;:::-;28100:439;;;;;:::o;26552:524::-;26708:16;26769:3;:10;26750:8;:15;:29;26742:83;;;;-1:-1:-1;;;26742:83:0;;17388:2:1;26742:83:0;;;17370:21:1;17427:2;17407:18;;;17400:30;17466:34;17446:18;;;17439:62;-1:-1:-1;;;17517:18:1;;;17510:39;17566:19;;26742:83:0;17186:405:1;26742:83:0;26838:30;26885:8;:15;26871:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26871:30:0;;26838:63;;26919:9;26914:122;26938:8;:15;26934:1;:19;26914:122;;;26994:30;27004:8;27013:1;27004:11;;;;;;;;:::i;:::-;;;;;;;27017:3;27021:1;27017:6;;;;;;;;:::i;:::-;;;;;;;26994:9;:30::i;:::-;26975:13;26989:1;26975:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;26955:3;;;:::i;:::-;;;26914:122;;;-1:-1:-1;27055:13:0;26552:524;-1:-1:-1;;;26552:524:0:o;5308:103::-;4546:13;:11;:13::i;:::-;5373:30:::1;5400:1;5373:18;:30::i;:::-;5308:103::o:0;41839:20::-;;;;;;;:::i;27149:155::-;27244:52;3291:10;27277:8;27287;27244:18;:52::i;27616:407::-;-1:-1:-1;;;;;27824:20:0;;3291:10;27824:20;;:60;;-1:-1:-1;27848:36:0;27865:4;3291:10;27376:168;:::i;27848:36::-;27802:157;;;;-1:-1:-1;;;27802:157:0;;;;;;;:::i;:::-;27970:45;27988:4;27994:2;27998;28002:6;28010:4;27970:17;:45::i;43439:210::-;4546:13;:11;:13::i;:::-;-1:-1:-1;;;;;43537:22:0;::::1;43529:73;;;::::0;-1:-1:-1;;;43529:73:0;;13236:2:1;43529:73:0::1;::::0;::::1;13218:21:1::0;13275:2;13255:18;;;13248:30;13314:34;13294:18;;;13287:62;-1:-1:-1;;;13365:18:1;;;13358:36;13411:19;;43529:73:0::1;13034:402:1::0;43529:73:0::1;43613:28;43632:8;43613:18;:28::i;:::-;43439:210:::0;:::o;4825:132::-;4733:6;;-1:-1:-1;;;;;4733:6:0;3291:10;4889:23;4881:68;;;;-1:-1:-1;;;4881:68:0;;15924:2:1;4881:68:0;;;15906:21:1;;;15943:18;;;15936:30;16002:34;15982:18;;;15975:62;16054:18;;4881:68:0;15722:356:1;43093:115:0;43151:13;43188:7;43196:3;43188:12;;;;;;;;:::i;:::-;;;;;;;;43181:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43093:115;;;:::o;32799:729::-;-1:-1:-1;;;;;32952:16:0;;32944:62;;;;-1:-1:-1;;;32944:62:0;;18552:2:1;32944:62:0;;;18534:21:1;18591:2;18571:18;;;18564:30;18630:34;18610:18;;;18603:62;-1:-1:-1;;;18681:18:1;;;18674:31;18722:19;;32944:62:0;18350:397:1;32944:62:0;3291:10;33019:16;33084:21;33102:2;33084:17;:21::i;:::-;33061:44;;33116:24;33143:25;33161:6;33143:17;:25::i;:::-;33116:52;;33181:66;33202:8;33220:1;33224:2;33228:3;33233:7;33242:4;33181:20;:66::i;:::-;33260:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33260:17:0;;;;;;;;;:27;;33281:6;;33260:9;:27;;33281:6;;33260:27;:::i;:::-;;;;-1:-1:-1;;33303:52:0;;;19108:25:1;;;19164:2;19149:18;;19142:34;;;-1:-1:-1;;;;;33303:52:0;;;;33336:1;;33303:52;;;;;;19081:18:1;33303:52:0;;;;;;;33446:74;33477:8;33495:1;33499:2;33503;33507:6;33515:4;33446:30;:74::i;:::-;32933:595;;;32799:729;;;;:::o;30335:1146::-;30562:7;:14;30548:3;:10;:28;30540:81;;;;-1:-1:-1;;;30540:81:0;;18143:2:1;30540:81:0;;;18125:21:1;18182:2;18162:18;;;18155:30;18221:34;18201:18;;;18194:62;-1:-1:-1;;;18272:18:1;;;18265:38;18320:19;;30540:81:0;17941:404:1;30540:81:0;-1:-1:-1;;;;;30640:16:0;;30632:66;;;;-1:-1:-1;;;30632:66:0;;;;;;;:::i;:::-;3291:10;30755:60;3291:10;30786:4;30792:2;30796:3;30801:7;30810:4;30755:20;:60::i;:::-;30833:9;30828:421;30852:3;:10;30848:1;:14;30828:421;;;30884:10;30897:3;30901:1;30897:6;;;;;;;;:::i;:::-;;;;;;;30884:19;;30918:14;30935:7;30943:1;30935:10;;;;;;;;:::i;:::-;;;;;;;;;;;;30962:19;30984:13;;;;;;;;;;-1:-1:-1;;;;;30984:19:0;;;;;;;;;;;;30935:10;;-1:-1:-1;31026:21:0;;;;31018:76;;;;-1:-1:-1;;;31018:76:0;;;;;;;:::i;:::-;31138:9;:13;;;;;;;;;;;-1:-1:-1;;;;;31138:19:0;;;;;;;;;;31160:20;;;31138:42;;31210:17;;;;;;;:27;;31160:20;;31138:9;31210:27;;31160:20;;31210:27;:::i;:::-;;;;;;;;30869:380;;;30864:3;;;;:::i;:::-;;;30828:421;;;;31296:2;-1:-1:-1;;;;;31266:47:0;31290:4;-1:-1:-1;;;;;31266:47:0;31280:8;-1:-1:-1;;;;;31266:47:0;;31300:3;31305:7;31266:47;;;;;;;:::i;:::-;;;;;;;;31398:75;31434:8;31444:4;31450:2;31454:3;31459:7;31468:4;31398:35;:75::i;:::-;30529:952;30335:1146;;;;;:::o;5927:191::-;6020:6;;;-1:-1:-1;;;;;6037:17:0;;;-1:-1:-1;;;;;;6037:17:0;;;;;;;6070:40;;6020:6;;;6037:17;6020:6;;6070:40;;6001:16;;6070:40;5990:128;5927:191;:::o;37212:331::-;37367:8;-1:-1:-1;;;;;37358:17:0;:5;-1:-1:-1;;;;;37358:17:0;;;37350:71;;;;-1:-1:-1;;;37350:71:0;;16978:2:1;37350:71:0;;;16960:21:1;17017:2;16997:18;;;16990:30;17056:34;17036:18;;;17029:62;-1:-1:-1;;;17107:18:1;;;17100:39;17156:19;;37350:71:0;16776:405:1;37350:71:0;-1:-1:-1;;;;;37432:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37432:46:0;;;;;;;;;;37494:41;;11512::1;;;37494::0;;11485:18:1;37494:41:0;;;;;;;37212:331;;;:::o;29003:974::-;-1:-1:-1;;;;;29191:16:0;;29183:66;;;;-1:-1:-1;;;29183:66:0;;;;;;;:::i;:::-;3291:10;29262:16;29327:21;29345:2;29327:17;:21::i;:::-;29304:44;;29359:24;29386:25;29404:6;29386:17;:25::i;:::-;29359:52;;29424:60;29445:8;29455:4;29461:2;29465:3;29470:7;29479:4;29424:20;:60::i;:::-;29497:19;29519:13;;;;;;;;;;;-1:-1:-1;;;;;29519:19:0;;;;;;;;;;29557:21;;;;29549:76;;;;-1:-1:-1;;;29549:76:0;;;;;;;:::i;:::-;29661:9;:13;;;;;;;;;;;-1:-1:-1;;;;;29661:19:0;;;;;;;;;;29683:20;;;29661:42;;29725:17;;;;;;;:27;;29683:20;;29661:9;29725:27;;29683:20;;29725:27;:::i;:::-;;;;-1:-1:-1;;29770:46:0;;;19108:25:1;;;19164:2;19149:18;;19142:34;;;-1:-1:-1;;;;;29770:46:0;;;;;;;;;;;;;;19081:18:1;29770:46:0;;;;;;;29901:68;29932:8;29942:4;29948:2;29952;29956:6;29964:4;29901:30;:68::i;:::-;29172:805;;;;29003:974;;;;;:::o;41478:198::-;41598:16;;;41612:1;41598:16;;;;;;;;;41544;;41573:22;;41598:16;;;;;;;;;;;;-1:-1:-1;41598:16:0;41573:41;;41636:7;41625:5;41631:1;41625:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;41663:5;41478:198;-1:-1:-1;;41478:198:0:o;42716:369::-;-1:-1:-1;;;;;43012:16:0;;;;:38;;-1:-1:-1;;;;;;43032:18:0;;;43012:38;43004:73;;;;-1:-1:-1;;;43004:73:0;;16626:2:1;43004:73:0;;;16608:21:1;16665:2;16645:18;;;16638:30;16704:25;16684:18;;;16677:53;16747:18;;43004:73:0;16424:347:1;39905:744:0;-1:-1:-1;;;;;40120:13:0;;7653:19;:23;40116:526;;40156:72;;-1:-1:-1;;;40156:72:0;;-1:-1:-1;;;;;40156:38:0;;;;;:72;;40195:8;;40205:4;;40211:2;;40215:6;;40223:4;;40156:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40156:72:0;;;;;;;;-1:-1:-1;;40156:72:0;;;;;;;;;;;;:::i;:::-;;;40152:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;40504:6;40497:14;;-1:-1:-1;;;40497:14:0;;;;;;;;:::i;40152:479::-;;;40553:62;;-1:-1:-1;;;40553:62:0;;11990:2:1;40553:62:0;;;11972:21:1;12029:2;12009:18;;;12002:30;12068:34;12048:18;;;12041:62;-1:-1:-1;;;12119:18:1;;;12112:50;12179:19;;40553:62:0;11788:416:1;40152:479:0;-1:-1:-1;;;;;;40278:55:0;;-1:-1:-1;;;40278:55:0;40274:154;;40358:50;;-1:-1:-1;;;40358:50:0;;;;;;;:::i;40657:813::-;-1:-1:-1;;;;;40897:13:0;;7653:19;:23;40893:570;;40933:79;;-1:-1:-1;;;40933:79:0;;-1:-1:-1;;;;;40933:43:0;;;;;:79;;40977:8;;40987:4;;40993:3;;40998:7;;41007:4;;40933:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40933:79:0;;;;;;;;-1:-1:-1;;40933:79:0;;;;;;;;;;;;:::i;:::-;;;40929:523;;;;:::i;:::-;-1:-1:-1;;;;;;41094:60:0;;-1:-1:-1;;;41094:60:0;41090:159;;41179:50;;-1:-1:-1;;;41179:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:160::-;1470:20;;1526:13;;1519:21;1509:32;;1499:60;;1555:1;1552;1545:12;1570:220;1612:5;1665:3;1658:4;1650:6;1646:17;1642:27;1632:55;;1683:1;1680;1673:12;1632:55;1705:79;1780:3;1771:6;1758:20;1751:4;1743:6;1739:17;1705:79;:::i;:::-;1696:88;1570:220;-1:-1:-1;;;1570:220:1:o;1795:186::-;1854:6;1907:2;1895:9;1886:7;1882:23;1878:32;1875:52;;;1923:1;1920;1913:12;1875:52;1946:29;1965:9;1946:29;:::i;1986:260::-;2054:6;2062;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2154:29;2173:9;2154:29;:::i;:::-;2144:39;;2202:38;2236:2;2225:9;2221:18;2202:38;:::i;:::-;2192:48;;1986:260;;;;;:::o;2251:943::-;2405:6;2413;2421;2429;2437;2490:3;2478:9;2469:7;2465:23;2461:33;2458:53;;;2507:1;2504;2497:12;2458:53;2530:29;2549:9;2530:29;:::i;:::-;2520:39;;2578:38;2612:2;2601:9;2597:18;2578:38;:::i;:::-;2568:48;;2667:2;2656:9;2652:18;2639:32;2690:18;2731:2;2723:6;2720:14;2717:34;;;2747:1;2744;2737:12;2717:34;2770:61;2823:7;2814:6;2803:9;2799:22;2770:61;:::i;:::-;2760:71;;2884:2;2873:9;2869:18;2856:32;2840:48;;2913:2;2903:8;2900:16;2897:36;;;2929:1;2926;2919:12;2897:36;2952:63;3007:7;2996:8;2985:9;2981:24;2952:63;:::i;:::-;2942:73;;3068:3;3057:9;3053:19;3040:33;3024:49;;3098:2;3088:8;3085:16;3082:36;;;3114:1;3111;3104:12;3082:36;;3137:51;3180:7;3169:8;3158:9;3154:24;3137:51;:::i;:::-;3127:61;;;2251:943;;;;;;;;:::o;3199:606::-;3303:6;3311;3319;3327;3335;3388:3;3376:9;3367:7;3363:23;3359:33;3356:53;;;3405:1;3402;3395:12;3356:53;3428:29;3447:9;3428:29;:::i;:::-;3418:39;;3476:38;3510:2;3499:9;3495:18;3476:38;:::i;:::-;3466:48;;3561:2;3550:9;3546:18;3533:32;3523:42;;3612:2;3601:9;3597:18;3584:32;3574:42;;3667:3;3656:9;3652:19;3639:33;3695:18;3687:6;3684:30;3681:50;;;3727:1;3724;3717:12;3681:50;3750:49;3791:7;3782:6;3771:9;3767:22;3750:49;:::i;3810:254::-;3875:6;3883;3936:2;3924:9;3915:7;3911:23;3907:32;3904:52;;;3952:1;3949;3942:12;3904:52;3975:29;3994:9;3975:29;:::i;:::-;3965:39;;4023:35;4054:2;4043:9;4039:18;4023:35;:::i;4069:254::-;4137:6;4145;4198:2;4186:9;4177:7;4173:23;4169:32;4166:52;;;4214:1;4211;4204:12;4166:52;4237:29;4256:9;4237:29;:::i;:::-;4227:39;4313:2;4298:18;;;;4285:32;;-1:-1:-1;;;4069:254:1:o;4328:322::-;4405:6;4413;4421;4474:2;4462:9;4453:7;4449:23;4445:32;4442:52;;;4490:1;4487;4480:12;4442:52;4513:29;4532:9;4513:29;:::i;:::-;4503:39;4589:2;4574:18;;4561:32;;-1:-1:-1;4640:2:1;4625:18;;;4612:32;;4328:322;-1:-1:-1;;;4328:322:1:o;4655:1219::-;4773:6;4781;4834:2;4822:9;4813:7;4809:23;4805:32;4802:52;;;4850:1;4847;4840:12;4802:52;4890:9;4877:23;4919:18;4960:2;4952:6;4949:14;4946:34;;;4976:1;4973;4966:12;4946:34;5014:6;5003:9;4999:22;4989:32;;5059:7;5052:4;5048:2;5044:13;5040:27;5030:55;;5081:1;5078;5071:12;5030:55;5117:2;5104:16;5139:4;5162:43;5202:2;5162:43;:::i;:::-;5234:2;5228:9;5246:31;5274:2;5266:6;5246:31;:::i;:::-;5312:18;;;5346:15;;;;-1:-1:-1;5381:11:1;;;5423:1;5419:10;;;5411:19;;5407:28;;5404:41;-1:-1:-1;5401:61:1;;;5458:1;5455;5448:12;5401:61;5480:1;5471:10;;5490:169;5504:2;5501:1;5498:9;5490:169;;;5561:23;5580:3;5561:23;:::i;:::-;5549:36;;5522:1;5515:9;;;;;5605:12;;;;5637;;5490:169;;;-1:-1:-1;5678:6:1;-1:-1:-1;;5722:18:1;;5709:32;;-1:-1:-1;;5753:16:1;;;5750:36;;;5782:1;5779;5772:12;5750:36;;5805:63;5860:7;5849:8;5838:9;5834:24;5805:63;:::i;:::-;5795:73;;;4655:1219;;;;;:::o;5879:1291::-;5973:6;6004:2;6047;6035:9;6026:7;6022:23;6018:32;6015:52;;;6063:1;6060;6053:12;6015:52;6103:9;6090:23;6132:18;6173:2;6165:6;6162:14;6159:34;;;6189:1;6186;6179:12;6159:34;6227:6;6216:9;6212:22;6202:32;;6272:7;6265:4;6261:2;6257:13;6253:27;6243:55;;6294:1;6291;6284:12;6243:55;6330:2;6317:16;6352:43;6392:2;6352:43;:::i;:::-;6414:2;6445;6439:9;6457:31;6485:2;6477:6;6457:31;:::i;:::-;6523:18;;;6557:15;;;;-1:-1:-1;6592:11:1;;;6634:1;6630:10;;;6622:19;;6618:28;;6615:41;-1:-1:-1;6612:61:1;;;6669:1;6666;6659:12;6612:61;6691:1;6701:438;6715:2;6712:1;6709:9;6701:438;;;6792:3;6779:17;6828:2;6815:11;6812:19;6809:39;;;6844:1;6841;6834:12;6809:39;6871:20;;6926:2;6918:11;;6914:25;-1:-1:-1;6904:53:1;;6953:1;6950;6943:12;6904:53;6982:82;7056:7;7050:2;7046;7042:11;7029:25;7024:2;7020;7016:11;6982:82;:::i;:::-;6970:95;;-1:-1:-1;7085:12:1;;;;7117;;;;6733:1;6726:9;6701:438;;;-1:-1:-1;7158:6:1;;5879:1291;-1:-1:-1;;;;;;;;;;5879:1291:1:o;7175:180::-;7231:6;7284:2;7272:9;7263:7;7259:23;7255:32;7252:52;;;7300:1;7297;7290:12;7252:52;7323:26;7339:9;7323:26;:::i;7360:245::-;7418:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:52;;;7487:1;7484;7477:12;7439:52;7526:9;7513:23;7545:30;7569:5;7545:30;:::i;7610:249::-;7679:6;7732:2;7720:9;7711:7;7707:23;7703:32;7700:52;;;7748:1;7745;7738:12;7700:52;7780:9;7774:16;7799:30;7823:5;7799:30;:::i;7864:180::-;7923:6;7976:2;7964:9;7955:7;7951:23;7947:32;7944:52;;;7992:1;7989;7982:12;7944:52;-1:-1:-1;8015:23:1;;7864:180;-1:-1:-1;7864:180:1:o;8049:435::-;8102:3;8140:5;8134:12;8167:6;8162:3;8155:19;8193:4;8222:2;8217:3;8213:12;8206:19;;8259:2;8252:5;8248:14;8280:1;8290:169;8304:6;8301:1;8298:13;8290:169;;;8365:13;;8353:26;;8399:12;;;;8434:15;;;;8326:1;8319:9;8290:169;;;-1:-1:-1;8475:3:1;;8049:435;-1:-1:-1;;;;;8049:435:1:o;8489:257::-;8530:3;8568:5;8562:12;8595:6;8590:3;8583:19;8611:63;8667:6;8660:4;8655:3;8651:14;8644:4;8637:5;8633:16;8611:63;:::i;:::-;8728:2;8707:15;-1:-1:-1;;8703:29:1;8694:39;;;;8735:4;8690:50;;8489:257;-1:-1:-1;;8489:257:1:o;8751:276::-;8882:3;8920:6;8914:13;8936:53;8982:6;8977:3;8970:4;8962:6;8958:17;8936:53;:::i;:::-;9005:16;;;;;8751:276;-1:-1:-1;;8751:276:1:o;9240:826::-;-1:-1:-1;;;;;9637:15:1;;;9619:34;;9689:15;;9684:2;9669:18;;9662:43;9599:3;9736:2;9721:18;;9714:31;;;9562:4;;9768:57;;9805:19;;9797:6;9768:57;:::i;:::-;9873:9;9865:6;9861:22;9856:2;9845:9;9841:18;9834:50;9907:44;9944:6;9936;9907:44;:::i;:::-;9893:58;;10000:9;9992:6;9988:22;9982:3;9971:9;9967:19;9960:51;10028:32;10053:6;10045;10028:32;:::i;:::-;10020:40;9240:826;-1:-1:-1;;;;;;;;9240:826:1:o;10071:560::-;-1:-1:-1;;;;;10368:15:1;;;10350:34;;10420:15;;10415:2;10400:18;;10393:43;10467:2;10452:18;;10445:34;;;10510:2;10495:18;;10488:34;;;10330:3;10553;10538:19;;10531:32;;;10293:4;;10580:45;;10605:19;;10597:6;10580:45;:::i;:::-;10572:53;10071:560;-1:-1:-1;;;;;;;10071:560:1:o;10636:261::-;10815:2;10804:9;10797:21;10778:4;10835:56;10887:2;10876:9;10872:18;10864:6;10835:56;:::i;10902:465::-;11159:2;11148:9;11141:21;11122:4;11185:56;11237:2;11226:9;11222:18;11214:6;11185:56;:::i;:::-;11289:9;11281:6;11277:22;11272:2;11261:9;11257:18;11250:50;11317:44;11354:6;11346;11317:44;:::i;:::-;11309:52;10902:465;-1:-1:-1;;;;;10902:465:1:o;11564:219::-;11713:2;11702:9;11695:21;11676:4;11733:44;11773:2;11762:9;11758:18;11750:6;11733:44;:::i;12209:411::-;12411:2;12393:21;;;12450:2;12430:18;;;12423:30;12489:34;12484:2;12469:18;;12462:62;-1:-1:-1;;;12555:2:1;12540:18;;12533:45;12610:3;12595:19;;12209:411::o;12625:404::-;12827:2;12809:21;;;12866:2;12846:18;;;12839:30;12905:34;12900:2;12885:18;;12878:62;-1:-1:-1;;;12971:2:1;12956:18;;12949:38;13019:3;13004:19;;12625:404::o;14905:401::-;15107:2;15089:21;;;15146:2;15126:18;;;15119:30;15185:34;15180:2;15165:18;;15158:62;-1:-1:-1;;;15251:2:1;15236:18;;15229:35;15296:3;15281:19;;14905:401::o;15311:406::-;15513:2;15495:21;;;15552:2;15532:18;;;15525:30;15591:34;15586:2;15571:18;;15564:62;-1:-1:-1;;;15657:2:1;15642:18;;15635:40;15707:3;15692:19;;15311:406::o;19187:183::-;19247:4;19280:18;19272:6;19269:30;19266:56;;;19302:18;;:::i;:::-;-1:-1:-1;19347:1:1;19343:14;19359:4;19339:25;;19187:183::o;19375:128::-;19415:3;19446:1;19442:6;19439:1;19436:13;19433:39;;;19452:18;;:::i;:::-;-1:-1:-1;19488:9:1;;19375:128::o;19508:258::-;19580:1;19590:113;19604:6;19601:1;19598:13;19590:113;;;19680:11;;;19674:18;19661:11;;;19654:39;19626:2;19619:10;19590:113;;;19721:6;19718:1;19715:13;19712:48;;;19756:1;19747:6;19742:3;19738:16;19731:27;19712:48;;19508:258;;;:::o;19771:380::-;19850:1;19846:12;;;;19893;;;19914:61;;19968:4;19960:6;19956:17;19946:27;;19914:61;20021:2;20013:6;20010:14;19990:18;19987:38;19984:161;;;20067:10;20062:3;20058:20;20055:1;20048:31;20102:4;20099:1;20092:15;20130:4;20127:1;20120:15;19984:161;;19771:380;;;:::o;20156:249::-;20266:2;20247:13;;-1:-1:-1;;20243:27:1;20231:40;;20301:18;20286:34;;20322:22;;;20283:62;20280:88;;;20348:18;;:::i;:::-;20384:2;20377:22;-1:-1:-1;;20156:249:1:o;20410:135::-;20449:3;-1:-1:-1;;20470:17:1;;20467:43;;;20490:18;;:::i;:::-;-1:-1:-1;20537:1:1;20526:13;;20410:135::o;20550:127::-;20611:10;20606:3;20602:20;20599:1;20592:31;20642:4;20639:1;20632:15;20666:4;20663:1;20656:15;20682:127;20743:10;20738:3;20734:20;20731:1;20724:31;20774:4;20771:1;20764:15;20798:4;20795:1;20788:15;20814:127;20875:10;20870:3;20866:20;20863:1;20856:31;20906:4;20903:1;20896:15;20930:4;20927:1;20920:15;20946:179;20981:3;21023:1;21005:16;21002:23;20999:120;;;21069:1;21066;21063;21048:23;-1:-1:-1;21106:1:1;21100:8;21095:3;21091:18;20999:120;20946:179;:::o;21130:671::-;21169:3;21211:4;21193:16;21190:26;21187:39;;;21130:671;:::o;21187:39::-;21253:2;21247:9;-1:-1:-1;;21318:16:1;21314:25;;21311:1;21247:9;21290:50;21369:4;21363:11;21393:16;21428:18;21499:2;21492:4;21484:6;21480:17;21477:25;21472:2;21464:6;21461:14;21458:45;21455:58;;;21506:5;;;;;21130:671;:::o;21455:58::-;21543:6;21537:4;21533:17;21522:28;;21579:3;21573:10;21606:2;21598:6;21595:14;21592:27;;;21612:5;;;;;;21130:671;:::o;21592:27::-;21696:2;21677:16;21671:4;21667:27;21663:36;21656:4;21647:6;21642:3;21638:16;21634:27;21631:69;21628:82;;;21703:5;;;;;;21130:671;:::o;21628:82::-;21719:57;21770:4;21761:6;21753;21749:19;21745:30;21739:4;21719:57;:::i;:::-;-1:-1:-1;21792:3:1;;21130:671;-1:-1:-1;;;;;21130:671:1:o;21806:131::-;-1:-1:-1;;;;;;21880:32:1;;21870:43;;21860:71;;21927:1;21924;21917:12

Swarm Source

ipfs://9ac0bc0014e7363d4df995cde38902e11efe7b180e0077bd23ee4457be5ba8b8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.