Token CLASHMON VOUCHER

 

Overview ERC-1155

Max Total Supply:
0 CLASHMON VOUCHER

Holders:
10,255
Contract:
0xc7b8ee22642c2424f33d84c05ad7ec9b2363bd7c0xc7B8Ee22642c2424f33d84C05aD7eC9B2363bd7c

Social Profiles:
Not Available, Update ?

 
Balance
0 CLASHMON VOUCHER
0xdfef9f0b0d55bb46c5c1e61c56105efb88ec19e2
Loading
[ Download CSV Export  ] 
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:
MultiToken

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2023-08-24
*/

// SPDX-License-Identifier: MIXED

// Sources flattened with hardhat v2.17.1 https://hardhat.org

// License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides 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} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

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

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

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() external {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}


// File @openzeppelin/contracts/security/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC1155/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC1155/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 or 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 or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}


// File @openzeppelin/contracts/token/ERC1155/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );

        _burnBatch(account, ids, values);
    }
}


// File @openzeppelin/contracts/token/ERC1155/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                uint256 id = ids[i];
                uint256 amount = amounts[i];
                uint256 supply = _totalSupply[id];
                require(supply >= amount, "ERC1155: burn amount exceeds totalSupply");
                unchecked {
                    _totalSupply[id] = supply - amount;
                }
            }
        }
    }
}


// File @openzeppelin/contracts/utils/math/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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


// File @openzeppelin/contracts/token/ERC1155/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC1155 token with storage based token URI management.
 * Inspired by the ERC721URIStorage extension
 *
 * _Available since v4.6._
 */
abstract contract ERC1155URIStorage is ERC1155 {
    using Strings for uint256;

    // Optional base URI
    string private _baseURI = "";

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the concatenation of the `_baseURI`
     * and the token-specific uri if the latter is set
     *
     * This enables the following behaviors:
     *
     * - if `_tokenURIs[tokenId]` is set, then the result is the concatenation
     *   of `_baseURI` and `_tokenURIs[tokenId]` (keep in mind that `_baseURI`
     *   is empty per default);
     *
     * - if `_tokenURIs[tokenId]` is NOT set then we fallback to `super.uri()`
     *   which in most cases will contain `ERC1155._uri`;
     *
     * - if `_tokenURIs[tokenId]` is NOT set, and if the parents do not have a
     *   uri value set, then the result is empty.
     */
    function uri(uint256 tokenId) public view virtual override returns (string memory) {
        string memory tokenURI = _tokenURIs[tokenId];

        // If token URI is set, concatenate base URI and tokenURI (via abi.encodePacked).
        return bytes(tokenURI).length > 0 ? string(abi.encodePacked(_baseURI, tokenURI)) : super.uri(tokenId);
    }

    /**
     * @dev Sets `tokenURI` as the tokenURI of `tokenId`.
     */
    function _setURI(uint256 tokenId, string memory tokenURI) internal virtual {
        _tokenURIs[tokenId] = tokenURI;
        emit URI(uri(tokenId), tokenId);
    }

    /**
     * @dev Sets `baseURI` as the `_baseURI` for all tokens
     */
    function _setBaseURI(string memory baseURI) internal virtual {
        _baseURI = baseURI;
    }
}


// File @iskraworld/iskra-product-contracts/token/ERC1155/[email protected]

// SPDX-FileCopyrightText: 2022 ISKRA Pte. Ltd.
// Original license: SPDX_License_Identifier: MIT
// @author iskra.world dev team

pragma solidity ^0.8.2;





