ETH Price: $3,099.07 (-3.42%)
Gas: 7 Gwei

Token

 

Overview

Max Total Supply

10,000

Holders

9,497

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xc623483a440A6Fb5C0D41f8E30a9F3dF49a237Ad
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:
AMOEAUniversePassport

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-12
*/

/*
    AMOEA Universe Passport
*/
pragma solidity 0.8.10;

/**
 * @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);
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev _Available since v3.1._
 */
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId);
    }
}


/**
 * @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);
}

/**
 * @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
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {_setURI}.
     */
    constructor() {
        
    }

    /**
     * @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 tokenId) public view virtual override returns (string memory) {
        return _tokenURIs[tokenId];
    }

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

        return array;
    }
}

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

contract AMOEAUniversePassport is ERC1155, Ownable, ReentrancyGuard
{
    //Minting limit
    mapping(uint256 => uint256) private _mintLimit;

    //Minting tokenid
    uint16 MINTING_TOKEN_ID = 1;

    //Record amout of tokenid
    mapping(uint16 => uint16) private _tokenCount;

    //Record the number of address mint
    mapping(address => uint16) private _mintCount;

    //Limit the number of address mint
    uint16 _mintLimitForAddress = 1;

    event Mint(address indexed user, uint256 indexed tokenId, uint256 amount);

    constructor() ERC1155(){
       _setURI(MINTING_TOKEN_ID, "https://cdn.amoea.io/nft/amoea-universe-passport/TypeA/passport-1155.json");
       _mintLimit[MINTING_TOKEN_ID] = 10000;
    }

    function setNowMintTokenID(uint16 mintTokenId) public onlyOwner
    {
        MINTING_TOKEN_ID = mintTokenId;
    }

    function setNowMintTokenMintLimit(uint16 tokenId, uint16 mintLimit) public onlyOwner
    {
        _mintLimit[tokenId] = mintLimit;
    }

    function setURI(uint16 tokenId, string memory newuri) public onlyOwner
    {
        _setURI(tokenId, newuri);
    }

    function getTotalSupplyByTokenId(uint16 tokenId) public view returns (uint256)
    {
        return _tokenCount[tokenId];
    }

    function getMintLimitByTokenId(uint16 tokenId) public view returns (uint256)
    {
        return _mintLimit[tokenId];
    }

    function getMintLimitForAddress() public view returns (uint256)
    {
        return _mintLimitForAddress;
    }

    function getTotalSupplyByAddress(address addr) public view returns (uint16)
    {
        return _mintCount[addr];
    }

    function setMintLimit(uint16 mintLimit) public onlyOwner
    {
        _mintLimitForAddress = mintLimit;
    }

    function multiMint(uint16 tokenId, uint16 count) public onlyOwner
    {
        address to = _msgSender();
        _tokenCount[tokenId] += count;
        _mint(to, tokenId, count, "");

        emit Mint(to, tokenId, count);
    }

    function freeMint() public nonReentrant
    {
        require(_mintCount[_msgSender()] < _mintLimitForAddress, "Too many mint");
        require(_tokenCount[MINTING_TOKEN_ID] < _mintLimit[MINTING_TOKEN_ID], "Sold out");
        
        address to = _msgSender();
        _mintCount[to] += 1;
        _tokenCount[MINTING_TOKEN_ID] += 1;
        _mint(to, MINTING_TOKEN_ID, 1, "");

        emit Mint(to, MINTING_TOKEN_ID, 1);
    }
}

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":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","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":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"getMintLimitByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintLimitForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getTotalSupplyByAddress","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"getTotalSupplyByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"},{"internalType":"uint16","name":"count","type":"uint16"}],"name":"multiMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"mintLimit","type":"uint16"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"mintTokenId","type":"uint16"}],"name":"setNowMintTokenID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"},{"internalType":"uint16","name":"mintLimit","type":"uint16"}],"name":"setNowMintTokenMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"tokenId","type":"uint16"},{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405260068054600161ffff1991821681179092556009805490911690911790553480156200002f57600080fd5b506200003b336200008d565b6001600455600654604080516080810190915260498082526200006d9261ffff16919062001f8a6020830139620000df565b60065461ffff1660009081526005602052604090206127109055620001e8565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008281526002602090815260409091208251620001009284019062000105565b505050565b8280546200011390620001ab565b90600052602060002090601f01602090048101928262000137576000855562000182565b82601f106200015257805160ff191683800117855562000182565b8280016001018555821562000182579182015b828111156200018257825182559160200191906001019062000165565b506200019092915062000194565b5090565b5b8082111562000190576000815560010162000195565b600181811c90821680620001c057607f821691505b60208210811415620001e257634e487b7160e01b600052602260045260246000fd5b50919050565b611d9280620001f86000396000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c80635b70ea9f116100b8578063a44a1b961161007c578063a44a1b96146102d4578063b53be8f9146102e7578063d5fe0114146102fa578063e985e9c51461030d578063f242432a14610349578063f2fde38b1461035c57600080fd5b80635b70ea9f146102725780635e9cd9181461027a578063715018a61461029e5780638da5cb5b146102a6578063a22cb465146102c157600080fd5b80633aa49eb6116100ff5780633aa49eb6146101c557806344203e02146101d85780634d8d0488146101ff5780634e1273f41461023f5780635812a1f61461025f57600080fd5b8062fdd58e1461013b57806301ffc9a714610161578063036fa39d146101845780630e89341c146101905780632eb2c2d6146101b0575b600080fd5b61014e610149366004611468565b61036f565b6040519081526020015b60405180910390f35b61017461016f3660046114a8565b610406565b6040519015158152602001610158565b60095461ffff1661014e565b6101a361019e3660046114cc565b610458565b6040516101589190611532565b6101c36101be36600461169b565b6104fa565b005b6101c36101d3366004611757565b610591565b61014e6101e6366004611757565b61ffff9081166000908152600760205260409020541690565b61022c61020d366004611772565b6001600160a01b031660009081526008602052604090205461ffff1690565b60405161ffff9091168152602001610158565b61025261024d36600461178d565b6105d3565b6040516101589190611893565b6101c361026d3660046118a6565b6106fd565b6101c3610741565b61014e610288366004611757565b61ffff1660009081526005602052604090205490565b6101c3610951565b6003546040516001600160a01b039091168152602001610158565b6101c36102cf3660046118d9565b610987565b6101c36102e2366004611915565b610a5e565b6101c36102f53660046118a6565b610a9a565b6101c3610308366004611757565b610b73565b61017461031b36600461196d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101c3610357366004611997565b610bb5565b6101c361036a366004611772565b610c3c565b60006001600160a01b0383166103e05760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061043757506001600160e01b031982166303a24d0760e21b145b8061045257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000818152600260205260409020805460609190610475906119fc565b80601f01602080910402602001604051908101604052809291908181526020018280546104a1906119fc565b80156104ee5780601f106104c3576101008083540402835291602001916104ee565b820191906000526020600020905b8154815290600101906020018083116104d157829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105165750610516853361031b565b61057d5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016103d7565b61058a8585858585610cd7565b5050505050565b6003546001600160a01b031633146105bb5760405162461bcd60e51b81526004016103d790611a37565b6006805461ffff191661ffff92909216919091179055565b606081518351146106385760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016103d7565b6000835167ffffffffffffffff81111561065457610654611545565b60405190808252806020026020018201604052801561067d578160200160208202803683370190505b50905060005b84518110156106f5576106c88582815181106106a1576106a1611a6c565b60200260200101518583815181106106bb576106bb611a6c565b602002602001015161036f565b8282815181106106da576106da611a6c565b60209081029190910101526106ee81611a98565b9050610683565b509392505050565b6003546001600160a01b031633146107275760405162461bcd60e51b81526004016103d790611a37565b61ffff918216600090815260056020526040902091169055565b600260045414156107945760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103d7565b60026004556009543360009081526008602052604090205461ffff9182169116106107f15760405162461bcd60e51b815260206004820152600d60248201526c151bdbc81b585b9e481b5a5b9d609a1b60448201526064016103d7565b60065461ffff908116600090815260056020908152604080832054600790925290912054909116106108505760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b60448201526064016103d7565b33600081815260086020526040812080546001929061087490849061ffff16611ab3565b82546101009290920a61ffff8181021990931691831602179091556006548116600090815260076020526040812080546001945090926108b691859116611ab3565b92506101000a81548161ffff021916908361ffff16021790555061090081600660009054906101000a900461ffff1661ffff16600160405180602001604052806000815250610eb4565b6006546040516001815261ffff909116906001600160a01b038316907f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f9060200160405180910390a3506001600455565b6003546001600160a01b0316331461097b5760405162461bcd60e51b81526004016103d790611a37565b6109856000610fbe565b565b336001600160a01b03831614156109f25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016103d7565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6003546001600160a01b03163314610a885760405162461bcd60e51b81526004016103d790611a37565b610a968261ffff1682611010565b5050565b6003546001600160a01b03163314610ac45760405162461bcd60e51b81526004016103d790611a37565b61ffff828116600090815260076020526040812080543393859391610aeb91859116611ab3565b92506101000a81548161ffff021916908361ffff160217905550610b28818461ffff168461ffff1660405180602001604052806000815250610eb4565b60405161ffff83811682528416906001600160a01b038316907f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f9060200160405180910390a3505050565b6003546001600160a01b03163314610b9d5760405162461bcd60e51b81526004016103d790611a37565b6009805461ffff191661ffff92909216919091179055565b6001600160a01b038516331480610bd15750610bd1853361031b565b610c2f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016103d7565b61058a8585858585611034565b6003546001600160a01b03163314610c665760405162461bcd60e51b81526004016103d790611a37565b6001600160a01b038116610ccb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d7565b610cd481610fbe565b50565b8151835114610d395760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016103d7565b6001600160a01b038416610d5f5760405162461bcd60e51b81526004016103d790611ad9565b3360005b8451811015610e46576000858281518110610d8057610d80611a6c565b602002602001015190506000858381518110610d9e57610d9e611a6c565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610dee5760405162461bcd60e51b81526004016103d790611b1e565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610e2b908490611b68565b9250508190555050505080610e3f90611a98565b9050610d63565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610e96929190611b80565b60405180910390a4610eac818787878787611151565b505050505050565b6001600160a01b038416610f145760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016103d7565b33610f2e81600087610f25886112ad565b61058a886112ad565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610f5e908490611b68565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461058a816000878787876112f8565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000828152600260209081526040909120825161102f928401906113b3565b505050565b6001600160a01b03841661105a5760405162461bcd60e51b81526004016103d790611ad9565b3361106a818787610f25886112ad565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156110ab5760405162461bcd60e51b81526004016103d790611b1e565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906110e8908490611b68565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46111488288888888886112f8565b50505050505050565b6001600160a01b0384163b15610eac5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906111959089908990889088908890600401611bae565b6020604051808303816000875af19250505080156111d0575060408051601f3d908101601f191682019092526111cd91810190611c0c565b60015b61127d576111dc611c29565b806308c379a0141561121657506111f1611c45565b806111fc5750611218565b8060405162461bcd60e51b81526004016103d79190611532565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016103d7565b6001600160e01b0319811663bc197c8160e01b146111485760405162461bcd60e51b81526004016103d790611ccf565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106112e7576112e7611a6c565b602090810291909101015292915050565b6001600160a01b0384163b15610eac5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061133c9089908990889088908890600401611d17565b6020604051808303816000875af1925050508015611377575060408051601f3d908101601f1916820190925261137491810190611c0c565b60015b611383576111dc611c29565b6001600160e01b0319811663f23a6e6160e01b146111485760405162461bcd60e51b81526004016103d790611ccf565b8280546113bf906119fc565b90600052602060002090601f0160209004810192826113e15760008555611427565b82601f106113fa57805160ff1916838001178555611427565b82800160010185558215611427579182015b8281111561142757825182559160200191906001019061140c565b50611433929150611437565b5090565b5b808211156114335760008155600101611438565b80356001600160a01b038116811461146357600080fd5b919050565b6000806040838503121561147b57600080fd5b6114848361144c565b946020939093013593505050565b6001600160e01b031981168114610cd457600080fd5b6000602082840312156114ba57600080fd5b81356114c581611492565b9392505050565b6000602082840312156114de57600080fd5b5035919050565b6000815180845260005b8181101561150b576020818501810151868301820152016114ef565b8181111561151d576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006114c560208301846114e5565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561158157611581611545565b6040525050565b600067ffffffffffffffff8211156115a2576115a2611545565b5060051b60200190565b600082601f8301126115bd57600080fd5b813560206115ca82611588565b6040516115d7828261155b565b83815260059390931b85018201928281019150868411156115f757600080fd5b8286015b8481101561161257803583529183019183016115fb565b509695505050505050565b600067ffffffffffffffff83111561163757611637611545565b60405161164e601f8501601f19166020018261155b565b80915083815284848401111561166357600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261168c57600080fd5b6114c58383356020850161161d565b600080600080600060a086880312156116b357600080fd5b6116bc8661144c565b94506116ca6020870161144c565b9350604086013567ffffffffffffffff808211156116e757600080fd5b6116f389838a016115ac565b9450606088013591508082111561170957600080fd5b61171589838a016115ac565b9350608088013591508082111561172b57600080fd5b506117388882890161167b565b9150509295509295909350565b803561ffff8116811461146357600080fd5b60006020828403121561176957600080fd5b6114c582611745565b60006020828403121561178457600080fd5b6114c58261144c565b600080604083850312156117a057600080fd5b823567ffffffffffffffff808211156117b857600080fd5b818501915085601f8301126117cc57600080fd5b813560206117d982611588565b6040516117e6828261155b565b83815260059390931b850182019282810191508984111561180657600080fd5b948201945b8386101561182b5761181c8661144c565b8252948201949082019061180b565b9650508601359250508082111561184157600080fd5b5061184e858286016115ac565b9150509250929050565b600081518084526020808501945080840160005b838110156118885781518752958201959082019060010161186c565b509495945050505050565b6020815260006114c56020830184611858565b600080604083850312156118b957600080fd5b6118c283611745565b91506118d060208401611745565b90509250929050565b600080604083850312156118ec57600080fd5b6118f58361144c565b91506020830135801515811461190a57600080fd5b809150509250929050565b6000806040838503121561192857600080fd5b61193183611745565b9150602083013567ffffffffffffffff81111561194d57600080fd5b8301601f8101851361195e57600080fd5b61184e8582356020840161161d565b6000806040838503121561198057600080fd5b6119898361144c565b91506118d06020840161144c565b600080600080600060a086880312156119af57600080fd5b6119b88661144c565b94506119c66020870161144c565b93506040860135925060608601359150608086013567ffffffffffffffff8111156119f057600080fd5b6117388882890161167b565b600181811c90821680611a1057607f821691505b60208210811415611a3157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611aac57611aac611a82565b5060010190565b600061ffff808316818516808303821115611ad057611ad0611a82565b01949350505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115611b7b57611b7b611a82565b500190565b604081526000611b936040830185611858565b8281036020840152611ba58185611858565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611bda90830186611858565b8281036060840152611bec8186611858565b90508281036080840152611c0081856114e5565b98975050505050505050565b600060208284031215611c1e57600080fd5b81516114c581611492565b600060033d1115611c425760046000803e5060005160e01c5b90565b600060443d1015611c535790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611c8357505050505090565b8285019150815181811115611c9b5750505050505090565b843d8701016020828501011115611cb55750505050505090565b611cc46020828601018761155b565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d51908301846114e5565b97965050505050505056fea2646970667358221220260a743aa45a1fe95f9750bcd96e416dbcad239cb52286f37c8c43746247eed564736f6c634300080a003368747470733a2f2f63646e2e616d6f65612e696f2f6e66742f616d6f65612d756e6976657273652d70617373706f72742f54797065412f70617373706f72742d313135352e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101365760003560e01c80635b70ea9f116100b8578063a44a1b961161007c578063a44a1b96146102d4578063b53be8f9146102e7578063d5fe0114146102fa578063e985e9c51461030d578063f242432a14610349578063f2fde38b1461035c57600080fd5b80635b70ea9f146102725780635e9cd9181461027a578063715018a61461029e5780638da5cb5b146102a6578063a22cb465146102c157600080fd5b80633aa49eb6116100ff5780633aa49eb6146101c557806344203e02146101d85780634d8d0488146101ff5780634e1273f41461023f5780635812a1f61461025f57600080fd5b8062fdd58e1461013b57806301ffc9a714610161578063036fa39d146101845780630e89341c146101905780632eb2c2d6146101b0575b600080fd5b61014e610149366004611468565b61036f565b6040519081526020015b60405180910390f35b61017461016f3660046114a8565b610406565b6040519015158152602001610158565b60095461ffff1661014e565b6101a361019e3660046114cc565b610458565b6040516101589190611532565b6101c36101be36600461169b565b6104fa565b005b6101c36101d3366004611757565b610591565b61014e6101e6366004611757565b61ffff9081166000908152600760205260409020541690565b61022c61020d366004611772565b6001600160a01b031660009081526008602052604090205461ffff1690565b60405161ffff9091168152602001610158565b61025261024d36600461178d565b6105d3565b6040516101589190611893565b6101c361026d3660046118a6565b6106fd565b6101c3610741565b61014e610288366004611757565b61ffff1660009081526005602052604090205490565b6101c3610951565b6003546040516001600160a01b039091168152602001610158565b6101c36102cf3660046118d9565b610987565b6101c36102e2366004611915565b610a5e565b6101c36102f53660046118a6565b610a9a565b6101c3610308366004611757565b610b73565b61017461031b36600461196d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6101c3610357366004611997565b610bb5565b6101c361036a366004611772565b610c3c565b60006001600160a01b0383166103e05760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b148061043757506001600160e01b031982166303a24d0760e21b145b8061045257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000818152600260205260409020805460609190610475906119fc565b80601f01602080910402602001604051908101604052809291908181526020018280546104a1906119fc565b80156104ee5780601f106104c3576101008083540402835291602001916104ee565b820191906000526020600020905b8154815290600101906020018083116104d157829003601f168201915b50505050509050919050565b6001600160a01b0385163314806105165750610516853361031b565b61057d5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016103d7565b61058a8585858585610cd7565b5050505050565b6003546001600160a01b031633146105bb5760405162461bcd60e51b81526004016103d790611a37565b6006805461ffff191661ffff92909216919091179055565b606081518351146106385760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016103d7565b6000835167ffffffffffffffff81111561065457610654611545565b60405190808252806020026020018201604052801561067d578160200160208202803683370190505b50905060005b84518110156106f5576106c88582815181106106a1576106a1611a6c565b60200260200101518583815181106106bb576106bb611a6c565b602002602001015161036f565b8282815181106106da576106da611a6c565b60209081029190910101526106ee81611a98565b9050610683565b509392505050565b6003546001600160a01b031633146107275760405162461bcd60e51b81526004016103d790611a37565b61ffff918216600090815260056020526040902091169055565b600260045414156107945760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103d7565b60026004556009543360009081526008602052604090205461ffff9182169116106107f15760405162461bcd60e51b815260206004820152600d60248201526c151bdbc81b585b9e481b5a5b9d609a1b60448201526064016103d7565b60065461ffff908116600090815260056020908152604080832054600790925290912054909116106108505760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b60448201526064016103d7565b33600081815260086020526040812080546001929061087490849061ffff16611ab3565b82546101009290920a61ffff8181021990931691831602179091556006548116600090815260076020526040812080546001945090926108b691859116611ab3565b92506101000a81548161ffff021916908361ffff16021790555061090081600660009054906101000a900461ffff1661ffff16600160405180602001604052806000815250610eb4565b6006546040516001815261ffff909116906001600160a01b038316907f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f9060200160405180910390a3506001600455565b6003546001600160a01b0316331461097b5760405162461bcd60e51b81526004016103d790611a37565b6109856000610fbe565b565b336001600160a01b03831614156109f25760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016103d7565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6003546001600160a01b03163314610a885760405162461bcd60e51b81526004016103d790611a37565b610a968261ffff1682611010565b5050565b6003546001600160a01b03163314610ac45760405162461bcd60e51b81526004016103d790611a37565b61ffff828116600090815260076020526040812080543393859391610aeb91859116611ab3565b92506101000a81548161ffff021916908361ffff160217905550610b28818461ffff168461ffff1660405180602001604052806000815250610eb4565b60405161ffff83811682528416906001600160a01b038316907f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f9060200160405180910390a3505050565b6003546001600160a01b03163314610b9d5760405162461bcd60e51b81526004016103d790611a37565b6009805461ffff191661ffff92909216919091179055565b6001600160a01b038516331480610bd15750610bd1853361031b565b610c2f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b60648201526084016103d7565b61058a8585858585611034565b6003546001600160a01b03163314610c665760405162461bcd60e51b81526004016103d790611a37565b6001600160a01b038116610ccb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d7565b610cd481610fbe565b50565b8151835114610d395760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b60648201526084016103d7565b6001600160a01b038416610d5f5760405162461bcd60e51b81526004016103d790611ad9565b3360005b8451811015610e46576000858281518110610d8057610d80611a6c565b602002602001015190506000858381518110610d9e57610d9e611a6c565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015610dee5760405162461bcd60e51b81526004016103d790611b1e565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290610e2b908490611b68565b9250508190555050505080610e3f90611a98565b9050610d63565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610e96929190611b80565b60405180910390a4610eac818787878787611151565b505050505050565b6001600160a01b038416610f145760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016103d7565b33610f2e81600087610f25886112ad565b61058a886112ad565b6000848152602081815260408083206001600160a01b038916845290915281208054859290610f5e908490611b68565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461058a816000878787876112f8565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000828152600260209081526040909120825161102f928401906113b3565b505050565b6001600160a01b03841661105a5760405162461bcd60e51b81526004016103d790611ad9565b3361106a818787610f25886112ad565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156110ab5760405162461bcd60e51b81526004016103d790611b1e565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906110e8908490611b68565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46111488288888888886112f8565b50505050505050565b6001600160a01b0384163b15610eac5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906111959089908990889088908890600401611bae565b6020604051808303816000875af19250505080156111d0575060408051601f3d908101601f191682019092526111cd91810190611c0c565b60015b61127d576111dc611c29565b806308c379a0141561121657506111f1611c45565b806111fc5750611218565b8060405162461bcd60e51b81526004016103d79190611532565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016103d7565b6001600160e01b0319811663bc197c8160e01b146111485760405162461bcd60e51b81526004016103d790611ccf565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106112e7576112e7611a6c565b602090810291909101015292915050565b6001600160a01b0384163b15610eac5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061133c9089908990889088908890600401611d17565b6020604051808303816000875af1925050508015611377575060408051601f3d908101601f1916820190925261137491810190611c0c565b60015b611383576111dc611c29565b6001600160e01b0319811663f23a6e6160e01b146111485760405162461bcd60e51b81526004016103d790611ccf565b8280546113bf906119fc565b90600052602060002090601f0160209004810192826113e15760008555611427565b82601f106113fa57805160ff1916838001178555611427565b82800160010185558215611427579182015b8281111561142757825182559160200191906001019061140c565b50611433929150611437565b5090565b5b808211156114335760008155600101611438565b80356001600160a01b038116811461146357600080fd5b919050565b6000806040838503121561147b57600080fd5b6114848361144c565b946020939093013593505050565b6001600160e01b031981168114610cd457600080fd5b6000602082840312156114ba57600080fd5b81356114c581611492565b9392505050565b6000602082840312156114de57600080fd5b5035919050565b6000815180845260005b8181101561150b576020818501810151868301820152016114ef565b8181111561151d576000602083870101525b50601f01601f19169290920160200192915050565b6020815260006114c560208301846114e5565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561158157611581611545565b6040525050565b600067ffffffffffffffff8211156115a2576115a2611545565b5060051b60200190565b600082601f8301126115bd57600080fd5b813560206115ca82611588565b6040516115d7828261155b565b83815260059390931b85018201928281019150868411156115f757600080fd5b8286015b8481101561161257803583529183019183016115fb565b509695505050505050565b600067ffffffffffffffff83111561163757611637611545565b60405161164e601f8501601f19166020018261155b565b80915083815284848401111561166357600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261168c57600080fd5b6114c58383356020850161161d565b600080600080600060a086880312156116b357600080fd5b6116bc8661144c565b94506116ca6020870161144c565b9350604086013567ffffffffffffffff808211156116e757600080fd5b6116f389838a016115ac565b9450606088013591508082111561170957600080fd5b61171589838a016115ac565b9350608088013591508082111561172b57600080fd5b506117388882890161167b565b9150509295509295909350565b803561ffff8116811461146357600080fd5b60006020828403121561176957600080fd5b6114c582611745565b60006020828403121561178457600080fd5b6114c58261144c565b600080604083850312156117a057600080fd5b823567ffffffffffffffff808211156117b857600080fd5b818501915085601f8301126117cc57600080fd5b813560206117d982611588565b6040516117e6828261155b565b83815260059390931b850182019282810191508984111561180657600080fd5b948201945b8386101561182b5761181c8661144c565b8252948201949082019061180b565b9650508601359250508082111561184157600080fd5b5061184e858286016115ac565b9150509250929050565b600081518084526020808501945080840160005b838110156118885781518752958201959082019060010161186c565b509495945050505050565b6020815260006114c56020830184611858565b600080604083850312156118b957600080fd5b6118c283611745565b91506118d060208401611745565b90509250929050565b600080604083850312156118ec57600080fd5b6118f58361144c565b91506020830135801515811461190a57600080fd5b809150509250929050565b6000806040838503121561192857600080fd5b61193183611745565b9150602083013567ffffffffffffffff81111561194d57600080fd5b8301601f8101851361195e57600080fd5b61184e8582356020840161161d565b6000806040838503121561198057600080fd5b6119898361144c565b91506118d06020840161144c565b600080600080600060a086880312156119af57600080fd5b6119b88661144c565b94506119c66020870161144c565b93506040860135925060608601359150608086013567ffffffffffffffff8111156119f057600080fd5b6117388882890161167b565b600181811c90821680611a1057607f821691505b60208210811415611a3157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611aac57611aac611a82565b5060010190565b600061ffff808316818516808303821115611ad057611ad0611a82565b01949350505050565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60008219821115611b7b57611b7b611a82565b500190565b604081526000611b936040830185611858565b8281036020840152611ba58185611858565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090611bda90830186611858565b8281036060840152611bec8186611858565b90508281036080840152611c0081856114e5565b98975050505050505050565b600060208284031215611c1e57600080fd5b81516114c581611492565b600060033d1115611c425760046000803e5060005160e01c5b90565b600060443d1015611c535790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715611c8357505050505090565b8285019150815181811115611c9b5750505050505090565b843d8701016020828501011115611cb55750505050505090565b611cc46020828601018761155b565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090611d51908301846114e5565b97965050505050505056fea2646970667358221220260a743aa45a1fe95f9750bcd96e416dbcad239cb52286f37c8c43746247eed564736f6c634300080a0033

Deployed Bytecode Sourcemap

36970:2489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21813:231;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;21813:231:0;;;;;;;;20813:310;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;20813:310:0;1019:187:1;38394:115:0;38481:20;;;;38394:115;;21534:128;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23908:442::-;;;;;;:::i;:::-;;:::i;:::-;;37720:118;;;;;;:::i;:::-;;:::i;38121:130::-;;;;;;:::i;:::-;38223:20;;;;38191:7;38223:20;;;:11;:20;;;;;;;;38121:130;38517:123;;;;;;:::i;:::-;-1:-1:-1;;;;;38616:16:0;38585:6;38616:16;;;:10;:16;;;;;;;;;38517:123;;;;5765:6:1;5753:19;;;5735:38;;5723:2;5708:18;38517:123:0;5591:188:1;22210:524:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;37846:140::-;;;;;;:::i;:::-;;:::i;39014:442::-;;;:::i;38259:127::-;;;;;;:::i;:::-;38359:19;;38327:7;38359:19;;;:10;:19;;;;;;;38259:127;3993:94;;;:::i;3342:87::-;3415:6;;3342:87;;-1:-1:-1;;;;;3415:6:0;;;8110:51:1;;8098:2;8083:18;3342:87:0;7964:203:1;22807:311:0;;;;;;:::i;:::-;;:::i;37994:119::-;;;;;;:::i;:::-;;:::i;38769:237::-;;;;;;:::i;:::-;;:::i;38648:113::-;;;;;;:::i;:::-;;:::i;23190:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23313:27:0;;;23289:4;23313:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;23190:168;23430:401;;;;;;:::i;:::-;;:::i;4242:192::-;;;;;;:::i;:::-;;:::i;21813:231::-;21899:7;-1:-1:-1;;;;;21927:21:0;;21919:77;;;;-1:-1:-1;;;21919:77:0;;10129:2:1;21919:77:0;;;10111:21:1;10168:2;10148:18;;;10141:30;10207:34;10187:18;;;10180:62;-1:-1:-1;;;10258:18:1;;;10251:41;10309:19;;21919:77:0;;;;;;;;;-1:-1:-1;22014:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;22014:22:0;;;;;;;;;;;;21813:231::o;20813:310::-;20915:4;-1:-1:-1;;;;;;20952:41:0;;-1:-1:-1;;;20952:41:0;;:110;;-1:-1:-1;;;;;;;21010:52:0;;-1:-1:-1;;;21010:52:0;20952:110;:163;;;-1:-1:-1;;;;;;;;;;1623:40:0;;;21079:36;20932:183;20813:310;-1:-1:-1;;20813:310:0:o;21534:128::-;21635:19;;;;:10;:19;;;;;21628:26;;21602:13;;21635:19;21628:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21534:128;;;:::o;23908:442::-;-1:-1:-1;;;;;24141:20:0;;2298:10;24141:20;;:60;;-1:-1:-1;24165:36:0;24182:4;2298:10;23190:168;:::i;24165:36::-;24119:160;;;;-1:-1:-1;;;24119:160:0;;10926:2:1;24119:160:0;;;10908:21:1;10965:2;10945:18;;;10938:30;11004:34;10984:18;;;10977:62;-1:-1:-1;;;11055:18:1;;;11048:48;11113:19;;24119:160:0;10724:414:1;24119:160:0;24290:52;24313:4;24319:2;24323:3;24328:7;24337:4;24290:22;:52::i;:::-;23908:442;;;;;:::o;37720:118::-;3415:6;;-1:-1:-1;;;;;3415:6:0;2298:10;3562:23;3554:68;;;;-1:-1:-1;;;3554:68:0;;;;;;;:::i;:::-;37800:16:::1;:30:::0;;-1:-1:-1;;37800:30:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;37720:118::o;22210:524::-;22366:16;22427:3;:10;22408:8;:15;:29;22400:83;;;;-1:-1:-1;;;22400:83:0;;11706:2:1;22400:83:0;;;11688:21:1;11745:2;11725:18;;;11718:30;11784:34;11764:18;;;11757:62;-1:-1:-1;;;11835:18:1;;;11828:39;11884:19;;22400:83:0;11504:405:1;22400:83:0;22496:30;22543:8;:15;22529:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22529:30:0;;22496:63;;22577:9;22572:122;22596:8;:15;22592:1;:19;22572:122;;;22652:30;22662:8;22671:1;22662:11;;;;;;;;:::i;:::-;;;;;;;22675:3;22679:1;22675:6;;;;;;;;:::i;:::-;;;;;;;22652:9;:30::i;:::-;22633:13;22647:1;22633:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;22613:3;;;:::i;:::-;;;22572:122;;;-1:-1:-1;22713:13:0;22210:524;-1:-1:-1;;;22210:524:0:o;37846:140::-;3415:6;;-1:-1:-1;;;;;3415:6:0;2298:10;3562:23;3554:68;;;;-1:-1:-1;;;3554:68:0;;;;;;;:::i;:::-;37947:31:::1;:19:::0;;::::1;;::::0;;;:10:::1;:19;::::0;;;;:31;::::1;::::0;;37846:140::o;39014:442::-;36023:1;36621:7;;:19;;36613:63;;;;-1:-1:-1;;;36613:63:0;;12520:2:1;36613:63:0;;;12502:21:1;12559:2;12539:18;;;12532:30;12598:33;12578:18;;;12571:61;12649:18;;36613:63:0;12318:355:1;36613:63:0;36023:1;36754:7;:18;39105:20:::1;::::0;2298:10;39105:20:::1;39078:24:::0;;;:10:::1;:24;::::0;;;;;39105:20:::1;::::0;;::::1;39078:24:::0;::::1;:47;39070:73;;;::::0;-1:-1:-1;;;39070:73:0;;12880:2:1;39070:73:0::1;::::0;::::1;12862:21:1::0;12919:2;12899:18;;;12892:30;-1:-1:-1;;;12938:18:1;;;12931:43;12991:18;;39070:73:0::1;12678:337:1::0;39070:73:0::1;39205:16;::::0;::::1;::::0;;::::1;39194:28;::::0;;;:10:::1;:28;::::0;;;;;;;;39162:11:::1;:29:::0;;;;;;;;;::::1;:60;39154:81;;;::::0;-1:-1:-1;;;39154:81:0;;13222:2:1;39154:81:0::1;::::0;::::1;13204:21:1::0;13261:1;13241:18;;;13234:29;-1:-1:-1;;;13279:18:1;;;13272:38;13327:18;;39154:81:0::1;13020:331:1::0;39154:81:0::1;2298:10:::0;39256::::1;39292:14:::0;;;:10:::1;:14;::::0;;;;:19;;39310:1:::1;::::0;39256:10;39292:19:::1;::::0;39310:1;;39292:19:::1;;;:::i;:::-;::::0;;::::1;::::0;;;::::1;;::::0;;::::1;;::::0;;::::1;::::0;;::::1;;;::::0;;;39334:16:::1;::::0;;::::1;-1:-1:-1::0;39322:29:0;;;:11:::1;:29;::::0;;;;:34;;-1:-1:-1;;;39322:29:0;;:34:::1;::::0;-1:-1:-1;;39322:34:0::1;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39367;39373:2;39377:16;;;;;;;;;;;39367:34;;39395:1;39367:34;;;;;;;;;;;::::0;:5:::1;:34::i;:::-;39428:16;::::0;39419:29:::1;::::0;39428:16;597:25:1;;39428:16:0::1;::::0;;::::1;::::0;-1:-1:-1;;;;;39419:29:0;::::1;::::0;::::1;::::0;585:2:1;570:18;39419:29:0::1;;;;;;;-1:-1:-1::0;35979:1:0;36933:7;:22;39014:442::o;3993:94::-;3415:6;;-1:-1:-1;;;;;3415:6:0;2298:10;3562:23;3554:68;;;;-1:-1:-1;;;3554:68:0;;;;;;;:::i;:::-;4058:21:::1;4076:1;4058:9;:21::i;:::-;3993:94::o:0;22807:311::-;2298:10;-1:-1:-1;;;;;22910:24:0;;;;22902:78;;;;-1:-1:-1;;;22902:78:0;;13977:2:1;22902:78:0;;;13959:21:1;14016:2;13996:18;;;13989:30;14055:34;14035:18;;;14028:62;-1:-1:-1;;;14106:18:1;;;14099:39;14155:19;;22902:78:0;13775:405:1;22902:78:0;2298:10;22993:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22993:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22993:53:0;;;;;;;;;;23062:48;;1159:41:1;;;22993:42:0;;2298:10;23062:48;;1132:18:1;23062:48:0;;;;;;;22807:311;;:::o;37994:119::-;3415:6;;-1:-1:-1;;;;;3415:6:0;2298:10;3562:23;3554:68;;;;-1:-1:-1;;;3554:68:0;;;;;;;:::i;:::-;38081:24:::1;38089:7;38081:24;;38098:6;38081:7;:24::i;:::-;37994:119:::0;;:::o;38769:237::-;3415:6;;-1:-1:-1;;;;;3415:6:0;2298:10;3562:23;3554:68;;;;-1:-1:-1;;;3554:68:0;;;;;;;:::i;:::-;38887:20:::1;::::0;;::::1;38851:10;38887:20:::0;;;:11:::1;:20;::::0;;;;:29;;2298:10;;38911:5;;38851:10;38887:29:::1;::::0;38911:5;;38887:29:::1;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38927;38933:2;38937:7;38927:29;;38946:5;38927:29;;;;;;;;;;;;;::::0;:5:::1;:29::i;:::-;38974:24;::::0;::::1;5753:19:1::0;;;5735:38;;38974:24:0;::::1;::::0;-1:-1:-1;;;;;38974:24:0;::::1;::::0;::::1;::::0;5723:2:1;5708:18;38974:24:0::1;;;;;;;38840:166;38769:237:::0;;:::o;38648:113::-;3415:6;;-1:-1:-1;;;;;3415:6:0;2298:10;3562:23;3554:68;;;;-1:-1:-1;;;3554:68:0;;;;;;;:::i;:::-;38721:20:::1;:32:::0;;-1:-1:-1;;38721:32:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;38648:113::o;23430:401::-;-1:-1:-1;;;;;23638:20:0;;2298:10;23638:20;;:60;;-1:-1:-1;23662:36:0;23679:4;2298:10;23190:168;:::i;23662:36::-;23616:151;;;;-1:-1:-1;;;23616:151:0;;14581:2:1;23616:151:0;;;14563:21:1;14620:2;14600:18;;;14593:30;14659:34;14639:18;;;14632:62;-1:-1:-1;;;14710:18:1;;;14703:39;14759:19;;23616:151:0;14379:405:1;23616:151:0;23778:45;23796:4;23802:2;23806;23810:6;23818:4;23778:17;:45::i;4242:192::-;3415:6;;-1:-1:-1;;;;;3415:6:0;2298:10;3562:23;3554:68;;;;-1:-1:-1;;;3554:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4331:22:0;::::1;4323:73;;;::::0;-1:-1:-1;;;4323:73:0;;14991:2:1;4323:73:0::1;::::0;::::1;14973:21:1::0;15030:2;15010:18;;;15003:30;15069:34;15049:18;;;15042:62;-1:-1:-1;;;15120:18:1;;;15113:36;15166:19;;4323:73:0::1;14789:402:1::0;4323:73:0::1;4407:19;4417:8;4407:9;:19::i;:::-;4242:192:::0;:::o;25992:1074::-;26219:7;:14;26205:3;:10;:28;26197:81;;;;-1:-1:-1;;;26197:81:0;;15398:2:1;26197:81:0;;;15380:21:1;15437:2;15417:18;;;15410:30;15476:34;15456:18;;;15449:62;-1:-1:-1;;;15527:18:1;;;15520:38;15575:19;;26197:81:0;15196:404:1;26197:81:0;-1:-1:-1;;;;;26297:16:0;;26289:66;;;;-1:-1:-1;;;26289:66:0;;;;;;;:::i;:::-;2298:10;26368:16;26485:421;26509:3;:10;26505:1;:14;26485:421;;;26541:10;26554:3;26558:1;26554:6;;;;;;;;:::i;:::-;;;;;;;26541:19;;26575:14;26592:7;26600:1;26592:10;;;;;;;;:::i;:::-;;;;;;;;;;;;26619:19;26641:13;;;;;;;;;;-1:-1:-1;;;;;26641:19:0;;;;;;;;;;;;26592:10;;-1:-1:-1;26683:21:0;;;;26675:76;;;;-1:-1:-1;;;26675:76:0;;;;;;;:::i;:::-;26795:9;:13;;;;;;;;;;;-1:-1:-1;;;;;26795:19:0;;;;;;;;;;26817:20;;;26795:42;;26867:17;;;;;;;:27;;26817:20;;26795:9;26867:27;;26817:20;;26867:27;:::i;:::-;;;;;;;;26526:380;;;26521:3;;;;:::i;:::-;;;26485:421;;;;26953:2;-1:-1:-1;;;;;26923:47:0;26947:4;-1:-1:-1;;;;;26923:47:0;26937:8;-1:-1:-1;;;;;26923:47:0;;26957:3;26962:7;26923:47;;;;;;;:::i;:::-;;;;;;;;26983:75;27019:8;27029:4;27035:2;27039:3;27044:7;27053:4;26983:35;:75::i;:::-;26186:880;25992:1074;;;;;:::o;28431:599::-;-1:-1:-1;;;;;28589:21:0;;28581:67;;;;-1:-1:-1;;;28581:67:0;;17227:2:1;28581:67:0;;;17209:21:1;17266:2;17246:18;;;17239:30;17305:34;17285:18;;;17278:62;-1:-1:-1;;;17356:18:1;;;17349:31;17397:19;;28581:67:0;17025:397:1;28581:67:0;2298:10;28705:107;2298:10;28661:16;28748:7;28757:21;28775:2;28757:17;:21::i;:::-;28780:25;28798:6;28780:17;:25::i;28705:107::-;28825:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28825:22:0;;;;;;;;;:32;;28851:6;;28825:9;:32;;28851:6;;28825:32;:::i;:::-;;;;-1:-1:-1;;28873:57:0;;;17601:25:1;;;17657:2;17642:18;;17635:34;;;-1:-1:-1;;;;;28873:57:0;;;;28906:1;;28873:57;;;;;;17574:18:1;28873:57:0;;;;;;;28943:79;28974:8;28992:1;28996:7;29005:2;29009:6;29017:4;28943:30;:79::i;4442:173::-;4517:6;;;-1:-1:-1;;;;;4534:17:0;;;-1:-1:-1;;;;;;4534:17:0;;;;;;;4567:40;;4517:6;;;4534:17;4517:6;;4567:40;;4498:16;;4567:40;4487:128;4442:173;:::o;27910:120::-;27994:19;;;;:10;:19;;;;;;;;:28;;;;;;;;:::i;:::-;;27910:120;;:::o;24814:820::-;-1:-1:-1;;;;;25002:16:0;;24994:66;;;;-1:-1:-1;;;24994:66:0;;;;;;;:::i;:::-;2298:10;25117:96;2298:10;25148:4;25154:2;25158:21;25176:2;25158:17;:21::i;25117:96::-;25226:19;25248:13;;;;;;;;;;;-1:-1:-1;;;;;25248:19:0;;;;;;;;;;25286:21;;;;25278:76;;;;-1:-1:-1;;;25278:76:0;;;;;;;:::i;:::-;25390:9;:13;;;;;;;;;;;-1:-1:-1;;;;;25390:19:0;;;;;;;;;;25412:20;;;25390:42;;25454:17;;;;;;;:27;;25412:20;;25390:9;25454:27;;25412:20;;25454:27;:::i;:::-;;;;-1:-1:-1;;25499:46:0;;;17601:25:1;;;17657:2;17642:18;;17635:34;;;-1:-1:-1;;;;;25499:46:0;;;;;;;;;;;;;;17574:18:1;25499:46:0;;;;;;;25558:68;25589:8;25599:4;25605:2;25609;25613:6;25621:4;25558:30;:68::i;:::-;24983:651;;24814:820;;;;;:::o;34113:813::-;-1:-1:-1;;;;;34353:13:0;;5626:20;5674:8;34349:570;;34389:79;;-1:-1:-1;;;34389:79:0;;-1:-1:-1;;;;;34389:43:0;;;;;:79;;34433:8;;34443:4;;34449:3;;34454:7;;34463:4;;34389:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34389:79:0;;;;;;;;-1:-1:-1;;34389:79:0;;;;;;;;;;;;:::i;:::-;;;34385:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;34781:6;34774:14;;-1:-1:-1;;;34774:14:0;;;;;;;;:::i;34385:523::-;;;34830:62;;-1:-1:-1;;;34830:62:0;;19828:2:1;34830:62:0;;;19810:21:1;19867:2;19847:18;;;19840:30;19906:34;19886:18;;;19879:62;-1:-1:-1;;;19957:18:1;;;19950:50;20017:19;;34830:62:0;19626:416:1;34385:523:0;-1:-1:-1;;;;;;34550:60:0;;-1:-1:-1;;;34550:60:0;34546:159;;34635:50;;-1:-1:-1;;;34635:50:0;;;;;;;:::i;34934:198::-;35054:16;;;35068:1;35054:16;;;;;;;;;35000;;35029:22;;35054:16;;;;;;;;;;;;-1:-1:-1;35054:16:0;35029:41;;35092:7;35081:5;35087:1;35081:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;35119:5;34934:198;-1:-1:-1;;34934:198:0:o;33361:744::-;-1:-1:-1;;;;;33576:13:0;;5626:20;5674:8;33572:526;;33612:72;;-1:-1:-1;;;33612:72:0;;-1:-1:-1;;;;;33612:38:0;;;;;:72;;33651:8;;33661:4;;33667:2;;33671:6;;33679:4;;33612:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33612:72:0;;;;;;;;-1:-1:-1;;33612:72:0;;;;;;;;;;;;:::i;:::-;;;33608:479;;;;:::i;:::-;-1:-1:-1;;;;;;33734:55:0;;-1:-1:-1;;;33734:55:0;33730:154;;33814:50;;-1:-1:-1;;;33814:50:0;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:254::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;436:2;421:18;;;;408:32;;-1:-1:-1;;;192:254:1:o;633:131::-;-1:-1:-1;;;;;;707:32:1;;697:43;;687:71;;754:1;751;744:12;769:245;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;935:9;922:23;954:30;978:5;954:30;:::i;:::-;1003:5;769:245;-1:-1:-1;;;769:245:1:o;1211:180::-;1270:6;1323:2;1311:9;1302:7;1298:23;1294:32;1291:52;;;1339:1;1336;1329:12;1291:52;-1:-1:-1;1362:23:1;;1211:180;-1:-1:-1;1211:180:1:o;1396:472::-;1438:3;1476:5;1470:12;1503:6;1498:3;1491:19;1528:1;1538:162;1552:6;1549:1;1546:13;1538:162;;;1614:4;1670:13;;;1666:22;;1660:29;1642:11;;;1638:20;;1631:59;1567:12;1538:162;;;1718:6;1715:1;1712:13;1709:87;;;1784:1;1777:4;1768:6;1763:3;1759:16;1755:27;1748:38;1709:87;-1:-1:-1;1850:2:1;1829:15;-1:-1:-1;;1825:29:1;1816:39;;;;1857:4;1812:50;;1396:472;-1:-1:-1;;1396:472:1:o;1873:220::-;2022:2;2011:9;2004:21;1985:4;2042:45;2083:2;2072:9;2068:18;2060:6;2042:45;:::i;2098:127::-;2159:10;2154:3;2150:20;2147:1;2140:31;2190:4;2187:1;2180:15;2214:4;2211:1;2204:15;2230:249;2340:2;2321:13;;-1:-1:-1;;2317:27:1;2305:40;;2375:18;2360:34;;2396:22;;;2357:62;2354:88;;;2422:18;;:::i;:::-;2458:2;2451:22;-1:-1:-1;;2230:249:1:o;2484:183::-;2544:4;2577:18;2569:6;2566:30;2563:56;;;2599:18;;:::i;:::-;-1:-1:-1;2644:1:1;2640:14;2656:4;2636:25;;2484:183::o;2672:724::-;2726:5;2779:3;2772:4;2764:6;2760:17;2756:27;2746:55;;2797:1;2794;2787:12;2746:55;2833:6;2820:20;2859:4;2882:43;2922:2;2882:43;:::i;:::-;2954:2;2948:9;2966:31;2994:2;2986:6;2966:31;:::i;:::-;3032:18;;;3124:1;3120:10;;;;3108:23;;3104:32;;;3066:15;;;;-1:-1:-1;3148:15:1;;;3145:35;;;3176:1;3173;3166:12;3145:35;3212:2;3204:6;3200:15;3224:142;3240:6;3235:3;3232:15;3224:142;;;3306:17;;3294:30;;3344:12;;;;3257;;3224:142;;;-1:-1:-1;3384:6:1;2672:724;-1:-1:-1;;;;;;2672:724:1:o;3401:468::-;3465:5;3499:18;3491:6;3488:30;3485:56;;;3521:18;;:::i;:::-;3570:2;3564:9;3582:69;3639:2;3618:15;;-1:-1:-1;;3614:29:1;3645:4;3610:40;3564:9;3582:69;:::i;:::-;3669:6;3660:15;;3699:6;3691;3684:22;3739:3;3730:6;3725:3;3721:16;3718:25;3715:45;;;3756:1;3753;3746:12;3715:45;3806:6;3801:3;3794:4;3786:6;3782:17;3769:44;3861:1;3854:4;3845:6;3837;3833:19;3829:30;3822:41;;3401:468;;;;;:::o;3874:220::-;3916:5;3969:3;3962:4;3954:6;3950:17;3946:27;3936:55;;3987:1;3984;3977:12;3936:55;4009:79;4084:3;4075:6;4062:20;4055:4;4047:6;4043:17;4009:79;:::i;4099:943::-;4253:6;4261;4269;4277;4285;4338:3;4326:9;4317:7;4313:23;4309:33;4306:53;;;4355:1;4352;4345:12;4306:53;4378:29;4397:9;4378:29;:::i;:::-;4368:39;;4426:38;4460:2;4449:9;4445:18;4426:38;:::i;:::-;4416:48;;4515:2;4504:9;4500:18;4487:32;4538:18;4579:2;4571:6;4568:14;4565:34;;;4595:1;4592;4585:12;4565:34;4618:61;4671:7;4662:6;4651:9;4647:22;4618:61;:::i;:::-;4608:71;;4732:2;4721:9;4717:18;4704:32;4688:48;;4761:2;4751:8;4748:16;4745:36;;;4777:1;4774;4767:12;4745:36;4800:63;4855:7;4844:8;4833:9;4829:24;4800:63;:::i;:::-;4790:73;;4916:3;4905:9;4901:19;4888:33;4872:49;;4946:2;4936:8;4933:16;4930:36;;;4962:1;4959;4952:12;4930:36;;4985:51;5028:7;5017:8;5006:9;5002:24;4985:51;:::i;:::-;4975:61;;;4099:943;;;;;;;;:::o;5047:159::-;5114:20;;5174:6;5163:18;;5153:29;;5143:57;;5196:1;5193;5186:12;5211:184;5269:6;5322:2;5310:9;5301:7;5297:23;5293:32;5290:52;;;5338:1;5335;5328:12;5290:52;5361:28;5379:9;5361:28;:::i;5400:186::-;5459:6;5512:2;5500:9;5491:7;5487:23;5483:32;5480:52;;;5528:1;5525;5518:12;5480:52;5551:29;5570:9;5551:29;:::i;5784:1208::-;5902:6;5910;5963:2;5951:9;5942:7;5938:23;5934:32;5931:52;;;5979:1;5976;5969:12;5931:52;6019:9;6006:23;6048:18;6089:2;6081:6;6078:14;6075:34;;;6105:1;6102;6095:12;6075:34;6143:6;6132:9;6128:22;6118:32;;6188:7;6181:4;6177:2;6173:13;6169:27;6159:55;;6210:1;6207;6200:12;6159:55;6246:2;6233:16;6268:4;6291:43;6331:2;6291:43;:::i;:::-;6363:2;6357:9;6375:31;6403:2;6395:6;6375:31;:::i;:::-;6441:18;;;6529:1;6525:10;;;;6517:19;;6513:28;;;6475:15;;;;-1:-1:-1;6553:19:1;;;6550:39;;;6585:1;6582;6575:12;6550:39;6609:11;;;;6629:148;6645:6;6640:3;6637:15;6629:148;;;6711:23;6730:3;6711:23;:::i;:::-;6699:36;;6662:12;;;;6755;;;;6629:148;;;6796:6;-1:-1:-1;;6840:18:1;;6827:32;;-1:-1:-1;;6871:16:1;;;6868:36;;;6900:1;6897;6890:12;6868:36;;6923:63;6978:7;6967:8;6956:9;6952:24;6923:63;:::i;:::-;6913:73;;;5784:1208;;;;;:::o;6997:435::-;7050:3;7088:5;7082:12;7115:6;7110:3;7103:19;7141:4;7170:2;7165:3;7161:12;7154:19;;7207:2;7200:5;7196:14;7228:1;7238:169;7252:6;7249:1;7246:13;7238:169;;;7313:13;;7301:26;;7347:12;;;;7382:15;;;;7274:1;7267:9;7238:169;;;-1:-1:-1;7423:3:1;;6997:435;-1:-1:-1;;;;;6997:435:1:o;7437:261::-;7616:2;7605:9;7598:21;7579:4;7636:56;7688:2;7677:9;7673:18;7665:6;7636:56;:::i;7703:256::-;7769:6;7777;7830:2;7818:9;7809:7;7805:23;7801:32;7798:52;;;7846:1;7843;7836:12;7798:52;7869:28;7887:9;7869:28;:::i;:::-;7859:38;;7916:37;7949:2;7938:9;7934:18;7916:37;:::i;:::-;7906:47;;7703:256;;;;;:::o;8172:347::-;8237:6;8245;8298:2;8286:9;8277:7;8273:23;8269:32;8266:52;;;8314:1;8311;8304:12;8266:52;8337:29;8356:9;8337:29;:::i;:::-;8327:39;;8416:2;8405:9;8401:18;8388:32;8463:5;8456:13;8449:21;8442:5;8439:32;8429:60;;8485:1;8482;8475:12;8429:60;8508:5;8498:15;;;8172:347;;;;;:::o;8524:522::-;8601:6;8609;8662:2;8650:9;8641:7;8637:23;8633:32;8630:52;;;8678:1;8675;8668:12;8630:52;8701:28;8719:9;8701:28;:::i;:::-;8691:38;;8780:2;8769:9;8765:18;8752:32;8807:18;8799:6;8796:30;8793:50;;;8839:1;8836;8829:12;8793:50;8862:22;;8915:4;8907:13;;8903:27;-1:-1:-1;8893:55:1;;8944:1;8941;8934:12;8893:55;8967:73;9032:7;9027:2;9014:16;9009:2;9005;9001:11;8967:73;:::i;9051:260::-;9119:6;9127;9180:2;9168:9;9159:7;9155:23;9151:32;9148:52;;;9196:1;9193;9186:12;9148:52;9219:29;9238:9;9219:29;:::i;:::-;9209:39;;9267:38;9301:2;9290:9;9286:18;9267:38;:::i;9316:606::-;9420:6;9428;9436;9444;9452;9505:3;9493:9;9484:7;9480:23;9476:33;9473:53;;;9522:1;9519;9512:12;9473:53;9545:29;9564:9;9545:29;:::i;:::-;9535:39;;9593:38;9627:2;9616:9;9612:18;9593:38;:::i;:::-;9583:48;;9678:2;9667:9;9663:18;9650:32;9640:42;;9729:2;9718:9;9714:18;9701:32;9691:42;;9784:3;9773:9;9769:19;9756:33;9812:18;9804:6;9801:30;9798:50;;;9844:1;9841;9834:12;9798:50;9867:49;9908:7;9899:6;9888:9;9884:22;9867:49;:::i;10339:380::-;10418:1;10414:12;;;;10461;;;10482:61;;10536:4;10528:6;10524:17;10514:27;;10482:61;10589:2;10581:6;10578:14;10558:18;10555:38;10552:161;;;10635:10;10630:3;10626:20;10623:1;10616:31;10670:4;10667:1;10660:15;10698:4;10695:1;10688:15;10552:161;;10339:380;;;:::o;11143:356::-;11345:2;11327:21;;;11364:18;;;11357:30;11423:34;11418:2;11403:18;;11396:62;11490:2;11475:18;;11143:356::o;11914:127::-;11975:10;11970:3;11966:20;11963:1;11956:31;12006:4;12003:1;11996:15;12030:4;12027:1;12020:15;12046:127;12107:10;12102:3;12098:20;12095:1;12088:31;12138:4;12135:1;12128:15;12162:4;12159:1;12152:15;12178:135;12217:3;-1:-1:-1;;12238:17:1;;12235:43;;;12258:18;;:::i;:::-;-1:-1:-1;12305:1:1;12294:13;;12178:135::o;13356:224::-;13395:3;13423:6;13456:2;13453:1;13449:10;13486:2;13483:1;13479:10;13517:3;13513:2;13509:12;13504:3;13501:21;13498:47;;;13525:18;;:::i;:::-;13561:13;;13356:224;-1:-1:-1;;;;13356:224:1:o;15605:401::-;15807:2;15789:21;;;15846:2;15826:18;;;15819:30;15885:34;15880:2;15865:18;;15858:62;-1:-1:-1;;;15951:2:1;15936:18;;15929:35;15996:3;15981:19;;15605:401::o;16011:406::-;16213:2;16195:21;;;16252:2;16232:18;;;16225:30;16291:34;16286:2;16271:18;;16264:62;-1:-1:-1;;;16357:2:1;16342:18;;16335:40;16407:3;16392:19;;16011:406::o;16422:128::-;16462:3;16493:1;16489:6;16486:1;16483:13;16480:39;;;16499:18;;:::i;:::-;-1:-1:-1;16535:9:1;;16422:128::o;16555:465::-;16812:2;16801:9;16794:21;16775:4;16838:56;16890:2;16879:9;16875:18;16867:6;16838:56;:::i;:::-;16942:9;16934:6;16930:22;16925:2;16914:9;16910:18;16903:50;16970:44;17007:6;16999;16970:44;:::i;:::-;16962:52;16555:465;-1:-1:-1;;;;;16555:465:1:o;17680:827::-;-1:-1:-1;;;;;18077:15:1;;;18059:34;;18129:15;;18124:2;18109:18;;18102:43;18039:3;18176:2;18161:18;;18154:31;;;18002:4;;18208:57;;18245:19;;18237:6;18208:57;:::i;:::-;18313:9;18305:6;18301:22;18296:2;18285:9;18281:18;18274:50;18347:44;18384:6;18376;18347:44;:::i;:::-;18333:58;;18440:9;18432:6;18428:22;18422:3;18411:9;18407:19;18400:51;18468:33;18494:6;18486;18468:33;:::i;:::-;18460:41;17680:827;-1:-1:-1;;;;;;;;17680:827:1:o;18512:249::-;18581:6;18634:2;18622:9;18613:7;18609:23;18605:32;18602:52;;;18650:1;18647;18640:12;18602:52;18682:9;18676:16;18701:30;18725:5;18701:30;:::i;18766:179::-;18801:3;18843:1;18825:16;18822:23;18819:120;;;18889:1;18886;18883;18868:23;-1:-1:-1;18926:1:1;18920:8;18915:3;18911:18;18819:120;18766:179;:::o;18950:671::-;18989:3;19031:4;19013:16;19010:26;19007:39;;;18950:671;:::o;19007:39::-;19073:2;19067:9;-1:-1:-1;;19138:16:1;19134:25;;19131:1;19067:9;19110:50;19189:4;19183:11;19213:16;19248:18;19319:2;19312:4;19304:6;19300:17;19297:25;19292:2;19284:6;19281:14;19278:45;19275:58;;;19326:5;;;;;18950:671;:::o;19275:58::-;19363:6;19357:4;19353:17;19342:28;;19399:3;19393:10;19426:2;19418:6;19415:14;19412:27;;;19432:5;;;;;;18950:671;:::o;19412:27::-;19516:2;19497:16;19491:4;19487:27;19483:36;19476:4;19467:6;19462:3;19458:16;19454:27;19451:69;19448:82;;;19523:5;;;;;;18950:671;:::o;19448:82::-;19539:57;19590:4;19581:6;19573;19569:19;19565:30;19559:4;19539:57;:::i;:::-;-1:-1:-1;19612:3:1;;18950:671;-1:-1:-1;;;;;18950:671:1:o;20047:404::-;20249:2;20231:21;;;20288:2;20268:18;;;20261:30;20327:34;20322:2;20307:18;;20300:62;-1:-1:-1;;;20393:2:1;20378:18;;20371:38;20441:3;20426:19;;20047:404::o;20456:561::-;-1:-1:-1;;;;;20753:15:1;;;20735:34;;20805:15;;20800:2;20785:18;;20778:43;20852:2;20837:18;;20830:34;;;20895:2;20880:18;;20873:34;;;20715:3;20938;20923:19;;20916:32;;;20678:4;;20965:46;;20991:19;;20983:6;20965:46;:::i;:::-;20957:54;20456:561;-1:-1:-1;;;;;;;20456:561:1:o

Swarm Source

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