ETH Price: $3,597.42 (+3.93%)
 

Overview

Max Total Supply

14 VA

Holders

10

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xb97f37917277641d68b1f877c7fe9da013446b8d
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:
VerudianArtifact

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-13
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }
    
    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;


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

pragma solidity ^0.8.0;


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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;







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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}

pragma solidity ^0.8.7;

contract VerudianArtifact is ERC1155, Ownable, DefaultOperatorFilterer {    

    string public metadata;
    string public name_;
    string public symbol_;  

    bool public burnStatus; 
    bool public burnStatusContract; 
    address public _burnContract;

    mapping(uint256 => uint256) public tokenSupply;
    mapping(uint256 => uint256) public airdropPerToken;
    mapping(uint256 => bool) public setTokenSupply;

    constructor() ERC1155(metadata)  {
        name_ = "Verudian Artifact";
        symbol_ = "VA";
    }
    
    function airdrop(uint256[] calldata tokenAmount, address[] calldata wallet, uint256 tokenId) public onlyOwner {
        require(setTokenSupply[tokenId],"This token supply was never set");
        for(uint256 i = 0; i < wallet.length; i++){ 
            require(airdropPerToken[tokenId] + tokenAmount[i] <= tokenSupply[tokenId]);
            _mint(wallet[i], tokenId, tokenAmount[i], "");
            airdropPerToken[tokenId]  += tokenAmount[i];
        }
    }

    function setSupply(uint256 tokenId, uint256 _supply) public onlyOwner {
        require(setTokenSupply[tokenId] == false, "This token was already set");
        tokenSupply[tokenId] = _supply;
        setTokenSupply[tokenId] = true;
    }

    function burnToken(address wallet, uint256 tokenId, uint256 amountOfTokens) public  {
        require(burnStatus, "Burn status disabled");
        require(wallet == msg.sender || isApprovedForAll(wallet, msg.sender), "Not allowed");
        _burn(wallet, tokenId, amountOfTokens);
    }

    function burnTokenFromContract(address wallet, uint256 tokenId, uint256 amountOfTokens) public  {
        require(burnStatusContract, "Burn status disabled");
        require(_burnContract == msg.sender, "Not allowed");
        _burn(wallet, tokenId, amountOfTokens);
    }

    function setMetadata(string calldata _uri) public onlyOwner {
        metadata = _uri;
    }

    function setBurnStatus(bool _status) public onlyOwner {
        burnStatus = _status;
    }

    function setBurnStatusContract(bool _status) public onlyOwner {
        burnStatusContract = _status;
    }

    function setBurnContract(address _contract) public onlyOwner {
        _burnContract = _contract;
    }

    function uri(uint256 tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(metadata, Strings.toString(tokenId)));
    }

    function name() public view returns (string memory) {
        return name_;
    }

    function symbol() public view returns (string memory) {
        return symbol_;
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, uint256 amount, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, amount, data);
    }

    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override onlyAllowedOperator(from) {
        super.safeBatchTransferFrom(from, to, ids, amounts, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_burnContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenAmount","type":"uint256[]"},{"internalType":"address[]","name":"wallet","type":"address[]"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"airdropPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"burnStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnStatusContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"burnTokenFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"tokenId","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":"address","name":"_contract","type":"address"}],"name":"setBurnContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setBurnStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setBurnStatusContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"setTokenSupply","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol_","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb66001600480546200003890620002eb565b80601f01602080910402602001604051908101604052809291908181526020018280546200006690620002eb565b8015620000b75780601f106200008b57610100808354040283529160200191620000b7565b820191906000526020600020905b8154815290600101906020018083116200009957829003601f168201915b5050505050620000cd816200028760201b60201c565b50620000d93362000299565b6daaeb6d7670e522a718067333cd4e3b156200021e5780156200016c57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200014d57600080fd5b505af115801562000162573d6000803e3d6000fd5b505050506200021e565b6001600160a01b03821615620001bd5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000132565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200020457600080fd5b505af115801562000219573d6000803e3d6000fd5b505050505b505060408051808201909152601181527015995c9d591a585b88105c9d1a599858dd607a1b602082015260059062000257908262000390565b50604080518082019091526002815261564160f01b602082015260069062000280908262000390565b506200045c565b600262000295828262000390565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600181811c908216806200030057607f821691505b6020821081036200032157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b601f8211156200038b57600081815260208120601f850160051c81016020861015620003665750805b601f850160051c820191505b81811015620003875782815560010162000372565b5050505b505050565b81516001600160401b03811115620003ac57620003ac62000327565b620003c481620003bd8454620002eb565b846200033d565b602080601f831160018114620003fc5760008415620003e35750858301515b600019600386901b1c1916600185901b17855562000387565b600085815260208120601f198616915b828110156200042d578886015182559484019460019091019084016200040c565b50858210156200044c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6124ff806200046c6000396000f3fe608060405234801561001057600080fd5b50600436106101e45760003560e01c806390e0d9921161010f578063d14918d5116100a2578063ed8c593811610071578063ed8c593814610451578063f242432a14610464578063f2fde38b14610477578063fc784d491461048a57600080fd5b8063d14918d5146103da578063da0890a8146103fa578063e2b9e1861461040d578063e985e9c51461041557600080fd5b8063a22cb465116100de578063a22cb46514610393578063a49a1e7d146103a6578063af17dea6146103b9578063c9031e9e146103c157600080fd5b806390e0d9921461034857806395d89b411461035557806397a2d0eb1461035d5780639bbf57031461037057600080fd5b80632eb2c2d61161018757806341f434341161015657806341f43434146102e25780634e1273f41461030f578063715018a61461032f5780638da5cb5b1461033757600080fd5b80632eb2c2d6146102a257806337871c60146102b557806337beafe0146102c7578063392f37e9146102da57600080fd5b806306fdde03116101c357806306fdde03146102475780630e89341c1461025c578063180dd84e1461026f5780632693ebf21461028257600080fd5b8062fdd58e146101e957806301ffc9a71461020f5780630679790114610232575b600080fd5b6101fc6101f7366004611902565b61049d565b6040519081526020015b60405180910390f35b61022261021d366004611942565b610536565b6040519015158152602001610206565b610245610240366004611966565b610586565b005b61024f610632565b60405161020691906119e9565b61024f61026a3660046119fc565b6106c4565b61024561027d366004611a23565b6106f8565b6101fc6102903660046119fc565b60086020526000908152604090205481565b6102456102b0366004611b89565b61071a565b60075461022290610100900460ff1681565b6102456102d5366004611c32565b610749565b61024f61077b565b6102f76daaeb6d7670e522a718067333cd4e81565b6040516001600160a01b039091168152602001610206565b61032261031d366004611c4d565b610809565b6040516102069190611d52565b610245610932565b6003546001600160a01b03166102f7565b6007546102229060ff1681565b61024f610946565b61024561036b366004611a23565b610955565b61022261037e3660046119fc565b600a6020526000908152604090205460ff1681565b6102456103a1366004611d65565b610970565b6102456103b4366004611d9c565b610984565b61024f610999565b6007546102f7906201000090046001600160a01b031681565b6101fc6103e83660046119fc565b60096020526000908152604090205481565b610245610408366004611e58565b6109a6565b61024f610b14565b610222610423366004611ecb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61024561045f366004611966565b610b21565b610245610472366004611efe565b610bde565b610245610485366004611c32565b610c05565b610245610498366004611f62565b610c7e565b60006001600160a01b03831661050d5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061056757506001600160e01b031982166303a24d0760e21b145b8061053057506301ffc9a760e01b6001600160e01b0319831614610530565b600754610100900460ff166105d45760405162461bcd60e51b8152602060048201526014602482015273109d5c9b881cdd185d1d5cc8191a5cd8589b195960621b6044820152606401610504565b6007546201000090046001600160a01b031633146106225760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610504565b61062d838383610d0d565b505050565b60606005805461064190611f84565b80601f016020809104026020016040519081016040528092919081815260200182805461066d90611f84565b80156106ba5780601f1061068f576101008083540402835291602001916106ba565b820191906000526020600020905b81548152906001019060200180831161069d57829003601f168201915b5050505050905090565b606060046106d183610e8e565b6040516020016106e2929190611fbe565b6040516020818303038152906040529050919050565b610700610f96565b600780549115156101000261ff0019909216919091179055565b846001600160a01b03811633146107345761073433610ff0565b61074186868686866110a9565b505050505050565b610751610f96565b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6004805461078890611f84565b80601f01602080910402602001604051908101604052809291908181526020018280546107b490611f84565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b505050505081565b6060815183511461086e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610504565b600083516001600160401b0381111561088957610889611a40565b6040519080825280602002602001820160405280156108b2578160200160208202803683370190505b50905060005b845181101561092a576108fd8582815181106108d6576108d6612045565b60200260200101518583815181106108f0576108f0612045565b602002602001015161049d565b82828151811061090f5761090f612045565b602090810291909101015261092381612071565b90506108b8565b509392505050565b61093a610f96565b61094460006110f5565b565b60606006805461064190611f84565b61095d610f96565b6007805460ff1916911515919091179055565b8161097a81610ff0565b61062d8383611147565b61098c610f96565b600461062d8284836120d0565b6006805461078890611f84565b6109ae610f96565b6000818152600a602052604090205460ff16610a0c5760405162461bcd60e51b815260206004820152601f60248201527f5468697320746f6b656e20737570706c7920776173206e6576657220736574006044820152606401610504565b60005b8281101561074157600082815260086020526040902054868683818110610a3857610a38612045565b905060200201356009600085815260200190815260200160002054610a5d919061218f565b1115610a6857600080fd5b610ac1848483818110610a7d57610a7d612045565b9050602002016020810190610a929190611c32565b83888885818110610aa557610aa5612045565b9050602002013560405180602001604052806000815250611156565b858582818110610ad357610ad3612045565b90506020020135600960008481526020019081526020016000206000828254610afc919061218f565b90915550819050610b0c81612071565b915050610a0f565b6005805461078890611f84565b60075460ff16610b6a5760405162461bcd60e51b8152602060048201526014602482015273109d5c9b881cdd185d1d5cc8191a5cd8589b195960621b6044820152606401610504565b6001600160a01b038316331480610ba457506001600160a01b038316600090815260016020908152604080832033845290915290205460ff165b6106225760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610504565b846001600160a01b0381163314610bf857610bf833610ff0565b6107418686868686611261565b610c0d610f96565b6001600160a01b038116610c725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610504565b610c7b816110f5565b50565b610c86610f96565b6000828152600a602052604090205460ff1615610ce55760405162461bcd60e51b815260206004820152601a60248201527f5468697320746f6b656e2077617320616c7265616479207365740000000000006044820152606401610504565b600091825260086020908152604080842092909255600a90529020805460ff19166001179055565b6001600160a01b038316610d6f5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610504565b336000610d7b846112a6565b90506000610d88846112a6565b60408051602080820183526000918290528882528181528282206001600160a01b038b1683529052205490915084811015610e115760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610504565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46040805160208101909152600090525b50505050505050565b606081600003610eb55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610edf5780610ec981612071565b9150610ed89050600a836121b8565b9150610eb9565b6000816001600160401b03811115610ef957610ef9611a40565b6040519080825280601f01601f191660200182016040528015610f23576020820181803683370190505b5090505b8415610f8e57610f386001836121cc565b9150610f45600a866121df565b610f5090603061218f565b60f81b818381518110610f6557610f65612045565b60200101906001600160f81b031916908160001a905350610f87600a866121b8565b9450610f27565b949350505050565b6003546001600160a01b031633146109445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610504565b6daaeb6d7670e522a718067333cd4e3b15610c7b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561105d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108191906121f3565b610c7b57604051633b79c77360e21b81526001600160a01b0382166004820152602401610504565b6001600160a01b0385163314806110c557506110c58533610423565b6110e15760405162461bcd60e51b815260040161050490612210565b6110ee85858585856112f1565b5050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111523383836114c6565b5050565b6001600160a01b0384166111b65760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610504565b3360006111c2856112a6565b905060006111cf856112a6565b90506000868152602081815260408083206001600160a01b038b1684529091528120805487929061120190849061218f565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610e85836000898989896115a6565b6001600160a01b03851633148061127d575061127d8533610423565b6112995760405162461bcd60e51b815260040161050490612210565b6110ee8585858585611701565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106112e0576112e0612045565b602090810291909101015292915050565b81518351146113535760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610504565b6001600160a01b0384166113795760405162461bcd60e51b81526004016105049061225f565b3360005b845181101561146057600085828151811061139a5761139a612045565b6020026020010151905060008583815181106113b8576113b8612045565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156114085760405162461bcd60e51b8152600401610504906122a4565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061144590849061218f565b925050819055505050508061145990612071565b905061137d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516114b09291906122ee565b60405180910390a461074181878787878761182b565b816001600160a01b0316836001600160a01b0316036115395760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610504565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384163b156107415760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906115ea908990899088908890889060040161231c565b6020604051808303816000875af1925050508015611625575060408051601f3d908101601f1916820190925261162291810190612361565b60015b6116d15761163161237e565b806308c379a00361166a575061164561239a565b80611650575061166c565b8060405162461bcd60e51b815260040161050491906119e9565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610504565b6001600160e01b0319811663f23a6e6160e01b14610e855760405162461bcd60e51b815260040161050490612423565b6001600160a01b0384166117275760405162461bcd60e51b81526004016105049061225f565b336000611733856112a6565b90506000611740856112a6565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156117835760405162461bcd60e51b8152600401610504906122a4565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906117c090849061218f565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611820848a8a8a8a8a6115a6565b505050505050505050565b6001600160a01b0384163b156107415760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061186f908990899088908890889060040161246b565b6020604051808303816000875af19250505080156118aa575060408051601f3d908101601f191682019092526118a791810190612361565b60015b6118b65761163161237e565b6001600160e01b0319811663bc197c8160e01b14610e855760405162461bcd60e51b815260040161050490612423565b80356001600160a01b03811681146118fd57600080fd5b919050565b6000806040838503121561191557600080fd5b61191e836118e6565b946020939093013593505050565b6001600160e01b031981168114610c7b57600080fd5b60006020828403121561195457600080fd5b813561195f8161192c565b9392505050565b60008060006060848603121561197b57600080fd5b611984846118e6565b95602085013595506040909401359392505050565b60005b838110156119b457818101518382015260200161199c565b50506000910152565b600081518084526119d5816020860160208601611999565b601f01601f19169290920160200192915050565b60208152600061195f60208301846119bd565b600060208284031215611a0e57600080fd5b5035919050565b8015158114610c7b57600080fd5b600060208284031215611a3557600080fd5b813561195f81611a15565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715611a7b57611a7b611a40565b6040525050565b60006001600160401b03821115611a9b57611a9b611a40565b5060051b60200190565b600082601f830112611ab657600080fd5b81356020611ac382611a82565b604051611ad08282611a56565b83815260059390931b8501820192828101915086841115611af057600080fd5b8286015b84811015611b0b5780358352918301918301611af4565b509695505050505050565b600082601f830112611b2757600080fd5b81356001600160401b03811115611b4057611b40611a40565b604051611b57601f8301601f191660200182611a56565b818152846020838601011115611b6c57600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215611ba157600080fd5b611baa866118e6565b9450611bb8602087016118e6565b935060408601356001600160401b0380821115611bd457600080fd5b611be089838a01611aa5565b94506060880135915080821115611bf657600080fd5b611c0289838a01611aa5565b93506080880135915080821115611c1857600080fd5b50611c2588828901611b16565b9150509295509295909350565b600060208284031215611c4457600080fd5b61195f826118e6565b60008060408385031215611c6057600080fd5b82356001600160401b0380821115611c7757600080fd5b818501915085601f830112611c8b57600080fd5b81356020611c9882611a82565b604051611ca58282611a56565b83815260059390931b8501820192828101915089841115611cc557600080fd5b948201945b83861015611cea57611cdb866118e6565b82529482019490820190611cca565b96505086013592505080821115611d0057600080fd5b50611d0d85828601611aa5565b9150509250929050565b600081518084526020808501945080840160005b83811015611d4757815187529582019590820190600101611d2b565b509495945050505050565b60208152600061195f6020830184611d17565b60008060408385031215611d7857600080fd5b611d81836118e6565b91506020830135611d9181611a15565b809150509250929050565b60008060208385031215611daf57600080fd5b82356001600160401b0380821115611dc657600080fd5b818501915085601f830112611dda57600080fd5b813581811115611de957600080fd5b866020828501011115611dfb57600080fd5b60209290920196919550909350505050565b60008083601f840112611e1f57600080fd5b5081356001600160401b03811115611e3657600080fd5b6020830191508360208260051b8501011115611e5157600080fd5b9250929050565b600080600080600060608688031215611e7057600080fd5b85356001600160401b0380821115611e8757600080fd5b611e9389838a01611e0d565b90975095506020880135915080821115611eac57600080fd5b50611eb988828901611e0d565b96999598509660400135949350505050565b60008060408385031215611ede57600080fd5b611ee7836118e6565b9150611ef5602084016118e6565b90509250929050565b600080600080600060a08688031215611f1657600080fd5b611f1f866118e6565b9450611f2d602087016118e6565b9350604086013592506060860135915060808601356001600160401b03811115611f5657600080fd5b611c2588828901611b16565b60008060408385031215611f7557600080fd5b50508035926020909101359150565b600181811c90821680611f9857607f821691505b602082108103611fb857634e487b7160e01b600052602260045260246000fd5b50919050565b6000808454611fcc81611f84565b60018281168015611fe45760018114611ff957612028565b60ff1984168752821515830287019450612028565b8860005260208060002060005b8581101561201f5781548a820152908401908201612006565b50505082870194505b50505050835161203c818360208801611999565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016120835761208361205b565b5060010190565b601f82111561062d57600081815260208120601f850160051c810160208610156120b15750805b601f850160051c820191505b81811015610741578281556001016120bd565b6001600160401b038311156120e7576120e7611a40565b6120fb836120f58354611f84565b8361208a565b6000601f84116001811461212f57600085156121175750838201355b600019600387901b1c1916600186901b1783556110ee565b600083815260209020601f19861690835b828110156121605786850135825560209485019460019092019101612140565b508682101561217d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b808201808211156105305761053061205b565b634e487b7160e01b600052601260045260246000fd5b6000826121c7576121c76121a2565b500490565b818103818111156105305761053061205b565b6000826121ee576121ee6121a2565b500690565b60006020828403121561220557600080fd5b815161195f81611a15565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006123016040830185611d17565b82810360208401526123138185611d17565b95945050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612356908301846119bd565b979650505050505050565b60006020828403121561237357600080fd5b815161195f8161192c565b600060033d11156123975760046000803e5060005160e01c5b90565b600060443d10156123a85790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156123d757505050505090565b82850191508151818111156123ef5750505050505090565b843d87010160208285010111156124095750505050505090565b61241860208286010187611a56565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061249790830186611d17565b82810360608401526124a98186611d17565b905082810360808401526124bd81856119bd565b9897505050505050505056fea264697066735822122032e4d5587f773ecfc230dda046b4c546c6baf39a346a9574b93237ac1ab17d6664736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e45760003560e01c806390e0d9921161010f578063d14918d5116100a2578063ed8c593811610071578063ed8c593814610451578063f242432a14610464578063f2fde38b14610477578063fc784d491461048a57600080fd5b8063d14918d5146103da578063da0890a8146103fa578063e2b9e1861461040d578063e985e9c51461041557600080fd5b8063a22cb465116100de578063a22cb46514610393578063a49a1e7d146103a6578063af17dea6146103b9578063c9031e9e146103c157600080fd5b806390e0d9921461034857806395d89b411461035557806397a2d0eb1461035d5780639bbf57031461037057600080fd5b80632eb2c2d61161018757806341f434341161015657806341f43434146102e25780634e1273f41461030f578063715018a61461032f5780638da5cb5b1461033757600080fd5b80632eb2c2d6146102a257806337871c60146102b557806337beafe0146102c7578063392f37e9146102da57600080fd5b806306fdde03116101c357806306fdde03146102475780630e89341c1461025c578063180dd84e1461026f5780632693ebf21461028257600080fd5b8062fdd58e146101e957806301ffc9a71461020f5780630679790114610232575b600080fd5b6101fc6101f7366004611902565b61049d565b6040519081526020015b60405180910390f35b61022261021d366004611942565b610536565b6040519015158152602001610206565b610245610240366004611966565b610586565b005b61024f610632565b60405161020691906119e9565b61024f61026a3660046119fc565b6106c4565b61024561027d366004611a23565b6106f8565b6101fc6102903660046119fc565b60086020526000908152604090205481565b6102456102b0366004611b89565b61071a565b60075461022290610100900460ff1681565b6102456102d5366004611c32565b610749565b61024f61077b565b6102f76daaeb6d7670e522a718067333cd4e81565b6040516001600160a01b039091168152602001610206565b61032261031d366004611c4d565b610809565b6040516102069190611d52565b610245610932565b6003546001600160a01b03166102f7565b6007546102229060ff1681565b61024f610946565b61024561036b366004611a23565b610955565b61022261037e3660046119fc565b600a6020526000908152604090205460ff1681565b6102456103a1366004611d65565b610970565b6102456103b4366004611d9c565b610984565b61024f610999565b6007546102f7906201000090046001600160a01b031681565b6101fc6103e83660046119fc565b60096020526000908152604090205481565b610245610408366004611e58565b6109a6565b61024f610b14565b610222610423366004611ecb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61024561045f366004611966565b610b21565b610245610472366004611efe565b610bde565b610245610485366004611c32565b610c05565b610245610498366004611f62565b610c7e565b60006001600160a01b03831661050d5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061056757506001600160e01b031982166303a24d0760e21b145b8061053057506301ffc9a760e01b6001600160e01b0319831614610530565b600754610100900460ff166105d45760405162461bcd60e51b8152602060048201526014602482015273109d5c9b881cdd185d1d5cc8191a5cd8589b195960621b6044820152606401610504565b6007546201000090046001600160a01b031633146106225760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610504565b61062d838383610d0d565b505050565b60606005805461064190611f84565b80601f016020809104026020016040519081016040528092919081815260200182805461066d90611f84565b80156106ba5780601f1061068f576101008083540402835291602001916106ba565b820191906000526020600020905b81548152906001019060200180831161069d57829003601f168201915b5050505050905090565b606060046106d183610e8e565b6040516020016106e2929190611fbe565b6040516020818303038152906040529050919050565b610700610f96565b600780549115156101000261ff0019909216919091179055565b846001600160a01b03811633146107345761073433610ff0565b61074186868686866110a9565b505050505050565b610751610f96565b600780546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6004805461078890611f84565b80601f01602080910402602001604051908101604052809291908181526020018280546107b490611f84565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b505050505081565b6060815183511461086e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610504565b600083516001600160401b0381111561088957610889611a40565b6040519080825280602002602001820160405280156108b2578160200160208202803683370190505b50905060005b845181101561092a576108fd8582815181106108d6576108d6612045565b60200260200101518583815181106108f0576108f0612045565b602002602001015161049d565b82828151811061090f5761090f612045565b602090810291909101015261092381612071565b90506108b8565b509392505050565b61093a610f96565b61094460006110f5565b565b60606006805461064190611f84565b61095d610f96565b6007805460ff1916911515919091179055565b8161097a81610ff0565b61062d8383611147565b61098c610f96565b600461062d8284836120d0565b6006805461078890611f84565b6109ae610f96565b6000818152600a602052604090205460ff16610a0c5760405162461bcd60e51b815260206004820152601f60248201527f5468697320746f6b656e20737570706c7920776173206e6576657220736574006044820152606401610504565b60005b8281101561074157600082815260086020526040902054868683818110610a3857610a38612045565b905060200201356009600085815260200190815260200160002054610a5d919061218f565b1115610a6857600080fd5b610ac1848483818110610a7d57610a7d612045565b9050602002016020810190610a929190611c32565b83888885818110610aa557610aa5612045565b9050602002013560405180602001604052806000815250611156565b858582818110610ad357610ad3612045565b90506020020135600960008481526020019081526020016000206000828254610afc919061218f565b90915550819050610b0c81612071565b915050610a0f565b6005805461078890611f84565b60075460ff16610b6a5760405162461bcd60e51b8152602060048201526014602482015273109d5c9b881cdd185d1d5cc8191a5cd8589b195960621b6044820152606401610504565b6001600160a01b038316331480610ba457506001600160a01b038316600090815260016020908152604080832033845290915290205460ff165b6106225760405162461bcd60e51b815260206004820152600b60248201526a139bdd08185b1b1bddd95960aa1b6044820152606401610504565b846001600160a01b0381163314610bf857610bf833610ff0565b6107418686868686611261565b610c0d610f96565b6001600160a01b038116610c725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610504565b610c7b816110f5565b50565b610c86610f96565b6000828152600a602052604090205460ff1615610ce55760405162461bcd60e51b815260206004820152601a60248201527f5468697320746f6b656e2077617320616c7265616479207365740000000000006044820152606401610504565b600091825260086020908152604080842092909255600a90529020805460ff19166001179055565b6001600160a01b038316610d6f5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610504565b336000610d7b846112a6565b90506000610d88846112a6565b60408051602080820183526000918290528882528181528282206001600160a01b038b1683529052205490915084811015610e115760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610504565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46040805160208101909152600090525b50505050505050565b606081600003610eb55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610edf5780610ec981612071565b9150610ed89050600a836121b8565b9150610eb9565b6000816001600160401b03811115610ef957610ef9611a40565b6040519080825280601f01601f191660200182016040528015610f23576020820181803683370190505b5090505b8415610f8e57610f386001836121cc565b9150610f45600a866121df565b610f5090603061218f565b60f81b818381518110610f6557610f65612045565b60200101906001600160f81b031916908160001a905350610f87600a866121b8565b9450610f27565b949350505050565b6003546001600160a01b031633146109445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610504565b6daaeb6d7670e522a718067333cd4e3b15610c7b57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561105d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108191906121f3565b610c7b57604051633b79c77360e21b81526001600160a01b0382166004820152602401610504565b6001600160a01b0385163314806110c557506110c58533610423565b6110e15760405162461bcd60e51b815260040161050490612210565b6110ee85858585856112f1565b5050505050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6111523383836114c6565b5050565b6001600160a01b0384166111b65760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610504565b3360006111c2856112a6565b905060006111cf856112a6565b90506000868152602081815260408083206001600160a01b038b1684529091528120805487929061120190849061218f565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610e85836000898989896115a6565b6001600160a01b03851633148061127d575061127d8533610423565b6112995760405162461bcd60e51b815260040161050490612210565b6110ee8585858585611701565b604080516001808252818301909252606091600091906020808301908036833701905050905082816000815181106112e0576112e0612045565b602090810291909101015292915050565b81518351146113535760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610504565b6001600160a01b0384166113795760405162461bcd60e51b81526004016105049061225f565b3360005b845181101561146057600085828151811061139a5761139a612045565b6020026020010151905060008583815181106113b8576113b8612045565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156114085760405162461bcd60e51b8152600401610504906122a4565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b1682528120805484929061144590849061218f565b925050819055505050508061145990612071565b905061137d565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516114b09291906122ee565b60405180910390a461074181878787878761182b565b816001600160a01b0316836001600160a01b0316036115395760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610504565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384163b156107415760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906115ea908990899088908890889060040161231c565b6020604051808303816000875af1925050508015611625575060408051601f3d908101601f1916820190925261162291810190612361565b60015b6116d15761163161237e565b806308c379a00361166a575061164561239a565b80611650575061166c565b8060405162461bcd60e51b815260040161050491906119e9565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610504565b6001600160e01b0319811663f23a6e6160e01b14610e855760405162461bcd60e51b815260040161050490612423565b6001600160a01b0384166117275760405162461bcd60e51b81526004016105049061225f565b336000611733856112a6565b90506000611740856112a6565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156117835760405162461bcd60e51b8152600401610504906122a4565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a168252812080548892906117c090849061218f565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611820848a8a8a8a8a6115a6565b505050505050505050565b6001600160a01b0384163b156107415760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061186f908990899088908890889060040161246b565b6020604051808303816000875af19250505080156118aa575060408051601f3d908101601f191682019092526118a791810190612361565b60015b6118b65761163161237e565b6001600160e01b0319811663bc197c8160e01b14610e855760405162461bcd60e51b815260040161050490612423565b80356001600160a01b03811681146118fd57600080fd5b919050565b6000806040838503121561191557600080fd5b61191e836118e6565b946020939093013593505050565b6001600160e01b031981168114610c7b57600080fd5b60006020828403121561195457600080fd5b813561195f8161192c565b9392505050565b60008060006060848603121561197b57600080fd5b611984846118e6565b95602085013595506040909401359392505050565b60005b838110156119b457818101518382015260200161199c565b50506000910152565b600081518084526119d5816020860160208601611999565b601f01601f19169290920160200192915050565b60208152600061195f60208301846119bd565b600060208284031215611a0e57600080fd5b5035919050565b8015158114610c7b57600080fd5b600060208284031215611a3557600080fd5b813561195f81611a15565b634e487b7160e01b600052604160045260246000fd5b601f8201601f191681016001600160401b0381118282101715611a7b57611a7b611a40565b6040525050565b60006001600160401b03821115611a9b57611a9b611a40565b5060051b60200190565b600082601f830112611ab657600080fd5b81356020611ac382611a82565b604051611ad08282611a56565b83815260059390931b8501820192828101915086841115611af057600080fd5b8286015b84811015611b0b5780358352918301918301611af4565b509695505050505050565b600082601f830112611b2757600080fd5b81356001600160401b03811115611b4057611b40611a40565b604051611b57601f8301601f191660200182611a56565b818152846020838601011115611b6c57600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a08688031215611ba157600080fd5b611baa866118e6565b9450611bb8602087016118e6565b935060408601356001600160401b0380821115611bd457600080fd5b611be089838a01611aa5565b94506060880135915080821115611bf657600080fd5b611c0289838a01611aa5565b93506080880135915080821115611c1857600080fd5b50611c2588828901611b16565b9150509295509295909350565b600060208284031215611c4457600080fd5b61195f826118e6565b60008060408385031215611c6057600080fd5b82356001600160401b0380821115611c7757600080fd5b818501915085601f830112611c8b57600080fd5b81356020611c9882611a82565b604051611ca58282611a56565b83815260059390931b8501820192828101915089841115611cc557600080fd5b948201945b83861015611cea57611cdb866118e6565b82529482019490820190611cca565b96505086013592505080821115611d0057600080fd5b50611d0d85828601611aa5565b9150509250929050565b600081518084526020808501945080840160005b83811015611d4757815187529582019590820190600101611d2b565b509495945050505050565b60208152600061195f6020830184611d17565b60008060408385031215611d7857600080fd5b611d81836118e6565b91506020830135611d9181611a15565b809150509250929050565b60008060208385031215611daf57600080fd5b82356001600160401b0380821115611dc657600080fd5b818501915085601f830112611dda57600080fd5b813581811115611de957600080fd5b866020828501011115611dfb57600080fd5b60209290920196919550909350505050565b60008083601f840112611e1f57600080fd5b5081356001600160401b03811115611e3657600080fd5b6020830191508360208260051b8501011115611e5157600080fd5b9250929050565b600080600080600060608688031215611e7057600080fd5b85356001600160401b0380821115611e8757600080fd5b611e9389838a01611e0d565b90975095506020880135915080821115611eac57600080fd5b50611eb988828901611e0d565b96999598509660400135949350505050565b60008060408385031215611ede57600080fd5b611ee7836118e6565b9150611ef5602084016118e6565b90509250929050565b600080600080600060a08688031215611f1657600080fd5b611f1f866118e6565b9450611f2d602087016118e6565b9350604086013592506060860135915060808601356001600160401b03811115611f5657600080fd5b611c2588828901611b16565b60008060408385031215611f7557600080fd5b50508035926020909101359150565b600181811c90821680611f9857607f821691505b602082108103611fb857634e487b7160e01b600052602260045260246000fd5b50919050565b6000808454611fcc81611f84565b60018281168015611fe45760018114611ff957612028565b60ff1984168752821515830287019450612028565b8860005260208060002060005b8581101561201f5781548a820152908401908201612006565b50505082870194505b50505050835161203c818360208801611999565b01949350505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016120835761208361205b565b5060010190565b601f82111561062d57600081815260208120601f850160051c810160208610156120b15750805b601f850160051c820191505b81811015610741578281556001016120bd565b6001600160401b038311156120e7576120e7611a40565b6120fb836120f58354611f84565b8361208a565b6000601f84116001811461212f57600085156121175750838201355b600019600387901b1c1916600186901b1783556110ee565b600083815260209020601f19861690835b828110156121605786850135825560209485019460019092019101612140565b508682101561217d5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b808201808211156105305761053061205b565b634e487b7160e01b600052601260045260246000fd5b6000826121c7576121c76121a2565b500490565b818103818111156105305761053061205b565b6000826121ee576121ee6121a2565b500690565b60006020828403121561220557600080fd5b815161195f81611a15565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6040815260006123016040830185611d17565b82810360208401526123138185611d17565b95945050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a060808201819052600090612356908301846119bd565b979650505050505050565b60006020828403121561237357600080fd5b815161195f8161192c565b600060033d11156123975760046000803e5060005160e01c5b90565b600060443d10156123a85790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156123d757505050505090565b82850191508151818111156123ef5750505050505090565b843d87010160208285010111156124095750505050505090565b61241860208286010187611a56565b509095945050505050565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b0386811682528516602082015260a06040820181905260009061249790830186611d17565b82810360608401526124a98186611d17565b905082810360808401526124bd81856119bd565b9897505050505050505056fea264697066735822122032e4d5587f773ecfc230dda046b4c546c6baf39a346a9574b93237ac1ab17d6664736f6c63430008110033