// MultiToken features
//  - ERC1155 basic functions
//  - configurable for pausable, burnable (defined at construction)
//  - defense for transferring tokens to the token contract itself
contract MultiToken is
    ERC1155URIStorage,
    Ownable2Step,
    Pausable,
    ERC1155Burnable,
    ERC1155Supply
{
    bool public immutable pausable;
    bool public immutable burnable;

    mapping(address => bool) public burnApprovals;
    mapping(address => bool) public mintApprovals;

    // NOTE:
    // Having a single name is not appropriate for the original ERC1155.
    // However, we added it because most network explorers refer to this field to expose token information.
    string public name;

    event BurnApproval(address indexed burner, bool indexed approved);

    event MintApproval(address indexed minter, bool indexed approved);

    constructor(
        string memory uri_,
        string memory name_,
        bool pausable_,
        bool burnable_
    ) ERC1155(uri_) {
        name = name_;
        pausable = pausable_;
        burnable = burnable_;
    }

    function uri(uint256 tokenId)
        public
        view
        virtual
        override(ERC1155, ERC1155URIStorage)
        returns (string memory)
    {
        return ERC1155URIStorage.uri(tokenId);
    }

    function setURI(uint256 tokenId, string calldata tokenURI_)
        public
        onlyOwner
    {
        _setURI(tokenId, tokenURI_);
    }

    function setBaseURI(string calldata baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }

    modifier whenPausableEnabled() {
        require(pausable, "MultiToken: pausable is disabled");
        _;
    }

    modifier whenBurnableEnabled() {
        require(burnable, "MultiToken: burnable is disabled");
        _;
    }

    modifier hasBurnPermission() {
        require(
            _msgSender() == owner() || burnApprovals[_msgSender()],
            "MultiToken: the sender does not have permission to burn"
        );
        _;
    }

    modifier hasMintPermission() {
        require(
            _msgSender() == owner() || mintApprovals[_msgSender()],
            "MultiToken: the sender does not have permission to mint"
        );
        _;
    }

    function pause() external whenPausableEnabled onlyOwner {
        _pause();
    }

    function unpause() external whenPausableEnabled onlyOwner {
        _unpause();
    }

    function setBurnApproval(address burner, bool approved)
        external
        onlyOwner
        whenBurnableEnabled
        whenNotPaused
    {
        burnApprovals[burner] = approved;
        emit BurnApproval(burner, approved);
    }

    function setMintApproval(address minter, bool approved)
        external
        onlyOwner
        whenNotPaused
    {
        mintApprovals[minter] = approved;
        emit MintApproval(minter, approved);
    }

    function mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) public hasMintPermission {
        _mint(account, id, amount, data);
    }

    function mintBatch(
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) public hasMintPermission {
        _mintBatch(to, ids, amounts, data);
    }

    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public override whenBurnableEnabled hasBurnPermission {
        super.burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public override whenBurnableEnabled hasBurnPermission {
        super.burnBatch(account, ids, values);
    }

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override(ERC1155, ERC1155Supply) whenNotPaused {
        require(
            to != address(this),
            "cannot transfer tokens to the token contract itself"
        );
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC1155)
        returns (bool)
    {
        return ERC1155.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri_","type":"string"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"bool","name":"pausable_","type":"bool"},{"internalType":"bool","name":"burnable_","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"burner","type":"address"},{"indexed":true,"internalType":"bool","name":"approved","type":"bool"}],"name":"BurnApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"bool","name":"approved","type":"bool"}],"name":"MintApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"burnApprovals","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintApprovals","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"burner","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setBurnApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setMintApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60e06040819052600060c08190526200001b9160039162000138565b503480156200002957600080fd5b50604051620032f6380380620032f68339810160408190526200004c91620002a7565b836200005881620000a3565b506200006433620000bc565b6006805460ff60a01b1916905582516200008690600a90602086019062000138565b5090151560f890811b608052901515901b60a05250620003869050565b8051620000b890600290602084019062000138565b5050565b600680546001600160a01b0319169055620000e381620000e6602090811b62000e4217901c565b50565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001469062000333565b90600052602060002090601f0160209004810192826200016a5760008555620001b5565b82601f106200018557805160ff1916838001178555620001b5565b82800160010185558215620001b5579182015b82811115620001b557825182559160200191906001019062000198565b50620001c3929150620001c7565b5090565b5b80821115620001c35760008155600101620001c8565b80518015158114620001ef57600080fd5b919050565b600082601f83011262000205578081fd5b81516001600160401b038082111562000222576200022262000370565b604051601f8301601f19908116603f011681019082821181831017156200024d576200024d62000370565b8160405283815260209250868385880101111562000269578485fd5b8491505b838210156200028c57858201830151818301840152908201906200026d565b838211156200029d57848385830101525b9695505050505050565b60008060008060808587031215620002bd578384fd5b84516001600160401b0380821115620002d4578586fd5b620002e288838901620001f4565b95506020870151915080821115620002f8578485fd5b506200030787828801620001f4565b9350506200031860408601620001de565b91506200032860608601620001de565b905092959194509250565b6002810460018216806200034857607f821691505b602082108114156200036a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160f81c60a05160f81c612f21620003d5600039600081816103d2015281816109ef01528181610b200152610db80152600081816102aa0152818161074f0152610c330152612f216000f3fe608060405234801561001057600080fd5b50600436106101e45760003560e01c8063715018a61161010f578063a22cb465116100a2578063e985e9c511610071578063e985e9c51461045b578063f242432a14610497578063f2fde38b146104aa578063f5298aca146104bd576101e4565b8063a22cb465146103f4578063ad46e82814610407578063bd85b0391461042a578063e30c39781461044a576101e4565b80638456cb59116100de5780638456cb591461038d578063862440e2146103955780638da5cb5b146103a8578063a07c7ce4146103cd576101e4565b8063715018a614610357578063731133e91461035f5780637515257d1461037257806379ba509714610385576101e4565b806336775847116101875780634f558e79116101565780634f558e791461030757806355f804b3146103295780635c975abb1461033c5780636b20c45414610344576101e4565b806336775847146102a55780633f4ba83a146102cc5780634b5d7f95146102d45780634e1273f4146102e7576101e4565b80630e89341c116101c35780630e89341c146102475780631f7fdffa1461025a5780632eb2c2d61461026f578063336f1a2c14610282576101e4565b8062fdd58e146101e957806301ffc9a71461020f57806306fdde0314610232575b600080fd5b6101fc6101f736600461257e565b6104d0565b6040519081526020015b60405180910390f35b61022261021d366004612706565b610566565b6040519015158152602001610206565b61023a610579565b60405161020691906129e1565b61023a61025536600461277d565b610607565b61026d61026836600461242e565b610612565b005b61026d61027d366004612327565b610701565b6102226102903660046122db565b60096020526000908152604090205460ff1681565b6102227f000000000000000000000000000000000000000000000000000000000000000081565b61026d61074d565b61026d6102e2366004612544565b6107cc565b6102fa6102f536600461263e565b610830565b60405161020691906129a9565b61022261031536600461277d565b600090815260076020526040902054151590565b61026d61033736600461273e565b610991565b6102226109dc565b61026d6103523660046124d4565b6109ed565b61026d610a7e565b61026d61036d3660046125d9565b610a90565b61026d610380366004612544565b610b16565b61026d610bb7565b61026d610c31565b61026d6103a3366004612795565b610cae565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610206565b6102227f000000000000000000000000000000000000000000000000000000000000000081565b61026d610402366004612544565b610cf6565b6102226104153660046122db565b60086020526000908152604090205460ff1681565b6101fc61043836600461277d565b60009081526007602052604090205490565b6006546001600160a01b03166103b5565b6102226104693660046122f5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61026d6104a53660046123cc565b610d01565b61026d6104b83660046122db565b610d46565b61026d6104cb3660046125a7565b610db6565b60006001600160a01b0383166105405760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b600061057182610e94565b90505b919050565b600a805461058690612d7f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b290612d7f565b80156105ff5780601f106105d4576101008083540402835291602001916105ff565b820191906000526020600020905b8154815290600101906020018083116105e257829003601f168201915b505050505081565b606061057182610ee4565b6005546001600160a01b031633148061063a57503360009081526009602052604090205460ff165b6106565760405162461bcd60e51b815260040161053790612c32565b6106f88787878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808b0282810182019093528a82529093508a92508991829185019084908082843760009201919091525050604080516020601f8a018190048102820181019092528881529250889150879081908401838280828437600092019190915250610fc492505050565b50505050505050565b6001600160a01b03851633148061071d575061071d8533610469565b6107395760405162461bcd60e51b815260040161053790612a80565b610746858585858561113a565b5050505050565b7f00000000000000000000000000000000000000000000000000000000000000006107ba5760405162461bcd60e51b815260206004820181905260248201527f4d756c7469546f6b656e3a207061757361626c652069732064697361626c65646044820152606401610537565b6107c2611300565b6107ca61135a565b565b6107d4611300565b6107dc6113af565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f0faca2a6b922aa6a8f918b168a5d971cb26c7626a5701bd34afddc9b9d1b343f91a35050565b606081518351146108955760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610537565b600083516001600160401b038111156108be57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156108e7578160200160208202803683370190505b50905060005b84518110156109895761094e85828151811061091957634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061094157634e487b7160e01b600052603260045260246000fd5b60200260200101516104d0565b82828151811061096e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015261098281612de6565b90506108ed565b509392505050565b610999611300565b6109d882828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506113f792505050565b5050565b600654600160a01b900460ff165b90565b7f0000000000000000000000000000000000000000000000000000000000000000610a2a5760405162461bcd60e51b815260040161053790612ace565b6005546001600160a01b0316331480610a5257503360009081526008602052604090205460ff165b610a6e5760405162461bcd60e51b815260040161053790612b03565b610a7983838361140a565b505050565b610a86611300565b6107ca600061144d565b6005546001600160a01b0316331480610ab857503360009081526009602052604090205460ff165b610ad45760405162461bcd60e51b815260040161053790612c32565b61074685858585858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061146692505050565b610b1e611300565b7f0000000000000000000000000000000000000000000000000000000000000000610b5b5760405162461bcd60e51b815260040161053790612ace565b610b636113af565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917f0e7b6d7c6b928b4c702bbf61aca09fd9e583bee621abbcfe371ae7dba46f8a1d91a35050565b60065433906001600160a01b03168114610c255760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610537565b610c2e8161144d565b50565b7f0000000000000000000000000000000000000000000000000000000000000000610c9e5760405162461bcd60e51b815260206004820181905260248201527f4d756c7469546f6b656e3a207061757361626c652069732064697361626c65646044820152606401610537565b610ca6611300565b6107ca611546565b610cb6611300565b610a798383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061158992505050565b6109d83383836115ed565b6001600160a01b038516331480610d1d5750610d1d8533610469565b610d395760405162461bcd60e51b815260040161053790612a80565b61074685858585856116ce565b610d4e611300565b600680546001600160a01b0319166001600160a01b038316908117909155610d7e6005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b7f0000000000000000000000000000000000000000000000000000000000000000610df35760405162461bcd60e51b815260040161053790612ace565b6005546001600160a01b0316331480610e1b57503360009081526008602052604090205460ff165b610e375760405162461bcd60e51b815260040161053790612b03565b610a79838383611806565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160e01b03198216636cdb3d1360e11b1480610ec557506001600160e01b031982166303a24d0760e21b145b8061057157506301ffc9a760e01b6001600160e01b0319831614610571565b600081815260046020526040812080546060929190610f0290612d7f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90612d7f565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b505050505090506000815111610f9957610f9483611849565b610fbd565b600381604051602001610fad929190612860565b6040516020818303038152906040525b9392505050565b6001600160a01b038416610fea5760405162461bcd60e51b815260040161053790612cd7565b815183511461100b5760405162461bcd60e51b815260040161053790612c8f565b3361101b816000878787876118dd565b60005b84518110156110d25783818151811061104757634e487b7160e01b600052603260045260246000fd5b602002602001015160008087848151811061107257634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546110ba9190612d3b565b909155508190506110ca81612de6565b91505061101e565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111239291906129bc565b60405180910390a461074681600087878787611968565b815183511461115b5760405162461bcd60e51b815260040161053790612c8f565b6001600160a01b0384166111815760405162461bcd60e51b815260040161053790612b60565b336111908187878787876118dd565b60005b84518110156112925760008582815181106111be57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008583815181106111ea57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561123a5760405162461bcd60e51b815260040161053790612be8565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611277908490612d3b565b925050819055505050508061128b90612de6565b9050611193565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112e29291906129bc565b60405180910390a46112f8818787878787611968565b505050505050565b6005546001600160a01b031633146107ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610537565b611362611ad3565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6113b76109dc565b156107ca5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610537565b80516109d89060039060208401906120c4565b6001600160a01b03831633148061142657506114268333610469565b6114425760405162461bcd60e51b815260040161053790612a80565b610a79838383611b1e565b600680546001600160a01b0319169055610c2e81610e42565b6001600160a01b03841661148c5760405162461bcd60e51b815260040161053790612cd7565b33600061149885611cd8565b905060006114a585611cd8565b90506114b6836000898585896118dd565b6000868152602081815260408083206001600160a01b038b168452909152812080548792906114e6908490612d3b565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46106f883600089898989611d31565b61154e6113af565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113923390565b600082815260046020908152604090912082516115a8928401906120c4565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b6115d484610607565b6040516115e191906129e1565b60405180910390a25050565b816001600160a01b0316836001600160a01b031614156116615760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610537565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166116f45760405162461bcd60e51b815260040161053790612b60565b33600061170085611cd8565b9050600061170d85611cd8565b905061171d8389898585896118dd565b6000868152602081815260408083206001600160a01b038c1684529091529020548581101561175e5760405162461bcd60e51b815260040161053790612be8565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061179b908490612d3b565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46117fb848a8a8a8a8a611d31565b505050505050505050565b6001600160a01b03831633148061182257506118228333610469565b61183e5760405162461bcd60e51b815260040161053790612a80565b610a79838383611dfb565b60606002805461185890612d7f565b80601f016020809104026020016040519081016040528092919081815260200182805461188490612d7f565b80156118d15780601f106118a6576101008083540402835291602001916118d1565b820191906000526020600020905b8154815290600101906020018083116118b457829003601f168201915b50505050509050919050565b6118e56113af565b6001600160a01b03841630141561195a5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f74207472616e7366657220746f6b656e7320746f2074686520746f60448201527235b2b71031b7b73a3930b1ba1034ba39b2b63360691b6064820152608401610537565b6112f8868686868686611f13565b6001600160a01b0384163b156112f85760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906119ac9089908990889088908890600401612906565b602060405180830381600087803b1580156119c657600080fd5b505af19250505080156119f6575060408051601f3d908101601f191682019092526119f391810190612722565b60015b611aa357611a02612e2d565b806308c379a01415611a3c5750611a17612e44565b80611a225750611a3e565b8060405162461bcd60e51b815260040161053791906129e1565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610537565b6001600160e01b0319811663bc197c8160e01b146106f85760405162461bcd60e51b8152600401610537906129f4565b611adb6109dc565b6107ca5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610537565b6001600160a01b038316611b445760405162461bcd60e51b815260040161053790612ba5565b8051825114611b655760405162461bcd60e51b815260040161053790612c8f565b6000339050611b88818560008686604051806020016040528060008152506118dd565b60005b8351811015611c69576000848281518110611bb657634e487b7160e01b600052603260045260246000fd5b602002602001015190506000848381518110611be257634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611c325760405162461bcd60e51b815260040161053790612a3c565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611c6181612de6565b915050611b8b565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611cba9291906129bc565b60405180910390a46040805160208101909152600090525b50505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611d2057634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b156112f85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611d759089908990889088908890600401612964565b602060405180830381600087803b158015611d8f57600080fd5b505af1925050508015611dbf575060408051601f3d908101601f19168201909252611dbc91810190612722565b60015b611dcb57611a02612e2d565b6001600160e01b0319811663f23a6e6160e01b146106f85760405162461bcd60e51b8152600401610537906129f4565b6001600160a01b038316611e215760405162461bcd60e51b815260040161053790612ba5565b336000611e2d84611cd8565b90506000611e3a84611cd8565b9050611e5a838760008585604051806020016040528060008152506118dd565b6000858152602081815260408083206001600160a01b038a16845290915290205484811015611e9b5760405162461bcd60e51b815260040161053790612a3c565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46040805160208101909152600090526106f8565b6001600160a01b038516611fb65760005b8351811015611fb457828181518110611f4d57634e487b7160e01b600052603260045260246000fd5b602002602001015160076000868481518110611f7957634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254611f9e9190612d3b565b90915550611fad905081612de6565b9050611f24565b505b6001600160a01b0384166112f85760005b83518110156106f8576000848281518110611ff257634e487b7160e01b600052603260045260246000fd5b60200260200101519050600084838151811061201e57634e487b7160e01b600052603260045260246000fd5b60200260200101519050600060076000848152602001908152602001600020549050818110156120a15760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401610537565b600092835260076020526040909220910390556120bd81612de6565b9050611fc7565b8280546120d090612d7f565b90600052602060002090601f0160209004810192826120f25760008555612138565b82601f1061210b57805160ff1916838001178555612138565b82800160010185558215612138579182015b8281111561213857825182559160200191906001019061211d565b50612144929150612148565b5090565b5b808211156121445760008155600101612149565b80356001600160a01b038116811461057457600080fd5b60008083601f840112612185578182fd5b5081356001600160401b0381111561219b578182fd5b60208301915083602080830285010111156121b557600080fd5b9250929050565b600082601f8301126121cc578081fd5b813560206121d982612d18565b6040516121e68282612dba565b838152828101915085830183850287018401881015612203578586fd5b855b8581101561222157813584529284019290840190600101612205565b5090979650505050505050565b60008083601f84011261223f578182fd5b5081356001600160401b03811115612255578182fd5b6020830191508360208285010111156121b557600080fd5b600082601f83011261227d578081fd5b81356001600160401b0381111561229657612296612e17565b6040516122ad601f8301601f191660200182612dba565b8181528460208386010111156122c1578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156122ec578081fd5b610fbd8261215d565b60008060408385031215612307578081fd5b6123108361215d565b915061231e6020840161215d565b90509250929050565b600080600080600060a0868803121561233e578081fd5b6123478661215d565b94506123556020870161215d565b935060408601356001600160401b0380821115612370578283fd5b61237c89838a016121bc565b94506060880135915080821115612391578283fd5b61239d89838a016121bc565b935060808801359150808211156123b2578283fd5b506123bf8882890161226d565b9150509295509295909350565b600080600080600060a086880312156123e3578081fd5b6123ec8661215d565b94506123fa6020870161215d565b9350604086013592506060860135915060808601356001600160401b03811115612422578182fd5b6123bf8882890161226d565b60008060008060008060006080888a031215612448578182fd5b6124518861215d565b965060208801356001600160401b038082111561246c578384fd5b6124788b838c01612174565b909850965060408a0135915080821115612490578384fd5b61249c8b838c01612174565b909650945060608a01359150808211156124b4578384fd5b506124c18a828b0161222e565b989b979a50959850939692959293505050565b6000806000606084860312156124e8578283fd5b6124f18461215d565b925060208401356001600160401b038082111561250c578384fd5b612518878388016121bc565b9350604086013591508082111561252d578283fd5b5061253a868287016121bc565b9150509250925092565b60008060408385031215612556578081fd5b61255f8361215d565b915060208301358015158114612573578182fd5b809150509250929050565b60008060408385031215612590578182fd5b6125998361215d565b946020939093013593505050565b6000806000606084860312156125bb578081fd5b6125c48461215d565b95602085013595506040909401359392505050565b6000806000806000608086880312156125f0578283fd5b6125f98661215d565b9450602086013593506040860135925060608601356001600160401b03811115612621578182fd5b61262d8882890161222e565b969995985093965092949392505050565b60008060408385031215612650578182fd5b82356001600160401b0380821115612666578384fd5b818501915085601f830112612679578384fd5b8135602061268682612d18565b6040516126938282612dba565b8381528281019150858301838502870184018b10156126b0578889fd5b8896505b848710156126d9576126c58161215d565b8352600196909601959183019183016126b4565b50965050860135925050808211156126ef578283fd5b506126fc858286016121bc565b9150509250929050565b600060208284031215612717578081fd5b8135610fbd81612ed5565b600060208284031215612733578081fd5b8151610fbd81612ed5565b60008060208385031215612750578182fd5b82356001600160401b03811115612765578283fd5b6127718582860161222e565b90969095509350505050565b60006020828403121561278e578081fd5b5035919050565b6000806000604084860312156127a9578081fd5b8335925060208401356001600160401b038111156127c5578182fd5b6127d18682870161222e565b9497909650939450505050565b6000815180845260208085019450808401835b8381101561280d578151875295820195908201906001016127f1565b509495945050505050565b60008151808452612830816020860160208601612d53565b601f01601f19169290920160200192915050565b60008151612856818560208601612d53565b9290920192915050565b825460009081906002810460018083168061287c57607f831692505b602080841082141561289c57634e487b7160e01b87526022600452602487fd5b8180156128b057600181146128c1576128ed565b60ff198616895284890196506128ed565b60008b815260209020885b868110156128e55781548b8201529085019083016128cc565b505084890196505b5050505050506128fd8185612844565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612932908301866127de565b828103606084015261294481866127de565b905082810360808401526129588185612818565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061299e90830184612818565b979650505050505050565b600060208252610fbd60208301846127de565b6000604082526129cf60408301856127de565b82810360208401526128fd81856127de565b600060208252610fbd6020830184612818565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b6020808252818101527f4d756c7469546f6b656e3a206275726e61626c652069732064697361626c6564604082015260600190565b60208082526037908201527f4d756c7469546f6b656e3a207468652073656e64657220646f6573206e6f742060408201527f68617665207065726d697373696f6e20746f206275726e000000000000000000606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526037908201527f4d756c7469546f6b656e3a207468652073656e64657220646f6573206e6f742060408201527f68617665207065726d697373696f6e20746f206d696e74000000000000000000606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60006001600160401b03821115612d3157612d31612e17565b5060209081020190565b60008219821115612d4e57612d4e612e01565b500190565b60005b83811015612d6e578181015183820152602001612d56565b83811115611cd25750506000910152565b600281046001821680612d9357607f821691505b60208210811415612db457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715612ddf57612ddf612e17565b6040525050565b6000600019821415612dfa57612dfa612e01565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156109ea57600481823e5160e01c90565b600060443d1015612e54576109ea565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612e855750505050506109ea565b8285019150815181811115612e9f575050505050506109ea565b843d8701016020828501011115612ebb575050505050506109ea565b612eca60208286010187612dba565b509094505050505090565b6001600160e01b031981168114610c2e57600080fdfea26469706673582212208c52b1f39b18ab760095b4abbde753c2e684522de5a60fd5d399014b7b2c549764736f6c63430008020033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6e66742e636c6173686d6f6e2e636f6d2f6d657461646174612f66745f6974656d2f7b69647d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010434c4153484d4f4e20564f554348455200000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e45760003560e01c8063715018a61161010f578063a22cb465116100a2578063e985e9c511610071578063e985e9c51461045b578063f242432a14610497578063f2fde38b146104aa578063f5298aca146104bd576101e4565b8063a22cb465146103f4578063ad46e82814610407578063bd85b0391461042a578063e30c39781461044a576101e4565b80638456cb59116100de5780638456cb591461038d578063862440e2146103955780638da5cb5b146103a8578063a07c7ce4146103cd576101e4565b8063715018a614610357578063731133e91461035f5780637515257d1461037257806379ba509714610385576101e4565b806336775847116101875780634f558e79116101565780634f558e791461030757806355f804b3146103295780635c975abb1461033c5780636b20c45414610344576101e4565b806336775847146102a55780633f4ba83a146102cc5780634b5d7f95146102d45780634e1273f4146102e7576101e4565b80630e89341c116101c35780630e89341c146102475780631f7fdffa1461025a5780632eb2c2d61461026f578063336f1a2c14610282576101e4565b8062fdd58e146101e957806301ffc9a71461020f57806306fdde0314610232575b600080fd5b6101fc6101f736600461257e565b6104d0565b6040519081526020015b60405180910390f35b61022261021d366004612706565b610566565b6040519015158152602001610206565b61023a610579565b60405161020691906129e1565b61023a61025536600461277d565b610607565b61026d61026836600461242e565b610612565b005b61026d61027d366004612327565b610701565b6102226102903660046122db565b60096020526000908152604090205460ff1681565b6102227f000000000000000000000000000000000000000000000000000000000000000181565b61026d61074d565b61026d6102e2366004612544565b6107cc565b6102fa6102f536600461263e565b610830565b60405161020691906129a9565b61022261031536600461277d565b600090815260076020526040902054151590565b61026d61033736600461273e565b610991565b6102226109dc565b61026d6103523660046124d4565b6109ed565b61026d610a7e565b61026d61036d3660046125d9565b610a90565b61026d610380366004612544565b610b16565b61026d610bb7565b61026d610c31565b61026d6103a3366004612795565b610cae565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610206565b6102227f000000000000000000000000000000000000000000000000000000000000000181565b61026d610402366004612544565b610cf6565b6102226104153660046122db565b60086020526000908152604090205460ff1681565b6101fc61043836600461277d565b60009081526007602052604090205490565b6006546001600160a01b03166103b5565b6102226104693660046122f5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b61026d6104a53660046123cc565b610d01565b61026d6104b83660046122db565b610d46565b61026d6104cb3660046125a7565b610db6565b60006001600160a01b0383166105405760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b600061057182610e94565b90505b919050565b600a805461058690612d7f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b290612d7f565b80156105ff5780601f106105d4576101008083540402835291602001916105ff565b820191906000526020600020905b8154815290600101906020018083116105e257829003601f168201915b505050505081565b606061057182610ee4565b6005546001600160a01b031633148061063a57503360009081526009602052604090205460ff165b6106565760405162461bcd60e51b815260040161053790612c32565b6106f88787878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808b0282810182019093528a82529093508a92508991829185019084908082843760009201919091525050604080516020601f8a018190048102820181019092528881529250889150879081908401838280828437600092019190915250610fc492505050565b50505050505050565b6001600160a01b03851633148061071d575061071d8533610469565b6107395760405162461bcd60e51b815260040161053790612a80565b610746858585858561113a565b5050505050565b7f00000000000000000000000000000000000000000000000000000000000000016107ba5760405162461bcd60e51b815260206004820181905260248201527f4d756c7469546f6b656e3a207061757361626c652069732064697361626c65646044820152606401610537565b6107c2611300565b6107ca61135a565b565b6107d4611300565b6107dc6113af565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f0faca2a6b922aa6a8f918b168a5d971cb26c7626a5701bd34afddc9b9d1b343f91a35050565b606081518351146108955760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610537565b600083516001600160401b038111156108be57634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156108e7578160200160208202803683370190505b50905060005b84518110156109895761094e85828151811061091957634e487b7160e01b600052603260045260246000fd5b602002602001015185838151811061094157634e487b7160e01b600052603260045260246000fd5b60200260200101516104d0565b82828151811061096e57634e487b7160e01b600052603260045260246000fd5b602090810291909101015261098281612de6565b90506108ed565b509392505050565b610999611300565b6109d882828080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506113f792505050565b5050565b600654600160a01b900460ff165b90565b7f0000000000000000000000000000000000000000000000000000000000000001610a2a5760405162461bcd60e51b815260040161053790612ace565b6005546001600160a01b0316331480610a5257503360009081526008602052604090205460ff165b610a6e5760405162461bcd60e51b815260040161053790612b03565b610a7983838361140a565b505050565b610a86611300565b6107ca600061144d565b6005546001600160a01b0316331480610ab857503360009081526009602052604090205460ff165b610ad45760405162461bcd60e51b815260040161053790612c32565b61074685858585858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061146692505050565b610b1e611300565b7f0000000000000000000000000000000000000000000000000000000000000001610b5b5760405162461bcd60e51b815260040161053790612ace565b610b636113af565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917f0e7b6d7c6b928b4c702bbf61aca09fd9e583bee621abbcfe371ae7dba46f8a1d91a35050565b60065433906001600160a01b03168114610c255760405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f7420746865206044820152683732bb9037bbb732b960b91b6064820152608401610537565b610c2e8161144d565b50565b7f0000000000000000000000000000000000000000000000000000000000000001610c9e5760405162461bcd60e51b815260206004820181905260248201527f4d756c7469546f6b656e3a207061757361626c652069732064697361626c65646044820152606401610537565b610ca6611300565b6107ca611546565b610cb6611300565b610a798383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061158992505050565b6109d83383836115ed565b6001600160a01b038516331480610d1d5750610d1d8533610469565b610d395760405162461bcd60e51b815260040161053790612a80565b61074685858585856116ce565b610d4e611300565b600680546001600160a01b0319166001600160a01b038316908117909155610d7e6005546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b7f0000000000000000000000000000000000000000000000000000000000000001610df35760405162461bcd60e51b815260040161053790612ace565b6005546001600160a01b0316331480610e1b57503360009081526008602052604090205460ff165b610e375760405162461bcd60e51b815260040161053790612b03565b610a79838383611806565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160e01b03198216636cdb3d1360e11b1480610ec557506001600160e01b031982166303a24d0760e21b145b8061057157506301ffc9a760e01b6001600160e01b0319831614610571565b600081815260046020526040812080546060929190610f0290612d7f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2e90612d7f565b8015610f7b5780601f10610f5057610100808354040283529160200191610f7b565b820191906000526020600020905b815481529060010190602001808311610f5e57829003601f168201915b505050505090506000815111610f9957610f9483611849565b610fbd565b600381604051602001610fad929190612860565b6040516020818303038152906040525b9392505050565b6001600160a01b038416610fea5760405162461bcd60e51b815260040161053790612cd7565b815183511461100b5760405162461bcd60e51b815260040161053790612c8f565b3361101b816000878787876118dd565b60005b84518110156110d25783818151811061104757634e487b7160e01b600052603260045260246000fd5b602002602001015160008087848151811061107257634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b0316815260200190815260200160002060008282546110ba9190612d3b565b909155508190506110ca81612de6565b91505061101e565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516111239291906129bc565b60405180910390a461074681600087878787611968565b815183511461115b5760405162461bcd60e51b815260040161053790612c8f565b6001600160a01b0384166111815760405162461bcd60e51b815260040161053790612b60565b336111908187878787876118dd565b60005b84518110156112925760008582815181106111be57634e487b7160e01b600052603260045260246000fd5b6020026020010151905060008583815181106111ea57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561123a5760405162461bcd60e51b815260040161053790612be8565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611277908490612d3b565b925050819055505050508061128b90612de6565b9050611193565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516112e29291906129bc565b60405180910390a46112f8818787878787611968565b505050505050565b6005546001600160a01b031633146107ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610537565b611362611ad3565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6113b76109dc565b156107ca5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610537565b80516109d89060039060208401906120c4565b6001600160a01b03831633148061142657506114268333610469565b6114425760405162461bcd60e51b815260040161053790612a80565b610a79838383611b1e565b600680546001600160a01b0319169055610c2e81610e42565b6001600160a01b03841661148c5760405162461bcd60e51b815260040161053790612cd7565b33600061149885611cd8565b905060006114a585611cd8565b90506114b6836000898585896118dd565b6000868152602081815260408083206001600160a01b038b168452909152812080548792906114e6908490612d3b565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46106f883600089898989611d31565b61154e6113af565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113923390565b600082815260046020908152604090912082516115a8928401906120c4565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b6115d484610607565b6040516115e191906129e1565b60405180910390a25050565b816001600160a01b0316836001600160a01b031614156116615760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610537565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166116f45760405162461bcd60e51b815260040161053790612b60565b33600061170085611cd8565b9050600061170d85611cd8565b905061171d8389898585896118dd565b6000868152602081815260408083206001600160a01b038c1684529091529020548581101561175e5760405162461bcd60e51b815260040161053790612be8565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061179b908490612d3b565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46117fb848a8a8a8a8a611d31565b505050505050505050565b6001600160a01b03831633148061182257506118228333610469565b61183e5760405162461bcd60e51b815260040161053790612a80565b610a79838383611dfb565b60606002805461185890612d7f565b80601f016020809104026020016040519081016040528092919081815260200182805461188490612d7f565b80156118d15780601f106118a6576101008083540402835291602001916118d1565b820191906000526020600020905b8154815290600101906020018083116118b457829003601f168201915b50505050509050919050565b6118e56113af565b6001600160a01b03841630141561195a5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f74207472616e7366657220746f6b656e7320746f2074686520746f60448201527235b2b71031b7b73a3930b1ba1034ba39b2b63360691b6064820152608401610537565b6112f8868686868686611f13565b6001600160a01b0384163b156112f85760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906119ac9089908990889088908890600401612906565b602060405180830381600087803b1580156119c657600080fd5b505af19250505080156119f6575060408051601f3d908101601f191682019092526119f391810190612722565b60015b611aa357611a02612e2d565b806308c379a01415611a3c5750611a17612e44565b80611a225750611a3e565b8060405162461bcd60e51b815260040161053791906129e1565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610537565b6001600160e01b0319811663bc197c8160e01b146106f85760405162461bcd60e51b8152600401610537906129f4565b611adb6109dc565b6107ca5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610537565b6001600160a01b038316611b445760405162461bcd60e51b815260040161053790612ba5565b8051825114611b655760405162461bcd60e51b815260040161053790612c8f565b6000339050611b88818560008686604051806020016040528060008152506118dd565b60005b8351811015611c69576000848281518110611bb657634e487b7160e01b600052603260045260246000fd5b602002602001015190506000848381518110611be257634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611c325760405162461bcd60e51b815260040161053790612a3c565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611c6181612de6565b915050611b8b565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611cba9291906129bc565b60405180910390a46040805160208101909152600090525b50505050565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611d2057634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b156112f85760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611d759089908990889088908890600401612964565b602060405180830381600087803b158015611d8f57600080fd5b505af1925050508015611dbf575060408051601f3d908101601f19168201909252611dbc91810190612722565b60015b611dcb57611a02612e2d565b6001600160e01b0319811663f23a6e6160e01b146106f85760405162461bcd60e51b8152600401610537906129f4565b6001600160a01b038316611e215760405162461bcd60e51b815260040161053790612ba5565b336000611e2d84611cd8565b90506000611e3a84611cd8565b9050611e5a838760008585604051806020016040528060008152506118dd565b6000858152602081815260408083206001600160a01b038a16845290915290205484811015611e9b5760405162461bcd60e51b815260040161053790612a3c565b6000868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46040805160208101909152600090526106f8565b6001600160a01b038516611fb65760005b8351811015611fb457828181518110611f4d57634e487b7160e01b600052603260045260246000fd5b602002602001015160076000868481518110611f7957634e487b7160e01b600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254611f9e9190612d3b565b90915550611fad905081612de6565b9050611f24565b505b6001600160a01b0384166112f85760005b83518110156106f8576000848281518110611ff257634e487b7160e01b600052603260045260246000fd5b60200260200101519050600084838151811061201e57634e487b7160e01b600052603260045260246000fd5b60200260200101519050600060076000848152602001908152602001600020549050818110156120a15760405162461bcd60e51b815260206004820152602860248201527f455243313135353a206275726e20616d6f756e74206578636565647320746f74604482015267616c537570706c7960c01b6064820152608401610537565b600092835260076020526040909220910390556120bd81612de6565b9050611fc7565b8280546120d090612d7f565b90600052602060002090601f0160209004810192826120f25760008555612138565b82601f1061210b57805160ff1916838001178555612138565b82800160010185558215612138579182015b8281111561213857825182559160200191906001019061211d565b50612144929150612148565b5090565b5b808211156121445760008155600101612149565b80356001600160a01b038116811461057457600080fd5b60008083601f840112612185578182fd5b5081356001600160401b0381111561219b578182fd5b60208301915083602080830285010111156121b557600080fd5b9250929050565b600082601f8301126121cc578081fd5b813560206121d982612d18565b6040516121e68282612dba565b838152828101915085830183850287018401881015612203578586fd5b855b8581101561222157813584529284019290840190600101612205565b5090979650505050505050565b60008083601f84011261223f578182fd5b5081356001600160401b03811115612255578182fd5b6020830191508360208285010111156121b557600080fd5b600082601f83011261227d578081fd5b81356001600160401b0381111561229657612296612e17565b6040516122ad601f8301601f191660200182612dba565b8181528460208386010111156122c1578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156122ec578081fd5b610fbd8261215d565b60008060408385031215612307578081fd5b6123108361215d565b915061231e6020840161215d565b90509250929050565b600080600080600060a0868803121561233e578081fd5b6123478661215d565b94506123556020870161215d565b935060408601356001600160401b0380821115612370578283fd5b61237c89838a016121bc565b94506060880135915080821115612391578283fd5b61239d89838a016121bc565b935060808801359150808211156123b2578283fd5b506123bf8882890161226d565b9150509295509295909350565b600080600080600060a086880312156123e3578081fd5b6123ec8661215d565b94506123fa6020870161215d565b9350604086013592506060860135915060808601356001600160401b03811115612422578182fd5b6123bf8882890161226d565b60008060008060008060006080888a031215612448578182fd5b6124518861215d565b965060208801356001600160401b038082111561246c578384fd5b6124788b838c01612174565b909850965060408a0135915080821115612490578384fd5b61249c8b838c01612174565b909650945060608a01359150808211156124b4578384fd5b506124c18a828b0161222e565b989b979a50959850939692959293505050565b6000806000606084860312156124e8578283fd5b6124f18461215d565b925060208401356001600160401b038082111561250c578384fd5b612518878388016121bc565b9350604086013591508082111561252d578283fd5b5061253a868287016121bc565b9150509250925092565b60008060408385031215612556578081fd5b61255f8361215d565b915060208301358015158114612573578182fd5b809150509250929050565b60008060408385031215612590578182fd5b6125998361215d565b946020939093013593505050565b6000806000606084860312156125bb578081fd5b6125c48461215d565b95602085013595506040909401359392505050565b6000806000806000608086880312156125f0578283fd5b6125f98661215d565b9450602086013593506040860135925060608601356001600160401b03811115612621578182fd5b61262d8882890161222e565b969995985093965092949392505050565b60008060408385031215612650578182fd5b82356001600160401b0380821115612666578384fd5b818501915085601f830112612679578384fd5b8135602061268682612d18565b6040516126938282612dba565b8381528281019150858301838502870184018b10156126b0578889fd5b8896505b848710156126d9576126c58161215d565b8352600196909601959183019183016126b4565b50965050860135925050808211156126ef578283fd5b506126fc858286016121bc565b9150509250929050565b600060208284031215612717578081fd5b8135610fbd81612ed5565b600060208284031215612733578081fd5b8151610fbd81612ed5565b60008060208385031215612750578182fd5b82356001600160401b03811115612765578283fd5b6127718582860161222e565b90969095509350505050565b60006020828403121561278e578081fd5b5035919050565b6000806000604084860312156127a9578081fd5b8335925060208401356001600160401b038111156127c5578182fd5b6127d18682870161222e565b9497909650939450505050565b6000815180845260208085019450808401835b8381101561280d578151875295820195908201906001016127f1565b509495945050505050565b60008151808452612830816020860160208601612d53565b601f01601f19169290920160200192915050565b60008151612856818560208601612d53565b9290920192915050565b825460009081906002810460018083168061287c57607f831692505b602080841082141561289c57634e487b7160e01b87526022600452602487fd5b8180156128b057600181146128c1576128ed565b60ff198616895284890196506128ed565b60008b815260209020885b868110156128e55781548b8201529085019083016128cc565b505084890196505b5050505050506128fd8185612844565b95945050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612932908301866127de565b828103606084015261294481866127de565b905082810360808401526129588185612818565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061299e90830184612818565b979650505050505050565b600060208252610fbd60208301846127de565b6000604082526129cf60408301856127de565b82810360208401526128fd81856127de565b600060208252610fbd6020830184612818565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b6020808252818101527f4d756c7469546f6b656e3a206275726e61626c652069732064697361626c6564604082015260600190565b60208082526037908201527f4d756c7469546f6b656e3a207468652073656e64657220646f6573206e6f742060408201527f68617665207065726d697373696f6e20746f206275726e000000000000000000606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526037908201527f4d756c7469546f6b656e3a207468652073656e64657220646f6573206e6f742060408201527f68617665207065726d697373696f6e20746f206d696e74000000000000000000606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60006001600160401b03821115612d3157612d31612e17565b5060209081020190565b60008219821115612d4e57612d4e612e01565b500190565b60005b83811015612d6e578181015183820152602001612d56565b83811115611cd25750506000910152565b600281046001821680612d9357607f821691505b60208210811415612db457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715612ddf57612ddf612e17565b6040525050565b6000600019821415612dfa57612dfa612e01565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156109ea57600481823e5160e01c90565b600060443d1015612e54576109ea565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612e855750505050506109ea565b8285019150815181811115612e9f575050505050506109ea565b843d8701016020828501011115612ebb575050505050506109ea565b612eca60208286010187612dba565b509094505050505090565b6001600160e01b031981168114610c2e57600080fdfea26469706673582212208c52b1f39b18ab760095b4abbde753c2e684522de5a60fd5d399014b7b2c549764736f6c63430008020033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002e68747470733a2f2f6e66742e636c6173686d6f6e2e636f6d2f6d657461646174612f66745f6974656d2f7b69647d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010434c4153484d4f4e20564f554348455200000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri_ (string): https://nft.clashmon.com/metadata/ft_item/{id}