Deployed Bytecode Sourcemap

45641:3403:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30087:230;;;;;;:::i;:::-;;:::i;:::-;;;597:25:1;;;585:2;570:18;30087:230:0;;;;;;;;29110:310;;;;;;:::i;:::-;;:::i;:::-;;;1184:14:1;;1177:22;1159:41;;1147:2;1132:18;29110:310:0;1019:187:1;47221:277:0;;;;;;:::i;:::-;;:::i;:::-;;48109:83;;;:::i;:::-;;;;;;;:::i;47939:162::-;;;;;;:::i;:::-;;:::i;47709:109::-;;;;;;:::i;:::-;;:::i;45917:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;48739:302;;;;;;:::i;:::-;;:::i;45842:30::-;;;;;;;;;;;;47826:105;;;;;;:::i;:::-;;:::i;45725:22::-;;;:::i;2827:143::-;;2927:42;2827:143;;;;;-1:-1:-1;;;;;6045:32:1;;;6027:51;;6015:2;6000:18;2827:143:0;5850:234:1;30483:524:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9805:103::-;;;:::i;9157:87::-;9230:6;;-1:-1:-1;;;;;9230:6:0;9157:87;;45812:22;;;;;;;;;48200:87;;;:::i;47608:93::-;;;;;;:::i;:::-;;:::i;46027:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;48295:176;;;;;;:::i;:::-;;:::i;47506:94::-;;;;;;:::i;:::-;;:::i;45780:21::-;;;:::i;45880:28::-;;;;;;;;-1:-1:-1;;;;;45880:28:0;;;45970:50;;;;;;:::i;:::-;;;;;;;;;;;;;;46198:467;;;;;;:::i;:::-;;:::i;45754:19::-;;;:::i;31307:168::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31430:27:0;;;31406:4;31430:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;31307:168;46923:290;;;;;;:::i;:::-;;:::i;48479:252::-;;;;;;:::i;:::-;;:::i;10063:201::-;;;;;;:::i;:::-;;:::i;46673:242::-;;;;;;:::i;:::-;;:::i;30087:230::-;30173:7;-1:-1:-1;;;;;30201:21:0;;30193:76;;;;-1:-1:-1;;;30193:76:0;;11682:2:1;30193:76:0;;;11664:21:1;11721:2;11701:18;;;11694:30;11760:34;11740:18;;;11733:62;-1:-1:-1;;;11811:18:1;;;11804:40;11861:19;;30193:76:0;;;;;;;;;-1:-1:-1;30287:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;30287:22:0;;;;;;;;;;30087:230;;;;;:::o;29110:310::-;29212:4;-1:-1:-1;;;;;;29249:41:0;;-1:-1:-1;;;29249:41:0;;:110;;-1:-1:-1;;;;;;;29307:52:0;;-1:-1:-1;;;29307:52:0;29249:110;:163;;;-1:-1:-1;;;;;;;;;;20661:40:0;;;29376:36;20552:157;47221:277;47336:18;;;;;;;47328:51;;;;-1:-1:-1;;;47328:51:0;;12093:2:1;47328:51:0;;;12075:21:1;12132:2;12112:18;;;12105:30;-1:-1:-1;;;12151:18:1;;;12144:50;12211:18;;47328:51:0;11891:344:1;47328:51:0;47398:13;;;;;-1:-1:-1;;;;;47398:13:0;47415:10;47398:27;47390:51;;;;-1:-1:-1;;;47390:51:0;;12442:2:1;47390:51:0;;;12424:21:1;12481:2;12461:18;;;12454:30;-1:-1:-1;;;12500:18:1;;;12493:41;12551:18;;47390:51:0;12240:335:1;47390:51:0;47452:38;47458:6;47466:7;47475:14;47452:5;:38::i;:::-;47221:277;;;:::o;48109:83::-;48146:13;48179:5;48172:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48109:83;:::o;47939:162::-;47999:13;48056:8;48066:25;48083:7;48066:16;:25::i;:::-;48039:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48025:68;;47939:162;;;:::o;47709:109::-;9043:13;:11;:13::i;:::-;47782:18:::1;:28:::0;;;::::1;;;;-1:-1:-1::0;;47782:28:0;;::::1;::::0;;;::::1;::::0;;47709:109::o;48739:302::-;48959:4;-1:-1:-1;;;;;4168:18:0;;4176:10;4168:18;4164:83;;4203:32;4224:10;4203:20;:32::i;:::-;48976:57:::1;49004:4;49010:2;49014:3;49019:7;49028:4;48976:27;:57::i;:::-;48739:302:::0;;;;;;:::o;47826:105::-;9043:13;:11;:13::i;:::-;47898::::1;:25:::0;;-1:-1:-1;;;;;47898:25:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;47898:25:0;;::::1;::::0;;;::::1;::::0;;47826:105::o;45725:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30483:524::-;30639:16;30700:3;:10;30681:8;:15;:29;30673:83;;;;-1:-1:-1;;;30673:83:0;;14318:2:1;30673:83:0;;;14300:21:1;14357:2;14337:18;;;14330:30;14396:34;14376:18;;;14369:62;-1:-1:-1;;;14447:18:1;;;14440:39;14496:19;;30673:83:0;14116:405:1;30673:83:0;30769:30;30816:8;:15;-1:-1:-1;;;;;30802:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30802:30:0;;30769:63;;30850:9;30845:122;30869:8;:15;30865:1;:19;30845:122;;;30925:30;30935:8;30944:1;30935:11;;;;;;;;:::i;:::-;;;;;;;30948:3;30952:1;30948:6;;;;;;;;:::i;:::-;;;;;;;30925:9;:30::i;:::-;30906:13;30920:1;30906:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;30886:3;;;:::i;:::-;;;30845:122;;;-1:-1:-1;30986:13:0;30483:524;-1:-1:-1;;;30483:524:0:o;9805:103::-;9043:13;:11;:13::i;:::-;9870:30:::1;9897:1;9870:18;:30::i;:::-;9805:103::o:0;48200:87::-;48239:13;48272:7;48265:14;;;;;:::i;47608:93::-;9043:13;:11;:13::i;:::-;47673:10:::1;:20:::0;;-1:-1:-1;;47673:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47608:93::o;48295:176::-;48399:8;4348:30;4369:8;4348:20;:30::i;:::-;48420:43:::1;48444:8;48454;48420:23;:43::i;47506:94::-:0;9043:13;:11;:13::i;:::-;47577:8:::1;:15;47588:4:::0;;47577:8;:15:::1;:::i;45780:21::-:0;;;;;;;:::i;46198:467::-;9043:13;:11;:13::i;:::-;46327:23:::1;::::0;;;:14:::1;:23;::::0;;;;;::::1;;46319:66;;;::::0;-1:-1:-1;;;46319:66:0;;17064:2:1;46319:66:0::1;::::0;::::1;17046:21:1::0;17103:2;17083:18;;;17076:30;17142:33;17122:18;;;17115:61;17193:18;;46319:66:0::1;16862:355:1::0;46319:66:0::1;46400:9;46396:262;46415:17:::0;;::::1;46396:262;;;46507:20;::::0;;;:11:::1;:20;::::0;;;;;46489:11;;46501:1;46489:14;;::::1;;;;;:::i;:::-;;;;;;;46462:15;:24;46478:7;46462:24;;;;;;;;;;;;:41;;;;:::i;:::-;:65;;46454:74;;;::::0;::::1;;46543:45;46549:6;;46556:1;46549:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;46560:7;46569:11;;46581:1;46569:14;;;;;;;:::i;:::-;;;;;;;46543:45;;;;;;;;;;;::::0;:5:::1;:45::i;:::-;46632:11;;46644:1;46632:14;;;;;;;:::i;:::-;;;;;;;46603:15;:24;46619:7;46603:24;;;;;;;;;;;;:43;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;46434:3:0;;-1:-1:-1;46434:3:0::1;::::0;::::1;:::i;:::-;;;;46396:262;;45754:19:::0;;;;;;;:::i;46923:290::-;47026:10;;;;47018:43;;;;-1:-1:-1;;;47018:43:0;;12093:2:1;47018:43:0;;;12075:21:1;12132:2;12112:18;;;12105:30;-1:-1:-1;;;12151:18:1;;;12144:50;12211:18;;47018:43:0;11891:344:1;47018:43:0;-1:-1:-1;;;;;47080:20:0;;47090:10;47080:20;;:60;;-1:-1:-1;;;;;;31430:27:0;;31406:4;31430:27;;;:18;:27;;;;;;;;47129:10;31430:37;;;;;;;;;;47104:36;47072:84;;;;-1:-1:-1;;;47072:84:0;;12442:2:1;47072:84:0;;;12424:21:1;12481:2;12461:18;;;12454:30;-1:-1:-1;;;12500:18:1;;;12493:41;12551:18;;47072:84:0;12240:335:1;48479:252:0;48646:4;-1:-1:-1;;;;;4168:18:0;;4176:10;4168:18;4164:83;;4203:32;4224:10;4203:20;:32::i;:::-;48668:55:::1;48691:4;48697:2;48701:7;48710:6;48718:4;48668:22;:55::i;10063:201::-:0;9043:13;:11;:13::i;:::-;-1:-1:-1;;;;;10152:22:0;::::1;10144:73;;;::::0;-1:-1:-1;;;10144:73:0;;17554:2:1;10144:73:0::1;::::0;::::1;17536:21:1::0;17593:2;17573:18;;;17566:30;17632:34;17612:18;;;17605:62;-1:-1:-1;;;17683:18:1;;;17676:36;17729:19;;10144:73:0::1;17352:402:1::0;10144:73:0::1;10228:28;10247:8;10228:18;:28::i;:::-;10063:201:::0;:::o;46673:242::-;9043:13;:11;:13::i;:::-;46762:23:::1;::::0;;;:14:::1;:23;::::0;;;;;::::1;;:32;46754:71;;;::::0;-1:-1:-1;;;46754:71:0;;17961:2:1;46754:71:0::1;::::0;::::1;17943:21:1::0;18000:2;17980:18;;;17973:30;18039:28;18019:18;;;18012:56;18085:18;;46754:71:0::1;17759:350:1::0;46754:71:0::1;46836:20;::::0;;;:11:::1;:20;::::0;;;;;;;:30;;;;46877:14:::1;:23:::0;;;;:30;;-1:-1:-1;;46877:30:0::1;46903:4;46877:30;::::0;;46673:242::o;38973:808::-;-1:-1:-1;;;;;39100:18:0;;39092:66;;;;-1:-1:-1;;;39092:66:0;;18316:2:1;39092:66:0;;;18298:21:1;18355:2;18335:18;;;18328:30;18394:34;18374:18;;;18367:62;-1:-1:-1;;;18445:18:1;;;18438:33;18488:19;;39092:66:0;18114:399:1;39092:66:0;7917:10;39171:16;39236:21;39254:2;39236:17;:21::i;:::-;39213:44;;39268:24;39295:25;39313:6;39295:17;:25::i;:::-;39333:66;;;;;;;;;-1:-1:-1;39333:66:0;;;;39434:13;;;;;;;;;-1:-1:-1;;;;;39434:19:0;;;;;;;;39268:52;;-1:-1:-1;39472:21:0;;;;39464:70;;;;-1:-1:-1;;;39464:70:0;;18720:2:1;39464:70:0;;;18702:21:1;18759:2;18739:18;;;18732:30;18798:34;18778:18;;;18771:62;-1:-1:-1;;;18849:18:1;;;18842:34;18893:19;;39464:70:0;18518:400:1;39464:70:0;39570:9;:13;;;;;;;;;;;-1:-1:-1;;;;;39570:19:0;;;;;;;;;;;;39592:20;;;39570:42;;39641:54;;19097:25:1;;;19138:18;;;19131:34;;;39570:19:0;;39641:54;;;;;;19070:18:1;39641:54:0;;;;;;;39708:65;;;;;;;;;39752:1;39708:65;;;39081:700;;;;38973:808;;;:::o;5511:723::-;5567:13;5788:5;5797:1;5788:10;5784:53;;-1:-1:-1;;5815:10:0;;;;;;;;;;;;-1:-1:-1;;;5815:10:0;;;;;5511:723::o;5784:53::-;5862:5;5847:12;5903:78;5910:9;;5903:78;;5936:8;;;;:::i;:::-;;-1:-1:-1;5959:10:0;;-1:-1:-1;5967:2:0;5959:10;;:::i;:::-;;;5903:78;;;5991:19;6023:6;-1:-1:-1;;;;;6013:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6013:17:0;;5991:39;;6041:154;6048:10;;6041:154;;6075:11;6085:1;6075:11;;:::i;:::-;;-1:-1:-1;6144:10:0;6152:2;6144:5;:10;:::i;:::-;6131:24;;:2;:24;:::i;:::-;6118:39;;6101:6;6108;6101:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6101:56:0;;;;;;;;-1:-1:-1;6172:11:0;6181:2;6172:11;;:::i;:::-;;;6041:154;;;6219:6;5511:723;-1:-1:-1;;;;5511:723:0:o;9322:132::-;9230:6;;-1:-1:-1;;;;;9230:6:0;7917:10;9386:23;9378:68;;;;-1:-1:-1;;;9378:68:0;;19885:2:1;9378:68:0;;;19867:21:1;;;19904:18;;;19897:30;19963:34;19943:18;;;19936:62;20015:18;;9378:68:0;19683:356:1;4410:419:0;2927:42;4601:45;:49;4597:225;;4672:67;;-1:-1:-1;;;4672:67:0;;4723:4;4672:67;;;20256:34:1;-1:-1:-1;;;;;20326:15:1;;20306:18;;;20299:43;2927:42:0;;4672;;20191:18:1;;4672:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4667:144;;4767:28;;-1:-1:-1;;;4767:28:0;;-1:-1:-1;;;;;6045:32:1;;4767:28:0;;;6027:51:1;6000:18;;4767:28:0;5850:234:1;32031:439:0;-1:-1:-1;;;;;32264:20:0;;7917:10;32264:20;;:60;;-1:-1:-1;32288:36:0;32305:4;7917:10;31307:168;:::i;32288:36::-;32242:157;;;;-1:-1:-1;;;32242:157:0;;;;;;;:::i;:::-;32410:52;32433:4;32439:2;32443:3;32448:7;32457:4;32410:22;:52::i;:::-;32031:439;;;;;:::o;10424:191::-;10517:6;;;-1:-1:-1;;;;;10534:17:0;;;-1:-1:-1;;;;;;10534:17:0;;;;;;;10567:40;;10517:6;;;10534:17;10517:6;;10567:40;;10498:16;;10567:40;10487:128;10424:191;:::o;31080:155::-;31175:52;7917:10;31208:8;31218;31175:18;:52::i;:::-;31080:155;;:::o;36730:729::-;-1:-1:-1;;;;;36883:16:0;;36875:62;;;;-1:-1:-1;;;36875:62:0;;21221:2:1;36875:62:0;;;21203:21:1;21260:2;21240:18;;;21233:30;21299:34;21279:18;;;21272:62;-1:-1:-1;;;21350:18:1;;;21343:31;21391:19;;36875:62:0;21019:397:1;36875:62:0;7917:10;36950:16;37015:21;37033:2;37015:17;:21::i;:::-;36992:44;;37047:24;37074:25;37092:6;37074:17;:25::i;:::-;37047:52;;37191:9;:13;;;;;;;;;;;-1:-1:-1;;;;;37191:17:0;;;;;;;;;:27;;37212:6;;37191:9;:27;;37212:6;;37191:27;:::i;:::-;;;;-1:-1:-1;;37234:52:0;;;19097:25:1;;;19153:2;19138:18;;19131:34;;;-1:-1:-1;;;;;37234:52:0;;;;37267:1;;37234:52;;;;;;19070:18:1;37234:52:0;;;;;;;37377:74;37408:8;37426:1;37430:2;37434;37438:6;37446:4;37377:30;:74::i;31547:407::-;-1:-1:-1;;;;;31755:20:0;;7917:10;31755:20;;:60;;-1:-1:-1;31779:36:0;31796:4;7917:10;31307:168;:::i;31779:36::-;31733:157;;;;-1:-1:-1;;;31733:157:0;;;;;;;:::i;:::-;31901:45;31919:4;31925:2;31929;31933:6;31941:4;31901:17;:45::i;45409:198::-;45529:16;;;45543:1;45529:16;;;;;;;;;45475;;45504:22;;45529:16;;;;;;;;;;;;-1:-1:-1;45529:16:0;45504:41;;45567:7;45556:5;45562:1;45556:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;45594:5;45409:198;-1:-1:-1;;45409:198:0:o;34266:1146::-;34493:7;:14;34479:3;:10;:28;34471:81;;;;-1:-1:-1;;;34471:81:0;;21623:2:1;34471:81:0;;;21605:21:1;21662:2;21642:18;;;21635:30;21701:34;21681:18;;;21674:62;-1:-1:-1;;;21752:18:1;;;21745:38;21800:19;;34471:81:0;21421:404:1;34471:81:0;-1:-1:-1;;;;;34571:16:0;;34563:66;;;;-1:-1:-1;;;34563:66:0;;;;;;;:::i;:::-;7917:10;34642:16;34759:421;34783:3;:10;34779:1;:14;34759:421;;;34815:10;34828:3;34832:1;34828:6;;;;;;;;:::i;:::-;;;;;;;34815:19;;34849:14;34866:7;34874:1;34866:10;;;;;;;;:::i;:::-;;;;;;;;;;;;34893:19;34915:13;;;;;;;;;;-1:-1:-1;;;;;34915:19:0;;;;;;;;;;;;34866:10;;-1:-1:-1;34957:21:0;;;;34949:76;;;;-1:-1:-1;;;34949:76:0;;;;;;;:::i;:::-;35069:9;:13;;;;;;;;;;;-1:-1:-1;;;;;35069:19:0;;;;;;;;;;35091:20;;;35069:42;;35141:17;;;;;;;:27;;35091:20;;35069:9;35141:27;;35091:20;;35141:27;:::i;:::-;;;;;;;;34800:380;;;34795:3;;;;:::i;:::-;;;34759:421;;;;35227:2;-1:-1:-1;;;;;35197:47:0;35221:4;-1:-1:-1;;;;;35197:47:0;35211:8;-1:-1:-1;;;;;35197:47:0;;35231:3;35236:7;35197:47;;;;;;;:::i;:::-;;;;;;;;35329:75;35365:8;35375:4;35381:2;35385:3;35390:7;35399:4;35329:35;:75::i;41143:331::-;41298:8;-1:-1:-1;;;;;41289:17:0;:5;-1:-1:-1;;;;;41289:17:0;;41281:71;;;;-1:-1:-1;;;41281:71:0;;23319:2:1;41281:71:0;;;23301:21:1;23358:2;23338:18;;;23331:30;23397:34;23377:18;;;23370:62;-1:-1:-1;;;23448:18:1;;;23441:39;23497:19;;41281:71:0;23117:405:1;41281:71:0;-1:-1:-1;;;;;41363:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41363:46:0;;;;;;;;;;41425:41;;1159::1;;;41425::0;;1132:18:1;41425:41:0;;;;;;;41143:331;;;:::o;43836:744::-;-1:-1:-1;;;;;44051:13:0;;12023:19;:23;44047:526;;44087:72;;-1:-1:-1;;;44087:72:0;;-1:-1:-1;;;;;44087:38:0;;;;;:72;;44126:8;;44136:4;;44142:2;;44146:6;;44154:4;;44087:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44087:72:0;;;;;;;;-1:-1:-1;;44087:72:0;;;;;;;;;;;;:::i;:::-;;;44083:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;44435:6;44428:14;;-1:-1:-1;;;44428:14:0;;;;;;;;:::i;44083:479::-;;;44484:62;;-1:-1:-1;;;44484:62:0;;25409:2:1;44484:62:0;;;25391:21:1;25448:2;25428:18;;;25421:30;25487:34;25467:18;;;25460:62;-1:-1:-1;;;25538:18:1;;;25531:50;25598:19;;44484:62:0;25207:416:1;44083:479:0;-1:-1:-1;;;;;;44209:55:0;;-1:-1:-1;;;44209:55:0;44205:154;;44289:50;;-1:-1:-1;;;44289:50:0;;;;;;;:::i;32934:974::-;-1:-1:-1;;;;;33122:16:0;;33114:66;;;;-1:-1:-1;;;33114:66:0;;;;;;;:::i;:::-;7917:10;33193:16;33258:21;33276:2;33258:17;:21::i;:::-;33235:44;;33290:24;33317:25;33335:6;33317:17;:25::i;:::-;33290:52;;33428:19;33450:13;;;;;;;;;;;-1:-1:-1;;;;;33450:19:0;;;;;;;;;;33488:21;;;;33480:76;;;;-1:-1:-1;;;33480:76:0;;;;;;;:::i;:::-;33592:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33592:19:0;;;;;;;;;;33614:20;;;33592:42;;33656:17;;;;;;;:27;;33614:20;;33592:9;33656:27;;33614:20;;33656:27;:::i;:::-;;;;-1:-1:-1;;33701:46:0;;;19097:25:1;;;19153:2;19138:18;;19131:34;;;-1:-1:-1;;;;;33701:46:0;;;;;;;;;;;;;;19070:18:1;33701:46:0;;;;;;;33832:68;33863:8;33873:4;33879:2;33883;33887:6;33895:4;33832:30;:68::i;:::-;33103:805;;;;32934:974;;;;;:::o;44588:813::-;-1:-1:-1;;;;;44828:13:0;;12023:19;:23;44824:570;;44864:79;;-1:-1:-1;;;44864:79:0;;-1:-1:-1;;;;;44864:43:0;;;;;:79;;44908:8;;44918:4;;44924:3;;44929:7;;44938:4;;44864:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44864:79:0;;;;;;;;-1:-1:-1;;44864:79:0;;;;;;;;;;;;:::i;:::-;;;44860:523;;;;:::i;:::-;-1:-1:-1;;;;;;45025:60:0;;-1:-1:-1;;;45025:60:0;45021:159;;45110:50;;-1:-1:-1;;;45110:50:0;;;;;;;:::i;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:322::-;1288:6;1296;1304;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;1396:29;1415:9;1396:29;:::i;:::-;1386:39;1472:2;1457:18;;1444:32;;-1:-1:-1;1523:2:1;1508:18;;;1495:32;;1211:322;-1:-1:-1;;;1211:322:1:o;1538:250::-;1623:1;1633:113;1647:6;1644:1;1641:13;1633:113;;;1723:11;;;1717:18;1704:11;;;1697:39;1669:2;1662:10;1633:113;;;-1:-1:-1;;1780:1:1;1762:16;;1755:27;1538:250::o;1793:271::-;1835:3;1873:5;1867:12;1900:6;1895:3;1888:19;1916:76;1985:6;1978:4;1973:3;1969:14;1962:4;1955:5;1951:16;1916:76;:::i;:::-;2046:2;2025:15;-1:-1:-1;;2021:29:1;2012:39;;;;2053:4;2008:50;;1793:271;-1:-1:-1;;1793:271:1:o;2069:220::-;2218:2;2207:9;2200:21;2181:4;2238:45;2279:2;2268:9;2264:18;2256:6;2238:45;:::i;2294:180::-;2353:6;2406:2;2394:9;2385:7;2381:23;2377:32;2374:52;;;2422:1;2419;2412:12;2374:52;-1:-1:-1;2445:23:1;;2294:180;-1:-1:-1;2294:180:1:o;2479:118::-;2565:5;2558:13;2551:21;2544:5;2541:32;2531:60;;2587:1;2584;2577:12;2602:241;2658:6;2711:2;2699:9;2690:7;2686:23;2682:32;2679:52;;;2727:1;2724;2717:12;2679:52;2766:9;2753:23;2785:28;2807:5;2785:28;:::i;2848:127::-;2909:10;2904:3;2900:20;2897:1;2890:31;2940:4;2937:1;2930:15;2964:4;2961:1;2954:15;2980:249;3090:2;3071:13;;-1:-1:-1;;3067:27:1;3055:40;;-1:-1:-1;;;;;3110:34:1;;3146:22;;;3107:62;3104:88;;;3172:18;;:::i;:::-;3208:2;3201:22;-1:-1:-1;;2980:249:1:o;3234:183::-;3294:4;-1:-1:-1;;;;;3319:6:1;3316:30;3313:56;;;3349:18;;:::i;:::-;-1:-1:-1;3394:1:1;3390:14;3406:4;3386:25;;3234:183::o;3422:724::-;3476:5;3529:3;3522:4;3514:6;3510:17;3506:27;3496:55;;3547:1;3544;3537:12;3496:55;3583:6;3570:20;3609:4;3632:43;3672:2;3632:43;:::i;:::-;3704:2;3698:9;3716:31;3744:2;3736:6;3716:31;:::i;:::-;3782:18;;;3874:1;3870:10;;;;3858:23;;3854:32;;;3816:15;;;;-1:-1:-1;3898:15:1;;;3895:35;;;3926:1;3923;3916:12;3895:35;3962:2;3954:6;3950:15;3974:142;3990:6;3985:3;3982:15;3974:142;;;4056:17;;4044:30;;4094:12;;;;4007;;3974:142;;;-1:-1:-1;4134:6:1;3422:724;-1:-1:-1;;;;;;3422:724:1:o;4151:555::-;4193:5;4246:3;4239:4;4231:6;4227:17;4223:27;4213:55;;4264:1;4261;4254:12;4213:55;4300:6;4287:20;-1:-1:-1;;;;;4322:2:1;4319:26;4316:52;;;4348:18;;:::i;:::-;4397:2;4391:9;4409:67;4464:2;4445:13;;-1:-1:-1;;4441:27:1;4470:4;4437:38;4391:9;4409:67;:::i;:::-;4500:2;4492:6;4485:18;4546:3;4539:4;4534:2;4526:6;4522:15;4518:26;4515:35;4512:55;;;4563:1;4560;4553:12;4512:55;4627:2;4620:4;4612:6;4608:17;4601:4;4593:6;4589:17;4576:54;4674:1;4650:15;;;4667:4;4646:26;4639:37;;;;4654:6;4151:555;-1:-1:-1;;;4151:555:1:o;4711:943::-;4865:6;4873;4881;4889;4897;4950:3;4938:9;4929:7;4925:23;4921:33;4918:53;;;4967:1;4964;4957:12;4918:53;4990:29;5009:9;4990:29;:::i;:::-;4980:39;;5038:38;5072:2;5061:9;5057:18;5038:38;:::i;:::-;5028:48;;5127:2;5116:9;5112:18;5099:32;-1:-1:-1;;;;;5191:2:1;5183:6;5180:14;5177:34;;;5207:1;5204;5197:12;5177:34;5230:61;5283:7;5274:6;5263:9;5259:22;5230:61;:::i;:::-;5220:71;;5344:2;5333:9;5329:18;5316:32;5300:48;;5373:2;5363:8;5360:16;5357:36;;;5389:1;5386;5379:12;5357:36;5412:63;5467:7;5456:8;5445:9;5441:24;5412:63;:::i;:::-;5402:73;;5528:3;5517:9;5513:19;5500:33;5484:49;;5558:2;5548:8;5545:16;5542:36;;;5574:1;5571;5564:12;5542:36;;5597:51;5640:7;5629:8;5618:9;5614:24;5597:51;:::i;:::-;5587:61;;;4711:943;;;;;;;;:::o;5659:186::-;5718:6;5771:2;5759:9;5750:7;5746:23;5742:32;5739:52;;;5787:1;5784;5777:12;5739:52;5810:29;5829:9;5810:29;:::i;6089:1208::-;6207:6;6215;6268:2;6256:9;6247:7;6243:23;6239:32;6236:52;;;6284:1;6281;6274:12;6236:52;6324:9;6311:23;-1:-1:-1;;;;;6394:2:1;6386:6;6383:14;6380:34;;;6410:1;6407;6400:12;6380:34;6448:6;6437:9;6433:22;6423:32;;6493:7;6486:4;6482:2;6478:13;6474:27;6464:55;;6515:1;6512;6505:12;6464:55;6551:2;6538:16;6573:4;6596:43;6636:2;6596:43;:::i;:::-;6668:2;6662:9;6680:31;6708:2;6700:6;6680:31;:::i;:::-;6746:18;;;6834:1;6830:10;;;;6822:19;;6818:28;;;6780:15;;;;-1:-1:-1;6858:19:1;;;6855:39;;;6890:1;6887;6880:12;6855:39;6914:11;;;;6934:148;6950:6;6945:3;6942:15;6934:148;;;7016:23;7035:3;7016:23;:::i;:::-;7004:36;;6967:12;;;;7060;;;;6934:148;;;7101:6;-1:-1:-1;;7145:18:1;;7132:32;;-1:-1:-1;;7176:16:1;;;7173:36;;;7205:1;7202;7195:12;7173:36;;7228:63;7283:7;7272:8;7261:9;7257:24;7228:63;:::i;:::-;7218:73;;;6089:1208;;;;;:::o;7302:435::-;7355:3;7393:5;7387:12;7420:6;7415:3;7408:19;7446:4;7475:2;7470:3;7466:12;7459:19;;7512:2;7505:5;7501:14;7533:1;7543:169;7557:6;7554:1;7551:13;7543:169;;;7618:13;;7606:26;;7652:12;;;;7687:15;;;;7579:1;7572:9;7543:169;;;-1:-1:-1;7728:3:1;;7302:435;-1:-1:-1;;;;;7302:435:1:o;7742:261::-;7921:2;7910:9;7903:21;7884:4;7941:56;7993:2;7982:9;7978:18;7970:6;7941:56;:::i;8216:315::-;8281:6;8289;8342:2;8330:9;8321:7;8317:23;8313:32;8310:52;;;8358:1;8355;8348:12;8310:52;8381:29;8400:9;8381:29;:::i;:::-;8371:39;;8460:2;8449:9;8445:18;8432:32;8473:28;8495:5;8473:28;:::i;:::-;8520:5;8510:15;;;8216:315;;;;;:::o;8536:592::-;8607:6;8615;8668:2;8656:9;8647:7;8643:23;8639:32;8636:52;;;8684:1;8681;8674:12;8636:52;8724:9;8711:23;-1:-1:-1;;;;;8794:2:1;8786:6;8783:14;8780:34;;;8810:1;8807;8800:12;8780:34;8848:6;8837:9;8833:22;8823:32;;8893:7;8886:4;8882:2;8878:13;8874:27;8864:55;;8915:1;8912;8905:12;8864:55;8955:2;8942:16;8981:2;8973:6;8970:14;8967:34;;;8997:1;8994;8987:12;8967:34;9042:7;9037:2;9028:6;9024:2;9020:15;9016:24;9013:37;9010:57;;;9063:1;9060;9053:12;9010:57;9094:2;9086:11;;;;;9116:6;;-1:-1:-1;8536:592:1;;-1:-1:-1;;;;8536:592:1:o;9133:367::-;9196:8;9206:6;9260:3;9253:4;9245:6;9241:17;9237:27;9227:55;;9278:1;9275;9268:12;9227:55;-1:-1:-1;9301:20:1;;-1:-1:-1;;;;;9333:30:1;;9330:50;;;9376:1;9373;9366:12;9330:50;9413:4;9405:6;9401:17;9389:29;;9473:3;9466:4;9456:6;9453:1;9449:14;9441:6;9437:27;9433:38;9430:47;9427:67;;;9490:1;9487;9480:12;9427:67;9133:367;;;;;:::o;9505:841::-;9636:6;9644;9652;9660;9668;9721:2;9709:9;9700:7;9696:23;9692:32;9689:52;;;9737:1;9734;9727:12;9689:52;9777:9;9764:23;-1:-1:-1;;;;;9847:2:1;9839:6;9836:14;9833:34;;;9863:1;9860;9853:12;9833:34;9902:70;9964:7;9955:6;9944:9;9940:22;9902:70;:::i;:::-;9991:8;;-1:-1:-1;9876:96:1;-1:-1:-1;10079:2:1;10064:18;;10051:32;;-1:-1:-1;10095:16:1;;;10092:36;;;10124:1;10121;10114:12;10092:36;;10163:72;10227:7;10216:8;10205:9;10201:24;10163:72;:::i;:::-;9505:841;;;;-1:-1:-1;10254:8:1;10336:2;10321:18;10308:32;;9505:841;-1:-1:-1;;;;9505:841:1:o;10351:260::-;10419:6;10427;10480:2;10468:9;10459:7;10455:23;10451:32;10448:52;;;10496:1;10493;10486:12;10448:52;10519:29;10538:9;10519:29;:::i;:::-;10509:39;;10567:38;10601:2;10590:9;10586:18;10567:38;:::i;:::-;10557:48;;10351:260;;;;;:::o;10616:606::-;10720:6;10728;10736;10744;10752;10805:3;10793:9;10784:7;10780:23;10776:33;10773:53;;;10822:1;10819;10812:12;10773:53;10845:29;10864:9;10845:29;:::i;:::-;10835:39;;10893:38;10927:2;10916:9;10912:18;10893:38;:::i;:::-;10883:48;;10978:2;10967:9;10963:18;10950:32;10940:42;;11029:2;11018:9;11014:18;11001:32;10991:42;;11084:3;11073:9;11069:19;11056:33;-1:-1:-1;;;;;11104:6:1;11101:30;11098:50;;;11144:1;11141;11134:12;11098:50;11167:49;11208:7;11199:6;11188:9;11184:22;11167:49;:::i;11227:248::-;11295:6;11303;11356:2;11344:9;11335:7;11331:23;11327:32;11324:52;;;11372:1;11369;11362:12;11324:52;-1:-1:-1;;11395:23:1;;;11465:2;11450:18;;;11437:32;;-1:-1:-1;11227:248:1:o;12580:380::-;12659:1;12655:12;;;;12702;;;12723:61;;12777:4;12769:6;12765:17;12755:27;;12723:61;12830:2;12822:6;12819:14;12799:18;12796:38;12793:161;;12876:10;12871:3;12867:20;12864:1;12857:31;12911:4;12908:1;12901:15;12939:4;12936:1;12929:15;12793:161;;12580:380;;;:::o;13091:1020::-;13267:3;13296:1;13329:6;13323:13;13359:36;13385:9;13359:36;:::i;:::-;13414:1;13431:18;;;13458:133;;;;13605:1;13600:356;;;;13424:532;;13458:133;-1:-1:-1;;13491:24:1;;13479:37;;13564:14;;13557:22;13545:35;;13536:45;;;-1:-1:-1;13458:133:1;;13600:356;13631:6;13628:1;13621:17;13661:4;13706:2;13703:1;13693:16;13731:1;13745:165;13759:6;13756:1;13753:13;13745:165;;;13837:14;;13824:11;;;13817:35;13880:16;;;;13774:10;;13745:165;;;13749:3;;;13939:6;13934:3;13930:16;13923:23;;13424:532;;;;;13987:6;13981:13;14003:68;14062:8;14057:3;14050:4;14042:6;14038:17;14003:68;:::i;:::-;14087:18;;13091:1020;-1:-1:-1;;;;13091:1020:1:o;14526:127::-;14587:10;14582:3;14578:20;14575:1;14568:31;14618:4;14615:1;14608:15;14642:4;14639:1;14632:15;14658:127;14719:10;14714:3;14710:20;14707:1;14700:31;14750:4;14747:1;14740:15;14774:4;14771:1;14764:15;14790:135;14829:3;14850:17;;;14847:43;;14870:18;;:::i;:::-;-1:-1:-1;14917:1:1;14906:13;;14790:135::o;14930:545::-;15032:2;15027:3;15024:11;15021:448;;;15068:1;15093:5;15089:2;15082:17;15138:4;15134:2;15124:19;15208:2;15196:10;15192:19;15189:1;15185:27;15179:4;15175:38;15244:4;15232:10;15229:20;15226:47;;;-1:-1:-1;15267:4:1;15226:47;15322:2;15317:3;15313:12;15310:1;15306:20;15300:4;15296:31;15286:41;;15377:82;15395:2;15388:5;15385:13;15377:82;;;15440:17;;;15421:1;15410:13;15377:82;;15651:1206;-1:-1:-1;;;;;15770:3:1;15767:27;15764:53;;;15797:18;;:::i;:::-;15826:94;15916:3;15876:38;15908:4;15902:11;15876:38;:::i;:::-;15870:4;15826:94;:::i;:::-;15946:1;15971:2;15966:3;15963:11;15988:1;15983:616;;;;16643:1;16660:3;16657:93;;;-1:-1:-1;16716:19:1;;;16703:33;16657:93;-1:-1:-1;;15608:1:1;15604:11;;;15600:24;15596:29;15586:40;15632:1;15628:11;;;15583:57;16763:78;;15956:895;;15983:616;13038:1;13031:14;;;13075:4;13062:18;;-1:-1:-1;;16019:17:1;;;16120:9;16142:229;16156:7;16153:1;16150:14;16142:229;;;16245:19;;;16232:33;16217:49;;16352:4;16337:20;;;;16305:1;16293:14;;;;16172:12;16142:229;;;16146:3;16399;16390:7;16387:16;16384:159;;;16523:1;16519:6;16513:3;16507;16504:1;16500:11;16496:21;16492:34;16488:39;16475:9;16470:3;16466:19;16453:33;16449:79;16441:6;16434:95;16384:159;;;16586:1;16580:3;16577:1;16573:11;16569:19;16563:4;16556:33;15956:895;;15651:1206;;;:::o;17222:125::-;17287:9;;;17308:10;;;17305:36;;;17321:18;;:::i;19176:127::-;19237:10;19232:3;19228:20;19225:1;19218:31;19268:4;19265:1;19258:15;19292:4;19289:1;19282:15;19308:120;19348:1;19374;19364:35;;19379:18;;:::i;:::-;-1:-1:-1;19413:9:1;;19308:120::o;19433:128::-;19500:9;;;19521:11;;;19518:37;;;19535:18;;:::i;19566:112::-;19598:1;19624;19614:35;;19629:18;;:::i;:::-;-1:-1:-1;19663:9:1;;19566:112::o;20353:245::-;20420:6;20473:2;20461:9;20452:7;20448:23;20444:32;20441:52;;;20489:1;20486;20479:12;20441:52;20521:9;20515:16;20540:28;20562:5;20540:28;:::i;20603:411::-;20805:2;20787:21;;;20844:2;20824:18;;;20817:30;20883:34;20878:2;20863:18;;20856:62;-1:-1:-1;;;20949:2:1;20934:18;;20927:45;21004:3;20989:19;;20603:411::o;21830:401::-;22032:2;22014:21;;;22071:2;22051:18;;;22044:30;22110:34;22105:2;22090:18;;22083:62;-1:-1:-1;;;22176:2:1;22161:18;;22154:35;22221:3;22206:19;;21830:401::o;22236:406::-;22438:2;22420:21;;;22477:2;22457:18;;;22450:30;22516:34;22511:2;22496:18;;22489:62;-1:-1:-1;;;22582:2:1;22567:18;;22560:40;22632:3;22617:19;;22236:406::o;22647:465::-;22904:2;22893:9;22886:21;22867:4;22930:56;22982:2;22971:9;22967:18;22959:6;22930:56;:::i;:::-;23034:9;23026:6;23022:22;23017:2;23006:9;23002:18;22995:50;23062:44;23099:6;23091;23062:44;:::i;:::-;23054:52;22647:465;-1:-1:-1;;;;;22647:465:1:o;23527:561::-;-1:-1:-1;;;;;23824:15:1;;;23806:34;;23876:15;;23871:2;23856:18;;23849:43;23923:2;23908:18;;23901:34;;;23966:2;23951:18;;23944:34;;;23786:3;24009;23994:19;;23987:32;;;23749:4;;24036:46;;24062:19;;24054:6;24036:46;:::i;:::-;24028:54;23527:561;-1:-1:-1;;;;;;;23527:561:1:o;24093:249::-;24162:6;24215:2;24203:9;24194:7;24190:23;24186:32;24183:52;;;24231:1;24228;24221:12;24183:52;24263:9;24257:16;24282:30;24306:5;24282:30;:::i;24347:179::-;24382:3;24424:1;24406:16;24403:23;24400:120;;;24470:1;24467;24464;24449:23;-1:-1:-1;24507:1:1;24501:8;24496:3;24492:18;24400:120;24347:179;:::o;24531:671::-;24570:3;24612:4;24594:16;24591:26;24588:39;;;24531:671;:::o;24588:39::-;24654:2;24648:9;-1:-1:-1;;24719:16:1;24715:25;;24712:1;24648:9;24691:50;24770:4;24764:11;24794:16;-1:-1:-1;;;;;24900:2:1;24893:4;24885:6;24881:17;24878:25;24873:2;24865:6;24862:14;24859:45;24856:58;;;24907:5;;;;;24531:671;:::o;24856:58::-;24944:6;24938:4;24934:17;24923:28;;24980:3;24974:10;25007:2;24999:6;24996:14;24993:27;;;25013:5;;;;;;24531:671;:::o;24993:27::-;25097:2;25078:16;25072:4;25068:27;25064:36;25057:4;25048:6;25043:3;25039:16;25035:27;25032:69;25029:82;;;25104:5;;;;;;24531:671;:::o;25029:82::-;25120:57;25171:4;25162:6;25154;25150:19;25146:30;25140:4;25120:57;:::i;:::-;-1:-1:-1;25193:3:1;;24531:671;-1:-1:-1;;;;;24531:671:1:o;25628:404::-;25830:2;25812:21;;;25869:2;25849:18;;;25842:30;25908:34;25903:2;25888:18;;25881:62;-1:-1:-1;;;25974:2:1;25959:18;;25952:38;26022:3;26007:19;;25628:404::o;26037:827::-;-1:-1:-1;;;;;26434:15:1;;;26416:34;;26486:15;;26481:2;26466:18;;26459:43;26396:3;26533:2;26518:18;;26511:31;;;26359:4;;26565:57;;26602:19;;26594:6;26565:57;:::i;:::-;26670:9;26662:6;26658:22;26653:2;26642:9;26638:18;26631:50;26704:44;26741:6;26733;26704:44;:::i;:::-;26690:58;;26797:9;26789:6;26785:22;26779:3;26768:9;26764:19;26757:51;26825:33;26851:6;26843;26825:33;:::i;:::-;26817:41;26037:827;-1:-1:-1;;;;;;;;26037:827:1:o

Swarm Source

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