Arg [1] : name_ (string): CLASHMON VOUCHER
Arg [2] : pausable_ (bool): True
Arg [3] : burnable_ (bool): True

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [5] : 68747470733a2f2f6e66742e636c6173686d6f6e2e636f6d2f6d657461646174
Arg [6] : 612f66745f6974656d2f7b69647d000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [8] : 434c4153484d4f4e20564f554348455200000000000000000000000000000000


Deployed ByteCode Sourcemap

66727:4342:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29901:230;;;;;;:::i;:::-;;:::i;:::-;;;24610:25:1;;;24598:2;24583:18;29901:230:0;;;;;;;;70869:197;;;;;;:::i;:::-;;:::i;:::-;;;15436:14:1;;15429:22;15411:41;;15399:2;15384:18;70869:197:0;15366:92:1;67236:18:0;;;:::i;:::-;;;;;;;:::i;67654:217::-;;;;;;:::i;:::-;;:::i;69716:225::-;;;;;;:::i;:::-;;:::i;:::-;;31844:438;;;;;;:::i;:::-;;:::i;66985:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;66857:30;;;;;68933:87;;;:::i;69283:218::-;;;;;;:::i;:::-;;:::i;30297:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47632:122::-;;;;;;:::i;:::-;47689:4;47510:16;;;:12;:16;;;;;;-1:-1:-1;;;47632:122:0;68033:101;;;;;;:::i;:::-;;:::i;7624:86::-;;;:::i;70152:227::-;;;;;;:::i;:::-;;:::i;3018:103::-;;;:::i;69509:199::-;;;;;;:::i;:::-;;:::i;69028:247::-;;;;;;:::i;:::-;;:::i;5679:210::-;;;:::i;68842:83::-;;;:::i;67879:146::-;;;;;;:::i;:::-;;:::i;2370:87::-;2443:6;;-1:-1:-1;;;;;2443:6:0;2370:87;;;-1:-1:-1;;;;;13095:32:1;;;13077:51;;13065:2;13050:18;2370:87:0;13032:102:1;66894:30:0;;;;;30894:155;;;;;;:::i;:::-;;:::i;66933:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;47421:113;;;;;;:::i;:::-;47483:7;47510:16;;;:12;:16;;;;;;;47421:113;4767:101;4847:13;;-1:-1:-1;;;;;4847:13:0;4767:101;;31121:168;;;;;;:::i;:::-;-1:-1:-1;;;;;31244:27:0;;;31220:4;31244:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;31121:168;31361:406;;;;;;:::i;:::-;;:::i;5067:181::-;;;;;;:::i;:::-;;:::i;69949:195::-;;;;;;:::i;:::-;;:::i;29901:230::-;29987:7;-1:-1:-1;;;;;30015:21:0;;30007:76;;;;-1:-1:-1;;;30007:76:0;;17462:2:1;30007:76:0;;;17444:21:1;17501:2;17481:18;;;17474:30;17540:34;17520:18;;;17513:62;-1:-1:-1;;;17591:18:1;;;17584:40;17641:19;;30007:76:0;;;;;;;;;-1:-1:-1;30101:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;30101:22:0;;;;;;;;;;;;29901:230::o;70869:197::-;70991:4;71020:38;71046:11;71020:25;:38::i;:::-;71013:45;;70869:197;;;;:::o;67236:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67654:217::-;67795:13;67833:30;67855:7;67833:21;:30::i;69716:225::-;2443:6;;-1:-1:-1;;;;;2443:6:0;946:10;68677:23;;:54;;-1:-1:-1;946:10:0;68704:27;;;;:13;:27;;;;;;;;68677:54;68655:159;;;;-1:-1:-1;;;68655:159:0;;;;;;;:::i;:::-;69899:34:::1;69910:2;69914:3;;69899:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;69899:34:0::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;;;;-1:-1:-1;69919:7:0;;-1:-1:-1;69919:7:0;;;;69899:34;::::1;::::0;69919:7;;69899:34;69919:7;69899:34;::::1;;::::0;::::1;::::0;;;;-1:-1:-1;;69899:34:0::1;::::0;;::::1;;::::0;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;69928:4:0;;-1:-1:-1;69928:4:0;;;;69899:34;::::1;69928:4:::0;;;;69899:34;::::1;;::::0;::::1;::::0;;;;-1:-1:-1;69899:10:0::1;::::0;-1:-1:-1;;;69899:34:0:i:1;:::-;69716:225:::0;;;;;;;:::o;31844:438::-;-1:-1:-1;;;;;32077:20:0;;946:10;32077:20;;:60;;-1:-1:-1;32101:36:0;32118:4;946:10;32124:12;866:98;32101:36;32055:156;;;;-1:-1:-1;;;32055:156:0;;;;;;;:::i;:::-;32222:52;32245:4;32251:2;32255:3;32260:7;32269:4;32222:22;:52::i;:::-;31844:438;;;;;:::o;68933:87::-;68192:8;68184:53;;;;-1:-1:-1;;;68184:53:0;;23482:2:1;68184:53:0;;;23464:21:1;;;23501:18;;;23494:30;23560:34;23540:18;;;23533:62;23612:18;;68184:53:0;23454:182:1;68184:53:0;2256:13:::1;:11;:13::i;:::-;69002:10:::2;:8;:10::i;:::-;68933:87::o:0;69283:218::-;2256:13;:11;:13::i;:::-;7229:19:::1;:17;:19::i;:::-;-1:-1:-1::0;;;;;69415:21:0;::::2;;::::0;;;:13:::2;:21;::::0;;;;;:32;;-1:-1:-1;;69415:32:0::2;::::0;::::2;;::::0;;::::2;::::0;;;69463:30;;69415:32;;:21;69463:30:::2;::::0;::::2;69283:218:::0;;:::o;30297:524::-;30453:16;30514:3;:10;30495:8;:15;:29;30487:83;;;;-1:-1:-1;;;30487:83:0;;22663:2:1;30487:83:0;;;22645:21:1;22702:2;22682:18;;;22675:30;22741:34;22721:18;;;22714:62;-1:-1:-1;;;22792:18:1;;;22785:39;22841:19;;30487:83:0;22635:231:1;30487:83:0;30583:30;30630:8;:15;-1:-1:-1;;;;;30616:30:0;;;;;-1:-1:-1;;;30616:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30616:30:0;;30583:63;;30664:9;30659:122;30683:8;:15;30679:1;:19;30659:122;;;30739:30;30749:8;30758:1;30749:11;;;;;;-1:-1:-1;;;30749:11:0;;;;;;;;;;;;;;;30762:3;30766:1;30762:6;;;;;;-1:-1:-1;;;30762:6:0;;;;;;;;;;;;;;;30739:9;:30::i;:::-;30720:13;30734:1;30720:16;;;;;;-1:-1:-1;;;30720:16:0;;;;;;;;;;;;;;;;;;:49;30700:3;;;:::i;:::-;;;30659:122;;;-1:-1:-1;30800:13:0;30297:524;-1:-1:-1;;;30297:524:0:o;68033:101::-;2256:13;:11;:13::i;:::-;68106:20:::1;68118:7;;68106:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;68106:11:0::1;::::0;-1:-1:-1;;;68106:20:0:i:1;:::-;68033:101:::0;;:::o;7624:86::-;7695:7;;-1:-1:-1;;;7695:7:0;;;;7624:86;;:::o;70152:227::-;68315:8;68307:53;;;;-1:-1:-1;;;68307:53:0;;;;;;;:::i;:::-;2443:6;;-1:-1:-1;;;;;2443:6:0;946:10;68450:23:::1;::::0;:54:::1;;-1:-1:-1::0;946:10:0;68477:27:::1;::::0;;;:13:::1;:27;::::0;;;;;::::1;;68450:54;68428:159;;;;-1:-1:-1::0;;;68428:159:0::1;;;;;;;:::i;:::-;70334:37:::2;70350:7;70359:3;70364:6;70334:15;:37::i;:::-;70152:227:::0;;;:::o;3018:103::-;2256:13;:11;:13::i;:::-;3083:30:::1;3110:1;3083:18;:30::i;69509:199::-:0;2443:6;;-1:-1:-1;;;;;2443:6:0;946:10;68677:23;;:54;;-1:-1:-1;946:10:0;68704:27;;;;:13;:27;;;;;;;;68677:54;68655:159;;;;-1:-1:-1;;;68655:159:0;;;;;;;:::i;:::-;69668:32:::1;69674:7;69683:2;69687:6;69695:4;;69668:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;69668:5:0::1;::::0;-1:-1:-1;;;69668:32:0:i:1;69028:247::-:0;2256:13;:11;:13::i;:::-;68315:8:::1;68307:53;;;;-1:-1:-1::0;;;68307:53:0::1;;;;;;;:::i;:::-;7229:19:::2;:17;:19::i;:::-;-1:-1:-1::0;;;;;69189:21:0;::::3;;::::0;;;:13:::3;:21;::::0;;;;;:32;;-1:-1:-1;;69189:32:0::3;::::0;::::3;;::::0;;::::3;::::0;;;69237:30;;69189:32;;:21;69237:30:::3;::::0;::::3;69028:247:::0;;:::o;5679:210::-;4847:13;;946:10;;-1:-1:-1;;;;;4847:13:0;5774:24;;5766:78;;;;-1:-1:-1;;;5766:78:0;;16647:2:1;5766:78:0;;;16629:21:1;16686:2;16666:18;;;16659:30;16725:34;16705:18;;;16698:62;-1:-1:-1;;;16776:18:1;;;16769:39;16825:19;;5766:78:0;16619:231:1;5766:78:0;5855:26;5874:6;5855:18;:26::i;:::-;5679:210;:::o;68842:83::-;68192:8;68184:53;;;;-1:-1:-1;;;68184:53:0;;23482:2:1;68184:53:0;;;23464:21:1;;;23501:18;;;23494:30;23560:34;23540:18;;;23533:62;23612:18;;68184:53:0;23454:182:1;68184:53:0;2256:13:::1;:11;:13::i;:::-;68909:8:::2;:6;:8::i;67879:146::-:0;2256:13;:11;:13::i;:::-;67990:27:::1;67998:7;68007:9;;67990:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;67990:7:0::1;::::0;-1:-1:-1;;;67990:27:0:i:1;30894:155::-:0;30989:52;946:10;31022:8;31032;30989:18;:52::i;31361:406::-;-1:-1:-1;;;;;31569:20:0;;946:10;31569:20;;:60;;-1:-1:-1;31593:36:0;31610:4;946:10;31616:12;866:98;31593:36;31547:156;;;;-1:-1:-1;;;31547:156:0;;;;;;;:::i;:::-;31714:45;31732:4;31738:2;31742;31746:6;31754:4;31714:17;:45::i;5067:181::-;2256:13;:11;:13::i;:::-;5157::::1;:24:::0;;-1:-1:-1;;;;;;5157:24:0::1;-1:-1:-1::0;;;;;5157:24:0;::::1;::::0;;::::1;::::0;;;5222:7:::1;2443:6:::0;;-1:-1:-1;;;;;2443:6:0;2370:87;;5222:7:::1;-1:-1:-1::0;;;;;5197:43:0::1;;;;;;;;;;;5067:181:::0;:::o;69949:195::-;68315:8;68307:53;;;;-1:-1:-1;;;68307:53:0;;;;;;;:::i;:::-;2443:6;;-1:-1:-1;;;;;2443:6:0;946:10;68450:23:::1;::::0;:54:::1;;-1:-1:-1::0;946:10:0;68477:27:::1;::::0;;;:13:::1;:27;::::0;;;;;::::1;;68450:54;68428:159;;;;-1:-1:-1::0;;;68428:159:0::1;;;;;;;:::i;:::-;70106:30:::2;70117:7;70126:2;70130:5;70106:10;:30::i;3637:191::-:0;3730:6;;;-1:-1:-1;;;;;3747:17:0;;;-1:-1:-1;;;;;;3747:17:0;;;;;;;3780:40;;3730:6;;;3747:17;3730:6;;3780:40;;3711:16;;3780:40;3637:191;;:::o;28924:310::-;29026:4;-1:-1:-1;;;;;;29063:41:0;;-1:-1:-1;;;29063:41:0;;:110;;-1:-1:-1;;;;;;;29121:52:0;;-1:-1:-1;;;29121:52:0;29063:110;:163;;;-1:-1:-1;;;;;;;;;;27722:40:0;;;29190:36;27613:157;65486:351;65580:22;65605:19;;;:10;:19;;;;;65580:44;;65554:13;;65580:22;65605:19;65580:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65760:1;65741:8;65735:22;:26;:94;;65811:18;65821:7;65811:9;:18::i;:::-;65735:94;;;65788:8;65798;65771:36;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65735:94;65728:101;65486:351;-1:-1:-1;;;65486:351:0:o;37674:813::-;-1:-1:-1;;;;;37852:16:0;;37844:62;;;;-1:-1:-1;;;37844:62:0;;;;;;;:::i;:::-;37939:7;:14;37925:3;:10;:28;37917:81;;;;-1:-1:-1;;;37917:81:0;;;;;;;:::i;:::-;946:10;38055:66;946:10;38011:16;38098:2;38102:3;38107:7;38116:4;38055:20;:66::i;:::-;38139:9;38134:103;38158:3;:10;38154:1;:14;38134:103;;;38215:7;38223:1;38215:10;;;;;;-1:-1:-1;;;38215:10:0;;;;;;;;;;;;;;;38190:9;:17;38200:3;38204:1;38200:6;;;;;;-1:-1:-1;;;38200:6:0;;;;;;;;;;;;;;;38190:17;;;;;;;;;;;:21;38208:2;-1:-1:-1;;;;;38190:21:0;-1:-1:-1;;;;;38190:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;38170:3:0;;-1:-1:-1;38170:3:0;;;:::i;:::-;;;;38134:103;;;;38290:2;-1:-1:-1;;;;;38254:53:0;38286:1;-1:-1:-1;;;;;38254:53:0;38268:8;-1:-1:-1;;;;;38254:53:0;;38294:3;38299:7;38254:53;;;;;;;:::i;:::-;;;;;;;;38398:81;38434:8;38452:1;38456:2;38460:3;38465:7;38474:4;38398:35;:81::i;34078:1146::-;34305:7;:14;34291:3;:10;:28;34283:81;;;;-1:-1:-1;;;34283:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34383:16:0;;34375:66;;;;-1:-1:-1;;;34375:66:0;;;;;;;:::i;:::-;946:10;34498:60;946:10;34529:4;34535:2;34539:3;34544:7;34553:4;34498:20;:60::i;:::-;34576:9;34571:421;34595:3;:10;34591:1;:14;34571:421;;;34627:10;34640:3;34644:1;34640:6;;;;;;-1:-1:-1;;;34640:6:0;;;;;;;;;;;;;;;34627:19;;34661:14;34678:7;34686:1;34678:10;;;;;;-1:-1:-1;;;34678:10:0;;;;;;;;;;;;;;;;;;;;34705:19;34727:13;;;;;;;;;;-1:-1:-1;;;;;34727:19:0;;;;;;;;;;;;34678:10;;-1:-1:-1;34769:21:0;;;;34761:76;;;;-1:-1:-1;;;34761:76:0;;;;;;;:::i;:::-;34881:9;:13;;;;;;;;;;;-1:-1:-1;;;;;34881:19:0;;;;;;;;;;34903:20;;;34881:42;;34953:17;;;;;;;:27;;34903:20;;34881:9;34953:27;;34903:20;;34953:27;:::i;:::-;;;;;;;;34571:421;;;34607:3;;;;:::i;:::-;;;34571:421;;;;35039:2;-1:-1:-1;;;;;35009:47:0;35033:4;-1:-1:-1;;;;;35009:47:0;35023:8;-1:-1:-1;;;;;35009:47:0;;35043:3;35048:7;35009:47;;;;;;;:::i;:::-;;;;;;;;35141:75;35177:8;35187:4;35193:2;35197:3;35202:7;35211:4;35141:35;:75::i;:::-;34078:1146;;;;;;:::o;2535:132::-;2443:6;;-1:-1:-1;;;;;2443:6:0;946:10;2599:23;2591:68;;;;-1:-1:-1;;;2591:68:0;;21059:2:1;2591:68:0;;;21041:21:1;;;21078:18;;;21071:30;21137:34;21117:18;;;21110:62;21189:18;;2591:68:0;21031:182:1;8479:120:0;7488:16;:14;:16::i;:::-;8538:7:::1;:15:::0;;-1:-1:-1;;;;8538:15:0::1;::::0;;8569:22:::1;946:10:::0;8578:12:::1;8569:22;::::0;-1:-1:-1;;;;;13095:32:1;;;13077:51;;13065:2;13050:18;8569:22:0::1;;;;;;;8479:120::o:0;7783:108::-;7854:8;:6;:8::i;:::-;7853:9;7845:38;;;;-1:-1:-1;;;7845:38:0;;18649:2:1;7845:38:0;;;18631:21:1;18688:2;18668:18;;;18661:30;-1:-1:-1;;;18707:18:1;;;18700:46;18763:18;;7845:38:0;18621:166:1;66175:98:0;66247:18;;;;:8;;:18;;;;;:::i;46261:358::-;-1:-1:-1;;;;;46426:23:0;;946:10;46426:23;;:66;;-1:-1:-1;46453:39:0;46470:7;946:10;46479:12;866:98;46453:39;46404:162;;;;-1:-1:-1;;;46404:162:0;;;;;;;:::i;:::-;46579:32;46590:7;46599:3;46604:6;46579:10;:32::i;5438:156::-;5528:13;5521:20;;-1:-1:-1;;;;;;5521:20:0;;;5552:34;5577:8;5552:24;:34::i;36542:729::-;-1:-1:-1;;;;;36695:16:0;;36687:62;;;;-1:-1:-1;;;36687:62:0;;;;;;;:::i;:::-;946:10;36762:16;36827:21;36845:2;36827:17;:21::i;:::-;36804:44;;36859:24;36886:25;36904:6;36886:17;:25::i;:::-;36859:52;;36924:66;36945:8;36963:1;36967:2;36971:3;36976:7;36985:4;36924:20;:66::i;:::-;37003:9;:13;;;;;;;;;;;-1:-1:-1;;;;;37003:17:0;;;;;;;;;:27;;37024:6;;37003:9;:27;;37024:6;;37003:27;:::i;:::-;;;;-1:-1:-1;;37046:52:0;;;24820:25:1;;;24876:2;24861:18;;24854:34;;;-1:-1:-1;;;;;37046:52:0;;;;37079:1;;37046:52;;;;;;24793:18:1;37046:52:0;;;;;;;37189:74;37220:8;37238:1;37242:2;37246;37250:6;37258:4;37189:30;:74::i;8220:118::-;7229:19;:17;:19::i;:::-;8280:7:::1;:14:::0;;-1:-1:-1;;;;8280:14:0::1;-1:-1:-1::0;;;8280:14:0::1;::::0;;8310:20:::1;8317:12;946:10:::0;866:98;;65922:166;66008:19;;;;:10;:19;;;;;;;;:30;;;;;;;;:::i;:::-;;66072:7;66054:26;66058:12;66062:7;66058:3;:12::i;:::-;66054:26;;;;;;:::i;:::-;;;;;;;;65922:166;;:::o;40955:331::-;41110:8;-1:-1:-1;;;;;41101:17:0;:5;-1:-1:-1;;;;;41101:17:0;;;41093:71;;;;-1:-1:-1;;;41093:71:0;;22253:2:1;41093:71:0;;;22235:21:1;22292:2;22272:18;;;22265:30;22331:34;22311:18;;;22304:62;-1:-1:-1;;;22382:18:1;;;22375:39;22431:19;;41093:71:0;22225:231:1;41093:71:0;-1:-1:-1;;;;;41175:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41175:46:0;;;;;;;;;;41237:41;;15411::1;;;41237::0;;15384:18:1;41237:41:0;;;;;;;40955:331;;;:::o;32746:974::-;-1:-1:-1;;;;;32934:16:0;;32926:66;;;;-1:-1:-1;;;32926:66:0;;;;;;;:::i;:::-;946:10;33005:16;33070:21;33088:2;33070:17;:21::i;:::-;33047:44;;33102:24;33129:25;33147:6;33129:17;:25::i;:::-;33102:52;;33167:60;33188:8;33198:4;33204:2;33208:3;33213:7;33222:4;33167:20;:60::i;:::-;33240:19;33262:13;;;;;;;;;;;-1:-1:-1;;;;;33262:19:0;;;;;;;;;;33300:21;;;;33292:76;;;;-1:-1:-1;;;33292:76:0;;;;;;;:::i;:::-;33404:9;:13;;;;;;;;;;;-1:-1:-1;;;;;33404:19:0;;;;;;;;;;33426:20;;;33404:42;;33468:17;;;;;;;:27;;33426:20;;33404:9;33468:27;;33426:20;;33468:27;:::i;:::-;;;;-1:-1:-1;;33513:46:0;;;24820:25:1;;;24876:2;24861:18;;24854:34;;;-1:-1:-1;;;;;33513:46:0;;;;;;;;;;;;;;24793:18:1;33513:46:0;;;;;;;33644:68;33675:8;33685:4;33691:2;33695;33699:6;33707:4;33644:30;:68::i;:::-;32746:974;;;;;;;;;:::o;45927:326::-;-1:-1:-1;;;;;46067:23:0;;946:10;46067:23;;:66;;-1:-1:-1;46094:39:0;46111:7;946:10;46120:12;866:98;46094:39;46045:162;;;;-1:-1:-1;;;46045:162:0;;;;;;;:::i;:::-;46220:25;46226:7;46235:2;46239:5;46220;:25::i;29645:105::-;29705:13;29738:4;29731:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29645:105;;;:::o;70387:474::-;7229:19;:17;:19::i;:::-;-1:-1:-1;;;;;70678:19:0;::::1;70692:4;70678:19;;70656:120;;;::::0;-1:-1:-1;;;70656:120:0;;18994:2:1;70656:120:0::1;::::0;::::1;18976:21:1::0;19033:2;19013:18;;;19006:30;19072:34;19052:18;;;19045:62;-1:-1:-1;;;19123:18:1;;;19116:49;19182:19;;70656:120:0::1;18966:241:1::0;70656:120:0::1;70787:66;70814:8;70824:4;70830:2;70834:3;70839:7;70848:4;70787:26;:66::i;44400:813::-:0;-1:-1:-1;;;;;44640:13:0;;18793:19;:23;44636:570;;44676:79;;-1:-1:-1;;;44676:79:0;;-1:-1:-1;;;;;44676:43:0;;;;;:79;;44720:8;;44730:4;;44736:3;;44741:7;;44750:4;;44676:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44676:79:0;;;;;;;;-1:-1:-1;;44676:79:0;;;;;;;;;;;;:::i;:::-;;;44672:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;45068:6;45061:14;;-1:-1:-1;;;45061:14:0;;;;;;;;:::i;44672:523::-;;;45117:62;;-1:-1:-1;;;45117:62:0;;24245:2:1;45117:62:0;;;24227:21:1;24284:2;24264:18;;;24257:30;24323:34;24303:18;;;24296:62;-1:-1:-1;;;24374:18:1;;;24367:50;24434:19;;45117:62:0;24217:242:1;44672:523:0;-1:-1:-1;;;;;;44837:60:0;;-1:-1:-1;;;44837:60:0;44833:159;;44922:50;;-1:-1:-1;;;44922:50:0;;;;;;;:::i;7968:108::-;8035:8;:6;:8::i;:::-;8027:41;;;;-1:-1:-1;;;8027:41:0;;16298:2:1;8027:41:0;;;16280:21:1;16337:2;16317:18;;;16310:30;-1:-1:-1;;;16356:18:1;;;16349:50;16416:18;;8027:41:0;16270:170:1;39843:969:0;-1:-1:-1;;;;;39995:18:0;;39987:66;;;;-1:-1:-1;;;39987:66:0;;;;;;;:::i;:::-;40086:7;:14;40072:3;:10;:28;40064:81;;;;-1:-1:-1;;;40064:81:0;;;;;;;:::i;:::-;40158:16;946:10;40158:31;;40202:66;40223:8;40233:4;40247:1;40251:3;40256:7;40202:66;;;;;;;;;;;;:20;:66::i;:::-;40286:9;40281:373;40305:3;:10;40301:1;:14;40281:373;;;40337:10;40350:3;40354:1;40350:6;;;;;;-1:-1:-1;;;40350:6:0;;;;;;;;;;;;;;;40337:19;;40371:14;40388:7;40396:1;40388:10;;;;;;-1:-1:-1;;;40388:10:0;;;;;;;;;;;;;;;;;;;;40415:19;40437:13;;;;;;;;;;-1:-1:-1;;;;;40437:19:0;;;;;;;;;;;;40388:10;;-1:-1:-1;40479:21:0;;;;40471:70;;;;-1:-1:-1;;;40471:70:0;;;;;;;:::i;:::-;40585:9;:13;;;;;;;;;;;-1:-1:-1;;;;;40585:19:0;;;;;;;;;;40607:20;;40585:42;;40317:3;;;;:::i;:::-;;;;40281:373;;;;40709:1;-1:-1:-1;;;;;40671:55:0;40695:4;-1:-1:-1;;;;;40671:55:0;40685:8;-1:-1:-1;;;;;40671:55:0;;40713:3;40718:7;40671:55;;;;;;;:::i;:::-;;;;;;;;40739:65;;;;;;;;;40783:1;40739:65;;;39843:969;;;;:::o;45221:198::-;45341:16;;;45355:1;45341:16;;;;;;;;;45287;;45316:22;;45341:16;;;;;;;;;;;;-1:-1:-1;45341:16:0;45316:41;;45379:7;45368:5;45374:1;45368:8;;;;;;-1:-1:-1;;;45368:8:0;;;;;;;;;;;;;;;;;;:18;45406:5;45221:198;-1:-1:-1;;45221:198:0:o;43648:744::-;-1:-1:-1;;;;;43863:13:0;;18793:19;:23;43859:526;;43899:72;;-1:-1:-1;;;43899:72:0;;-1:-1:-1;;;;;43899:38:0;;;;;:72;;43938:8;;43948:4;;43954:2;;43958:6;;43966:4;;43899:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43899:72:0;;;;;;;;-1:-1:-1;;43899:72:0;;;;;;;;;;;;:::i;:::-;;;43895:479;;;;:::i;:::-;-1:-1:-1;;;;;;44021:55:0;;-1:-1:-1;;;44021:55:0;44017:154;;44101:50;;-1:-1:-1;;;44101:50:0;;;;;;;:::i;38785:808::-;-1:-1:-1;;;;;38912:18:0;;38904:66;;;;-1:-1:-1;;;38904:66:0;;;;;;;:::i;:::-;946:10;38983:16;39048:21;39066:2;39048:17;:21::i;:::-;39025:44;;39080:24;39107:25;39125:6;39107:17;:25::i;:::-;39080:52;;39145:66;39166:8;39176:4;39190:1;39194:3;39199:7;39145:66;;;;;;;;;;;;:20;:66::i;:::-;39224:19;39246:13;;;;;;;;;;;-1:-1:-1;;;;;39246:19:0;;;;;;;;;;39284:21;;;;39276:70;;;;-1:-1:-1;;;39276:70:0;;;;;;;:::i;:::-;39382:9;:13;;;;;;;;;;;-1:-1:-1;;;;;39382:19:0;;;;;;;;;;;;39404:20;;;39382:42;;39453:54;;24820:25:1;;;24861:18;;;24854:34;;;39382:19:0;;39453:54;;;;;;24793:18:1;39453:54:0;;;;;;;39520:65;;;;;;;;;39564:1;39520:65;;;34078:1146;47829:931;-1:-1:-1;;;;;48151:18:0;;48147:160;;48191:9;48186:110;48210:3;:10;48206:1;:14;48186:110;;;48270:7;48278:1;48270:10;;;;;;-1:-1:-1;;;48270:10:0;;;;;;;;;;;;;;;48246:12;:20;48259:3;48263:1;48259:6;;;;;;-1:-1:-1;;;48259:6:0;;;;;;;;;;;;;;;48246:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;48222:3:0;;-1:-1:-1;48222:3:0;;:::i;:::-;;;48186:110;;;;48147:160;-1:-1:-1;;;;;48323:16:0;;48319:434;;48361:9;48356:386;48380:3;:10;48376:1;:14;48356:386;;;48416:10;48429:3;48433:1;48429:6;;;;;;-1:-1:-1;;;48429:6:0;;;;;;;;;;;;;;;48416:19;;48454:14;48471:7;48479:1;48471:10;;;;;;-1:-1:-1;;;48471:10:0;;;;;;;;;;;;;;;48454:27;;48500:14;48517:12;:16;48530:2;48517:16;;;;;;;;;;;;48500:33;;48570:6;48560;:16;;48552:69;;;;-1:-1:-1;;;48552:69:0;;21420:2:1;48552:69:0;;;21402:21:1;21459:2;21439:18;;;21432:30;21498:34;21478:18;;;21471:62;-1:-1:-1;;;21549:18:1;;;21542:38;21597:19;;48552:69:0;21392:230:1;48552:69:0;48673:16;;;;:12;:16;;;;;;48692:15;;48673:34;;48392:3;;;:::i;:::-;;;48356:386;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;192:398;;;319:3;312:4;304:6;300:17;296:27;286:2;;344:8;334;327:26;286:2;-1:-1:-1;374:20:1;;-1:-1:-1;;;;;406:30:1;;403:2;;;456:8;446;439:26;403:2;500:4;492:6;488:17;476:29;;563:3;556:4;548;540:6;536:17;528:6;524:30;520:41;517:50;514:2;;;580:1;577;570:12;514:2;276:314;;;;;:::o;595:756::-;;702:3;695:4;687:6;683:17;679:27;669:2;;724:5;717;710:20;669:2;764:6;751:20;790:4;813:43;853:2;813:43;:::i;:::-;885:2;879:9;897:31;925:2;917:6;897:31;:::i;:::-;963:18;;;997:15;;;;-1:-1:-1;1032:15:1;;;1078:11;;;1066:24;;1062:33;;1059:42;-1:-1:-1;1056:2:1;;;1118:5;1111;1104:20;1056:2;1144:5;1158:163;1172:2;1169:1;1166:9;1158:163;;;1229:17;;1217:30;;1267:12;;;;1299;;;;1190:1;1183:9;1158:163;;;-1:-1:-1;1339:6:1;;659:692;-1:-1:-1;;;;;;;659:692:1:o;1356:375::-;;;1471:3;1464:4;1456:6;1452:17;1448:27;1438:2;;1496:8;1486;1479:26;1438:2;-1:-1:-1;1526:20:1;;-1:-1:-1;;;;;1558:30:1;;1555:2;;;1608:8;1598;1591:26;1555:2;1652:4;1644:6;1640:17;1628:29;;1704:3;1697:4;1688:6;1680;1676:19;1672:30;1669:39;1666:2;;;1721:1;1718;1711:12;1736:575;;1831:3;1824:4;1816:6;1812:17;1808:27;1798:2;;1853:5;1846;1839:20;1798:2;1893:6;1880:20;-1:-1:-1;;;;;1915:2:1;1912:26;1909:2;;;1941:18;;:::i;:::-;1990:2;1984:9;2002:67;2057:2;2038:13;;-1:-1:-1;;2034:27:1;2063:4;2030:38;1984:9;2002:67;:::i;:::-;2093:2;2085:6;2078:18;2139:3;2132:4;2127:2;2119:6;2115:15;2111:26;2108:35;2105:2;;;2160:5;2153;2146:20;2105:2;2228;2221:4;2213:6;2209:17;2202:4;2194:6;2190:17;2177:54;2251:15;;;2268:4;2247:26;2240:41;;;;2255:6;1788:523;-1:-1:-1;;1788:523:1:o;2316:196::-;;2428:2;2416:9;2407:7;2403:23;2399:32;2396:2;;;2449:6;2441;2434:22;2396:2;2477:29;2496:9;2477:29;:::i;2517:270::-;;;2646:2;2634:9;2625:7;2621:23;2617:32;2614:2;;;2667:6;2659;2652:22;2614:2;2695:29;2714:9;2695:29;:::i;:::-;2685:39;;2743:38;2777:2;2766:9;2762:18;2743:38;:::i;:::-;2733:48;;2604:183;;;;;:::o;2792:983::-;;;;;;3031:3;3019:9;3010:7;3006:23;3002:33;2999:2;;;3053:6;3045;3038:22;2999:2;3081:29;3100:9;3081:29;:::i;:::-;3071:39;;3129:38;3163:2;3152:9;3148:18;3129:38;:::i;:::-;3119:48;;3218:2;3207:9;3203:18;3190:32;-1:-1:-1;;;;;3282:2:1;3274:6;3271:14;3268:2;;;3303:6;3295;3288:22;3268:2;3331:61;3384:7;3375:6;3364:9;3360:22;3331:61;:::i;:::-;3321:71;;3445:2;3434:9;3430:18;3417:32;3401:48;;3474:2;3464:8;3461:16;3458:2;;;3495:6;3487;3480:22;3458:2;3523:63;3578:7;3567:8;3556:9;3552:24;3523:63;:::i;:::-;3513:73;;3639:3;3628:9;3624:19;3611:33;3595:49;;3669:2;3659:8;3656:16;3653:2;;;3690:6;3682;3675:22;3653:2;;3718:51;3761:7;3750:8;3739:9;3735:24;3718:51;:::i;:::-;3708:61;;;2989:786;;;;;;;;:::o;3780:626::-;;;;;;3969:3;3957:9;3948:7;3944:23;3940:33;3937:2;;;3991:6;3983;3976:22;3937:2;4019:29;4038:9;4019:29;:::i;:::-;4009:39;;4067:38;4101:2;4090:9;4086:18;4067:38;:::i;:::-;4057:48;;4152:2;4141:9;4137:18;4124:32;4114:42;;4203:2;4192:9;4188:18;4175:32;4165:42;;4258:3;4247:9;4243:19;4230:33;-1:-1:-1;;;;;4278:6:1;4275:30;4272:2;;;4323:6;4315;4308:22;4272:2;4351:49;4392:7;4383:6;4372:9;4368:22;4351:49;:::i;4411:1175::-;;;;;;;;4663:3;4651:9;4642:7;4638:23;4634:33;4631:2;;;4685:6;4677;4670:22;4631:2;4713:29;4732:9;4713:29;:::i;:::-;4703:39;;4793:2;4782:9;4778:18;4765:32;-1:-1:-1;;;;;4857:2:1;4849:6;4846:14;4843:2;;;4878:6;4870;4863:22;4843:2;4922:70;4984:7;4975:6;4964:9;4960:22;4922:70;:::i;:::-;5011:8;;-1:-1:-1;4896:96:1;-1:-1:-1;5099:2:1;5084:18;;5071:32;;-1:-1:-1;5115:16:1;;;5112:2;;;5149:6;5141;5134:22;5112:2;5193:72;5257:7;5246:8;5235:9;5231:24;5193:72;:::i;:::-;5284:8;;-1:-1:-1;5167:98:1;-1:-1:-1;5372:2:1;5357:18;;5344:32;;-1:-1:-1;5388:16:1;;;5385:2;;;5422:6;5414;5407:22;5385:2;;5466:60;5518:7;5507:8;5496:9;5492:24;5466:60;:::i;:::-;4621:965;;;;-1:-1:-1;4621:965:1;;-1:-1:-1;4621:965:1;;;;5440:86;;-1:-1:-1;;;4621:965:1:o;5591:699::-;;;;5787:2;5775:9;5766:7;5762:23;5758:32;5755:2;;;5808:6;5800;5793:22;5755:2;5836:29;5855:9;5836:29;:::i;:::-;5826:39;;5916:2;5905:9;5901:18;5888:32;-1:-1:-1;;;;;5980:2:1;5972:6;5969:14;5966:2;;;6001:6;5993;5986:22;5966:2;6029:61;6082:7;6073:6;6062:9;6058:22;6029:61;:::i;:::-;6019:71;;6143:2;6132:9;6128:18;6115:32;6099:48;;6172:2;6162:8;6159:16;6156:2;;;6193:6;6185;6178:22;6156:2;;6221:63;6276:7;6265:8;6254:9;6250:24;6221:63;:::i;:::-;6211:73;;;5745:545;;;;;:::o;6295:367::-;;;6421:2;6409:9;6400:7;6396:23;6392:32;6389:2;;;6442:6;6434;6427:22;6389:2;6470:29;6489:9;6470:29;:::i;:::-;6460:39;;6549:2;6538:9;6534:18;6521:32;6596:5;6589:13;6582:21;6575:5;6572:32;6562:2;;6623:6;6615;6608:22;6562:2;6651:5;6641:15;;;6379:283;;;;;:::o;6667:264::-;;;6796:2;6784:9;6775:7;6771:23;6767:32;6764:2;;;6817:6;6809;6802:22;6764:2;6845:29;6864:9;6845:29;:::i;:::-;6835:39;6921:2;6906:18;;;;6893:32;;-1:-1:-1;;;6754:177:1:o;6936:332::-;;;;7082:2;7070:9;7061:7;7057:23;7053:32;7050:2;;;7103:6;7095;7088:22;7050:2;7131:29;7150:9;7131:29;:::i;:::-;7121:39;7207:2;7192:18;;7179:32;;-1:-1:-1;7258:2:1;7243:18;;;7230:32;;7040:228;-1:-1:-1;;;7040:228:1:o;7273:640::-;;;;;;7455:3;7443:9;7434:7;7430:23;7426:33;7423:2;;;7477:6;7469;7462:22;7423:2;7505:29;7524:9;7505:29;:::i;:::-;7495:39;;7581:2;7570:9;7566:18;7553:32;7543:42;;7632:2;7621:9;7617:18;7604:32;7594:42;;7687:2;7676:9;7672:18;7659:32;-1:-1:-1;;;;;7706:6:1;7703:30;7700:2;;;7751:6;7743;7736:22;7700:2;7795:58;7845:7;7836:6;7825:9;7821:22;7795:58;:::i;:::-;7413:500;;;;-1:-1:-1;7413:500:1;;-1:-1:-1;7872:8:1;;7769:84;7413:500;-1:-1:-1;;;7413:500:1:o;7918:1275::-;;;8097:2;8085:9;8076:7;8072:23;8068:32;8065:2;;;8118:6;8110;8103:22;8065:2;8163:9;8150:23;-1:-1:-1;;;;;8233:2:1;8225:6;8222:14;8219:2;;;8254:6;8246;8239:22;8219:2;8297:6;8286:9;8282:22;8272:32;;8342:7;8335:4;8331:2;8327:13;8323:27;8313:2;;8369:6;8361;8354:22;8313:2;8410;8397:16;8432:4;8455:43;8495:2;8455:43;:::i;:::-;8527:2;8521:9;8539:31;8567:2;8559:6;8539:31;:::i;:::-;8605:18;;;8639:15;;;;-1:-1:-1;8674:11:1;;;8712;;;8704:20;;8700:29;;8697:42;-1:-1:-1;8694:2:1;;;8757:6;8749;8742:22;8694:2;8784:6;8775:15;;8799:169;8813:2;8810:1;8807:9;8799:169;;;8870:23;8889:3;8870:23;:::i;:::-;8858:36;;8831:1;8824:9;;;;;8914:12;;;;8946;;8799:169;;;-1:-1:-1;8987:6:1;-1:-1:-1;;9031:18:1;;9018:32;;-1:-1:-1;;9062:16:1;;;9059:2;;;9096:6;9088;9081:22;9059:2;;9124:63;9179:7;9168:8;9157:9;9153:24;9124:63;:::i;:::-;9114:73;;;8055:1138;;;;;:::o;9198:255::-;;9309:2;9297:9;9288:7;9284:23;9280:32;9277:2;;;9330:6;9322;9315:22;9277:2;9374:9;9361:23;9393:30;9417:5;9393:30;:::i;9458:259::-;;9580:2;9568:9;9559:7;9555:23;9551:32;9548:2;;;9601:6;9593;9586:22;9548:2;9638:9;9632:16;9657:30;9681:5;9657:30;:::i;9722:430::-;;;9854:2;9842:9;9833:7;9829:23;9825:32;9822:2;;;9875:6;9867;9860:22;9822:2;9920:9;9907:23;-1:-1:-1;;;;;9945:6:1;9942:30;9939:2;;;9990:6;9982;9975:22;9939:2;10034:58;10084:7;10075:6;10064:9;10060:22;10034:58;:::i;:::-;10111:8;;10008:84;;-1:-1:-1;9812:340:1;-1:-1:-1;;;;9812:340:1:o;10157:190::-;;10269:2;10257:9;10248:7;10244:23;10240:32;10237:2;;;10290:6;10282;10275:22;10237:2;-1:-1:-1;10318:23:1;;10227:120;-1:-1:-1;10227:120:1:o;10352:498::-;;;;10501:2;10489:9;10480:7;10476:23;10472:32;10469:2;;;10522:6;10514;10507:22;10469:2;10563:9;10550:23;10540:33;;10624:2;10613:9;10609:18;10596:32;-1:-1:-1;;;;;10643:6:1;10640:30;10637:2;;;10688:6;10680;10673:22;10637:2;10732:58;10782:7;10773:6;10762:9;10758:22;10732:58;:::i;:::-;10459:391;;10809:8;;-1:-1:-1;10706:84:1;;-1:-1:-1;;;;10459:391:1:o;10855:437::-;;10946:5;10940:12;10973:6;10968:3;10961:19;10999:4;11028:2;11023:3;11019:12;11012:19;;11065:2;11058:5;11054:14;11086:3;11098:169;11112:6;11109:1;11106:13;11098:169;;;11173:13;;11161:26;;11207:12;;;;11242:15;;;;11134:1;11127:9;11098:169;;;-1:-1:-1;11283:3:1;;10916:376;-1:-1:-1;;;;;10916:376:1:o;11297:257::-;;11376:5;11370:12;11403:6;11398:3;11391:19;11419:63;11475:6;11468:4;11463:3;11459:14;11452:4;11445:5;11441:16;11419:63;:::i;:::-;11536:2;11515:15;-1:-1:-1;;11511:29:1;11502:39;;;;11543:4;11498:50;;11346:208;-1:-1:-1;;11346:208:1:o;11559:185::-;;11639:5;11633:12;11654:52;11699:6;11694:3;11687:4;11680:5;11676:16;11654:52;:::i;:::-;11722:16;;;;;11609:135;-1:-1:-1;;11609:135:1:o;11749:1177::-;11983:13;;11749:1177;;;;12056:1;12041:17;;12077:1;12113:18;;;;12140:2;;12194:4;12186:6;12182:17;12172:27;;12140:2;12220;12268;12260:6;12257:14;12237:18;12234:38;12231:2;;;-1:-1:-1;;;12295:33:1;;12351:4;12348:1;12341:15;12381:4;12302:3;12369:17;12231:2;12412:18;12439:104;;;;12557:1;12552:322;;;;12405:469;;12439:104;-1:-1:-1;;12472:24:1;;12460:37;;12517:16;;;;-1:-1:-1;12439:104:1;;12552:322;25090:127;25156:17;;;25206:4;25190:21;;12647:3;12663:165;12677:6;12674:1;12671:13;12663:165;;;12755:14;;12742:11;;;12735:35;12798:16;;;;12692:10;;12663:165;;;12667:3;;12857:6;12852:3;12848:16;12841:23;;12405:469;;;;;;;12890:30;12916:3;12908:6;12890:30;:::i;:::-;12883:37;11933:993;-1:-1:-1;;;;;11933:993:1:o;13139:826::-;-1:-1:-1;;;;;13536:15:1;;;13518:34;;13588:15;;13583:2;13568:18;;13561:43;13498:3;13635:2;13620:18;;13613:31;;;13139:826;;13667:57;;13704:19;;13696:6;13667:57;:::i;:::-;13772:9;13764:6;13760:22;13755:2;13744:9;13740:18;13733:50;13806:44;13843:6;13835;13806:44;:::i;:::-;13792:58;;13899:9;13891:6;13887:22;13881:3;13870:9;13866:19;13859:51;13927:32;13952:6;13944;13927:32;:::i;:::-;13919:40;13470:495;-1:-1:-1;;;;;;;;13470:495:1:o;13970:560::-;-1:-1:-1;;;;;14267:15:1;;;14249:34;;14319:15;;14314:2;14299:18;;14292:43;14366:2;14351:18;;14344:34;;;14409:2;14394:18;;14387:34;;;14229:3;14452;14437:19;;14430:32;;;13970:560;;14479:45;;14504:19;;14496:6;14479:45;:::i;:::-;14471:53;14201:329;-1:-1:-1;;;;;;;14201:329:1:o;14535:261::-;;14714:2;14703:9;14696:21;14734:56;14786:2;14775:9;14771:18;14763:6;14734:56;:::i;14801:465::-;;15058:2;15047:9;15040:21;15084:56;15136:2;15125:9;15121:18;15113:6;15084:56;:::i;:::-;15188:9;15180:6;15176:22;15171:2;15160:9;15156:18;15149:50;15216:44;15253:6;15245;15216:44;:::i;15463:219::-;;15612:2;15601:9;15594:21;15632:44;15672:2;15661:9;15657:18;15649:6;15632:44;:::i;15687:404::-;15889:2;15871:21;;;15928:2;15908:18;;;15901:30;15967:34;15962:2;15947:18;;15940:62;-1:-1:-1;;;16033:2:1;16018:18;;16011:38;16081:3;16066:19;;15861:230::o;16855:400::-;17057:2;17039:21;;;17096:2;17076:18;;;17069:30;17135:34;17130:2;17115:18;;17108:62;-1:-1:-1;;;17201:2:1;17186:18;;17179:34;17245:3;17230:19;;17029:226::o;17671:410::-;17873:2;17855:21;;;17912:2;17892:18;;;17885:30;17951:34;17946:2;17931:18;;17924:62;-1:-1:-1;;;18017:2:1;18002:18;;17995:44;18071:3;18056:19;;17845:236::o;18086:356::-;18288:2;18270:21;;;18307:18;;;18300:30;18366:34;18361:2;18346:18;;18339:62;18433:2;18418:18;;18260:182::o;19212:419::-;19414:2;19396:21;;;19453:2;19433:18;;;19426:30;19492:34;19487:2;19472:18;;19465:62;19563:25;19558:2;19543:18;;19536:53;19621:3;19606:19;;19386:245::o;19636:401::-;19838:2;19820:21;;;19877:2;19857:18;;;19850:30;19916:34;19911:2;19896:18;;19889:62;-1:-1:-1;;;19982:2:1;19967:18;;19960:35;20027:3;20012:19;;19810:227::o;20042:399::-;20244:2;20226:21;;;20283:2;20263:18;;;20256:30;20322:34;20317:2;20302:18;;20295:62;-1:-1:-1;;;20388:2:1;20373:18;;20366:33;20431:3;20416:19;;20216:225::o;20446:406::-;20648:2;20630:21;;;20687:2;20667:18;;;20660:30;20726:34;20721:2;20706:18;;20699:62;-1:-1:-1;;;20792:2:1;20777:18;;20770:40;20842:3;20827:19;;20620:232::o;21627:419::-;21829:2;21811:21;;;21868:2;21848:18;;;21841:30;21907:34;21902:2;21887:18;;21880:62;21978:25;21973:2;21958:18;;21951:53;22036:3;22021:19;;21801:245::o;22871:404::-;23073:2;23055:21;;;23112:2;23092:18;;;23085:30;23151:34;23146:2;23131:18;;23124:62;-1:-1:-1;;;23217:2:1;23202:18;;23195:38;23265:3;23250:19;;23045:230::o;23641:397::-;23843:2;23825:21;;;23882:2;23862:18;;;23855:30;23921:34;23916:2;23901:18;;23894:62;-1:-1:-1;;;23987:2:1;23972:18;;23965:31;24028:3;24013:19;;23815:223::o;24899:186::-;;-1:-1:-1;;;;;24984:6:1;24981:30;24978:2;;;25014:18;;:::i;:::-;-1:-1:-1;25074:4:1;25055:17;;;25051:28;;24968:117::o;25222:128::-;;25293:1;25289:6;25286:1;25283:13;25280:2;;;25299:18;;:::i;:::-;-1:-1:-1;25335:9:1;;25270:80::o;25355:258::-;25427:1;25437:113;25451:6;25448:1;25445:13;25437:113;;;25527:11;;;25521:18;25508:11;;;25501:39;25473:2;25466:10;25437:113;;;25568:6;25565:1;25562:13;25559:2;;;-1:-1:-1;;25603:1:1;25585:16;;25578:27;25408:205::o;25618:380::-;25703:1;25693:12;;25750:1;25740:12;;;25761:2;;25815:4;25807:6;25803:17;25793:27;;25761:2;25868;25860:6;25857:14;25837:18;25834:38;25831:2;;;25914:10;25909:3;25905:20;25902:1;25895:31;25949:4;25946:1;25939:15;25977:4;25974:1;25967:15;25831:2;;25673:325;;;:::o;26003:249::-;26113:2;26094:13;;-1:-1:-1;;26090:27:1;26078:40;;-1:-1:-1;;;;;26133:34:1;;26169:22;;;26130:62;26127:2;;;26195:18;;:::i;:::-;26231:2;26224:22;-1:-1:-1;;26050:202:1:o;26257:135::-;;-1:-1:-1;;26317:17:1;;26314:2;;;26337:18;;:::i;:::-;-1:-1:-1;26384:1:1;26373:13;;26304:88::o;26397:127::-;26458:10;26453:3;26449:20;26446:1;26439:31;26489:4;26486:1;26479:15;26513:4;26510:1;26503:15;26529:127;26590:10;26585:3;26581:20;26578:1;26571:31;26621:4;26618:1;26611:15;26645:4;26642:1;26635:15;26661:185;;26738:1;26720:16;26717:23;26714:2;;;26788:1;26783:3;26778;26763:27;26819:10;26814:3;26810:20;26704:142;:::o;26851:671::-;;26932:4;26914:16;26911:26;26908:2;;;26940:5;;26908:2;26974;26968:9;-1:-1:-1;;27039:16:1;27035:25;;27032:1;26968:9;27011:50;27090:4;27084:11;27114:16;-1:-1:-1;;;;;27220:2:1;27213:4;27205:6;27201:17;27198:25;27193:2;27185:6;27182:14;27179:45;27176:2;;;27227:5;;;;;;;27176:2;27264:6;27258:4;27254:17;27243:28;;27300:3;27294:10;27327:2;27319:6;27316:14;27313:2;;;27333:5;;;;;;;;27313:2;27417;27398:16;27392:4;27388:27;27384:36;27377:4;27368:6;27363:3;27359:16;27355:27;27352:69;27349:2;;;27424:5;;;;;;;;27349:2;27440:57;27491:4;27482:6;27474;27470:19;27466:30;27460:4;27440:57;:::i;:::-;-1:-1:-1;27513:3:1;;-1:-1:-1;;;;;26898:624:1;:::o;27527:131::-;-1:-1:-1;;;;;;27601:32:1;;27591:43;;27581:2;;27648:1;27645;27638:12

Swarm Source

ipfs://8c52b1f39b18ab760095b4abbde753c2e684522de5a60fd5d399014b7b2c5497
Loading