ETH Price: $3,319.53 (+2.52%)
 

Overview

Max Total Supply

19 NON

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
solostash.eth
0x1530f645b20fbfda841464ab50d316413d4ac7a4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NON

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-04
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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


// OpenZeppelin Contracts v4.4.1 (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 be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (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: balance query for the zero address");
        return _balances[id][account];
    }

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

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

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

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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 owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

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

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

        address operator = _msgSender();

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `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();

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

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

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

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

        address operator = _msgSender();

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

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

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

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

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * 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();

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

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

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {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 `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

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

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

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

        return array;
    }
}

pragma solidity >= 0.8.0 < 0.9.0;





contract NON is ERC1155, Ownable, ReentrancyGuard {
    string public name = "Nation Of Nowhere";
    string public symbol = "NON";
    using Strings for uint256;
    mapping(uint => string) public tokenURI;

    uint256 public PRICE = 0.099 ether;

    bool public paused;
    bool public allowOldSeasonMints;
    bool public whitelistMintsOnly = true;

    uint public supply;

    uint256 public Season = 1;
    uint256 public maxPerSeason = 1000;
    mapping(uint => uint) public mintsForSeason;

    mapping(uint256 => mapping(address => bool)) public hasUserAlreadyMintedForSeason;

    mapping(uint256 => address[]) public whitelist;

    string public InitialURI = "ipfs://QmVTtN3yxfFePqhGmtifRABMm9V9XV1A8Xxmng4jWBeckZ";


    constructor() ERC1155("") {
        _mint(msg.sender, 1, 1, "");   
        setURI(1,InitialURI);
    }

    // Minting Functions

    function mint(uint32 _season) external payable nonReentrant {
        require(!paused,"Contract is paused");
        require(_season == Season,"You are minting the wrong seasons passport, Season has ended");
        require(msg.value >= PRICE , "Insufficient eth sent.");
        require(mintsForSeason[Season] < maxPerSeason,"Sold out");
        require(!hasUserAlreadyMintedForSeason[_season][msg.sender], "You have already minted this season");

        if(whitelistMintsOnly){
            require(isWhitelisted(_season,msg.sender), "you are not on the whitelist");
        }


        _mint(msg.sender, _season, 1, "");
        hasUserAlreadyMintedForSeason[_season][msg.sender] = true;
        mintsForSeason[_season]++;
        supply++;
    }

    function mintOldSeason(uint32 _season) external payable nonReentrant {
        require(!allowOldSeasonMints, "Old Season minting disabled");
        require(msg.value >= PRICE , "Insufficient eth sent.");
        require(mintsForSeason[Season] < maxPerSeason,"Sold out");
        require(!hasUserAlreadyMintedForSeason[_season][msg.sender], "You have already minted this season");
        if(whitelistMintsOnly){
            require(isWhitelisted(_season,msg.sender), "you are not on the whitelist");
        }

        _mint(msg.sender, _season, 1, "");
        hasUserAlreadyMintedForSeason[_season][msg.sender] = true;
        mintsForSeason[_season]++;
        supply++;
    }

    function mintForAddress(
        address to,
        uint32 id,
        uint32 quantity      
    ) external onlyOwner {
        supply += quantity;
        _mint(to, id, quantity, "");
        mintsForSeason[id]+= quantity;

    }

    function batchMintForAddress(
        address[] calldata to,
        uint32 id,
        uint256[] calldata quantity      
    ) external onlyOwner {
        uint i;
        for (i=0; i<quantity.length; i++) {
            supply += quantity[i];
            _mint(to[i], id, quantity[i], "");
        }
    }

    // Change Values

    function setURI(uint _id, string memory _uri) public onlyOwner {
        tokenURI[_id] = _uri;
        emit URI(_uri, _id);
    }

    function changePrice(uint256 newPrice) public onlyOwner{
        PRICE = newPrice;
    }

    function changeMaxPerSeason(uint256 newSupply) public onlyOwner{
        maxPerSeason = newSupply;
    }

    function changeSeason(uint256 newSeason) public onlyOwner{
        Season = newSeason;
    }

    function changePauseStatus(bool newStatus) public onlyOwner{
        paused = newStatus;
    }

    function setWhitelistOnly(bool newStatus) public onlyOwner{
        whitelistMintsOnly = newStatus;
    }

    function changeOldSeasonMintsStatus(bool newStatus) public onlyOwner{
        allowOldSeasonMints = newStatus;
    }

    function changeHasUserAlreadyMintedForSeason(uint256 season, address user, bool status) public onlyOwner{
        hasUserAlreadyMintedForSeason[season][user] = status;
    }

    function createWhitelist(uint256 season, address[] calldata users) public onlyOwner{
        delete whitelist[season];
        whitelist[season] = users;
    }


    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }


    // Return Functions
    function isWhitelisted(uint256 season, address _user) public view returns (bool) {
        for (uint i = 0; i < whitelist[season].length; i++) {
            if (whitelist[season][i] == _user) {
                return true;
            }
        }
        return false;
    }

    function uri(uint _id) public override view returns (string memory) {
        return tokenURI[_id];
    }

 

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"InitialURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Season","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowOldSeasonMints","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint32","name":"id","type":"uint32"},{"internalType":"uint256[]","name":"quantity","type":"uint256[]"}],"name":"batchMintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"season","type":"uint256"},{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"changeHasUserAlreadyMintedForSeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"changeMaxPerSeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"changeOldSeasonMintsStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"changePauseStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSeason","type":"uint256"}],"name":"changeSeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"season","type":"uint256"},{"internalType":"address[]","name":"users","type":"address[]"}],"name":"createWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"hasUserAlreadyMintedForSeason","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":"uint256","name":"season","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerSeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_season","type":"uint32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint32","name":"id","type":"uint32"},{"internalType":"uint32","name":"quantity","type":"uint32"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_season","type":"uint32"}],"name":"mintOldSeason","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintsForSeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setWhitelistOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintsOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280601181526020017f4e6174696f6e204f66204e6f776865726500000000000000000000000000000081525060059080519060200190620000519291906200089f565b506040518060400160405280600381526020017f4e4f4e0000000000000000000000000000000000000000000000000000000000815250600690805190602001906200009f9291906200089f565b5067015fb7f9b8c380006008556001600960026101000a81548160ff0219169083151502179055506001600b556103e8600c55604051806060016040528060358152602001620060e06035913960109080519060200190620001039291906200089f565b503480156200011157600080fd5b506040518060200160405280600081525062000133816200022b60201b60201c565b5062000154620001486200024760201b60201c565b6200024f60201b60201c565b60016004819055506200018033600180604051806020016040528060008152506200031560201b60201c565b6200022560016010805462000195906200097e565b80601f0160208091040260200160405190810160405280929190818152602001828054620001c3906200097e565b8015620002145780601f10620001e85761010080835404028352916020019162000214565b820191906000526020600020905b815481529060010190602001808311620001f657829003601f168201915b5050505050620004d960201b60201c565b6200108e565b8060029080519060200190620002439291906200089f565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000387576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037e9062000a3a565b60405180910390fd5b6000620003996200024760201b60201c565b9050620003d281600087620003b488620005d060201b60201c565b620003c588620005d060201b60201c565b876200065160201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000433919062000a95565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051620004b392919062000b03565b60405180910390a4620004d2816000878787876200065960201b60201c565b5050505050565b620004e96200024760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200050f6200085260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000568576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055f9062000b80565b60405180910390fd5b80600760008481526020019081526020016000209080519060200190620005919291906200089f565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b82604051620005c4919062000c35565b60405180910390a25050565b60606000600167ffffffffffffffff811115620005f257620005f162000c59565b5b604051908082528060200260200182016040528015620006215781602001602082028036833780820191505090505b50905082816000815181106200063c576200063b62000c88565b5b60200260200101818152505080915050919050565b505050505050565b620006858473ffffffffffffffffffffffffffffffffffffffff166200087c60201b620023e91760201c565b156200084a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401620006ce95949392919062000d59565b6020604051808303816000875af19250505080156200070d57506040513d601f19601f820116820180604052508101906200070a919062000e29565b60015b620007be576200071c62000e68565b806308c379a0036200077f57506200073362000ec3565b8062000740575062000781565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000776919062000c35565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b59062000fd4565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000848576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200083f906200106c565b60405180910390fd5b505b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620008ad906200097e565b90600052602060002090601f016020900481019282620008d157600085556200091d565b82601f10620008ec57805160ff19168380011785556200091d565b828001600101855582156200091d579182015b828111156200091c578251825591602001919060010190620008ff565b5b5090506200092c919062000930565b5090565b5b808211156200094b57600081600090555060010162000931565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200099757607f821691505b602082108103620009ad57620009ac6200094f565b5b50919050565b600082825260208201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000a22602183620009b3565b915062000a2f82620009c4565b604082019050919050565b6000602082019050818103600083015262000a558162000a13565b9050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000aa28262000a5c565b915062000aaf8362000a5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ae75762000ae662000a66565b5b828201905092915050565b62000afd8162000a5c565b82525050565b600060408201905062000b1a600083018562000af2565b62000b29602083018462000af2565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b68602083620009b3565b915062000b758262000b30565b602082019050919050565b6000602082019050818103600083015262000b9b8162000b59565b9050919050565b600081519050919050565b60005b8381101562000bcd57808201518184015260208101905062000bb0565b8381111562000bdd576000848401525b50505050565b6000601f19601f8301169050919050565b600062000c018262000ba2565b62000c0d8185620009b3565b935062000c1f81856020860162000bad565b62000c2a8162000be3565b840191505092915050565b6000602082019050818103600083015262000c51818462000bf4565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ce48262000cb7565b9050919050565b62000cf68162000cd7565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000d258262000cfc565b62000d31818562000d07565b935062000d4381856020860162000bad565b62000d4e8162000be3565b840191505092915050565b600060a08201905062000d70600083018862000ceb565b62000d7f602083018762000ceb565b62000d8e604083018662000af2565b62000d9d606083018562000af2565b818103608083015262000db1818462000d18565b90509695505050505050565b6000604051905090565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000e038162000dcc565b811462000e0f57600080fd5b50565b60008151905062000e238162000df8565b92915050565b60006020828403121562000e425762000e4162000dc7565b5b600062000e528482850162000e12565b91505092915050565b60008160e01c9050919050565b600060033d111562000e8a5760046000803e62000e8760005162000e5b565b90505b90565b62000e988262000be3565b810181811067ffffffffffffffff8211171562000eba5762000eb962000c59565b5b80604052505050565b600060443d1062000f5b5762000ed862000dbd565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000f0257505062000f5b565b808201805167ffffffffffffffff81111562000f22575050505062000f5b565b80602083010160043d03850181111562000f4157505050505062000f5b565b62000f528260200185018662000e8d565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600062000fbc603483620009b3565b915062000fc98262000f5e565b604082019050919050565b6000602082019050818103600083015262000fef8162000fad565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600062001054602883620009b3565b9150620010618262000ff6565b604082019050919050565b60006020820190508181036000830152620010878162001045565b9050919050565b615042806200109e6000396000f3fe6080604052600436106102395760003560e01c8063854802aa1161012e578063a71bbebe116100ab578063e985e9c51161006f578063e985e9c514610856578063ea05a8c614610893578063f242432a146108bc578063f2fde38b146108e5578063fb3484121461090e57610239565b8063a71bbebe1461077e578063b2b95c691461079a578063bedcdfae146107c3578063c58d162e146107ee578063c87b56dd1461081957610239565b806395d89b41116100f257806395d89b41146106af5780639e87bc36146106da578063a22cb46514610703578063a2b40d191461072c578063a41bc5431461075557610239565b8063854802aa146105dc578063862440e21461060757806386eb6813146106305780638d859f3e146106595780638da5cb5b1461068457610239565b80633ccfd60b116101bc5780635c975abb116101805780635c975abb1461050b57806364d96134146105365780636904efca1461055f578063715018a6146105885780637d22c35c1461059f57610239565b80633ccfd60b1461044257806344aac4301461044c57806345627de6146104895780634e1273f4146104a55780634e9df54d146104e257610239565b80630b2c35dd116102035780630b2c35dd1461034b5780630e89341c146103885780632eb2c2d6146103c557806330237d8f146103ee5780633424b8ce1461041957610239565b80629b600d1461023e578062fdd58e1461027b57806301ffc9a7146102b8578063047fc9aa146102f557806306fdde0314610320575b600080fd5b34801561024a57600080fd5b5061026560048036038101906102609190613415565b610939565b6040516102729190613470565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061348b565b610968565b6040516102af91906134da565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da919061354d565b610a30565b6040516102ec9190613470565b60405180910390f35b34801561030157600080fd5b5061030a610b12565b60405161031791906134da565b60405180910390f35b34801561032c57600080fd5b50610335610b18565b6040516103429190613613565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190613635565b610ba6565b60405161037f91906134da565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190613635565b610bbe565b6040516103bc9190613613565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e7919061385f565b610c63565b005b3480156103fa57600080fd5b50610403610d04565b60405161041091906134da565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b919061395a565b610d0a565b005b61044a610da3565b005b34801561045857600080fd5b50610473600480360381019061046e9190613987565b610e9f565b60405161048091906139d6565b60405180910390f35b6104a3600480360381019061049e9190613a2d565b610eed565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613b1d565b611214565b6040516104d99190613c53565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190613d26565b61132d565b005b34801561051757600080fd5b50610520611465565b60405161052d9190613470565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613dbb565b611478565b005b34801561056b57600080fd5b5061058660048036038101906105819190613e0e565b611561565b005b34801561059457600080fd5b5061059d61165e565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613415565b6116e6565b6040516105d39190613470565b60405180910390f35b3480156105e857600080fd5b506105f16117b7565b6040516105fe9190613613565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613f02565b611845565b005b34801561063c57600080fd5b5061065760048036038101906106529190613635565b611925565b005b34801561066557600080fd5b5061066e6119ab565b60405161067b91906134da565b60405180910390f35b34801561069057600080fd5b506106996119b1565b6040516106a691906139d6565b60405180910390f35b3480156106bb57600080fd5b506106c46119db565b6040516106d19190613613565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613635565b611a69565b005b34801561070f57600080fd5b5061072a60048036038101906107259190613f5e565b611aef565b005b34801561073857600080fd5b50610753600480360381019061074e9190613635565b611b05565b005b34801561076157600080fd5b5061077c60048036038101906107779190613f9e565b611b8b565b005b61079860048036038101906107939190613a2d565b611c4e565b005b3480156107a657600080fd5b506107c160048036038101906107bc919061395a565b611fbf565b005b3480156107cf57600080fd5b506107d8612058565b6040516107e59190613470565b60405180910390f35b3480156107fa57600080fd5b5061080361206b565b6040516108109190613470565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190613635565b61207e565b60405161084d9190613613565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613ffe565b61211e565b60405161088a9190613470565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b5919061395a565b6121b2565b005b3480156108c857600080fd5b506108e360048036038101906108de919061403e565b61224b565b005b3480156108f157600080fd5b5061090c600480360381019061090791906140d5565b6122ec565b005b34801561091a57600080fd5b506109236123e3565b60405161093091906134da565b60405180910390f35b600e6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90614174565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afb57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0b5750610b0a8261240c565b5b9050919050565b600a5481565b60058054610b25906141c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b51906141c3565b8015610b9e5780601f10610b7357610100808354040283529160200191610b9e565b820191906000526020600020905b815481529060010190602001808311610b8157829003601f168201915b505050505081565b600d6020528060005260406000206000915090505481565b6060600760008381526020019081526020016000208054610bde906141c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a906141c3565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b50505050509050919050565b610c6b612476565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610cb15750610cb085610cab612476565b61211e565b5b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790614266565b60405180910390fd5b610cfd858585858561247e565b5050505050565b600b5481565b610d12612476565b73ffffffffffffffffffffffffffffffffffffffff16610d306119b1565b73ffffffffffffffffffffffffffffffffffffffff1614610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d906142d2565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b610dab612476565b73ffffffffffffffffffffffffffffffffffffffff16610dc96119b1565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e16906142d2565b60405180910390fd5b6000610e296119b1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e4c90614323565b60006040518083038185875af1925050503d8060008114610e89576040519150601f19603f3d011682016040523d82523d6000602084013e610e8e565b606091505b5050905080610e9c57600080fd5b50565b600f6020528160005260406000208181548110610ebb57600080fd5b906000526020600020016000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260045403610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990614384565b60405180910390fd5b6002600481905550600960019054906101000a900460ff1615610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f81906143f0565b60405180910390fd5b600854341015610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc69061445c565b60405180910390fd5b600c54600d6000600b5481526020019081526020016000205410611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f906144c8565b60405180910390fd5b600e60008263ffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c39061455a565b60405180910390fd5b600960029054906101000a900460ff1615611131576110f18163ffffffff16336116e6565b611130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611127906145c6565b60405180910390fd5b5b611153338263ffffffff16600160405180602001604052806000815250612791565b6001600e60008363ffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600d60008263ffffffff16815260200190815260200160002060008154809291906111ec90614615565b9190505550600a600081548092919061120490614615565b9190505550600160048190555050565b6060815183511461125a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611251906146cf565b60405180910390fd5b6000835167ffffffffffffffff81111561127757611276613667565b5b6040519080825280602002602001820160405280156112a55781602001602082028036833780820191505090505b50905060005b8451811015611322576112f28582815181106112ca576112c96146ef565b5b60200260200101518583815181106112e5576112e46146ef565b5b6020026020010151610968565b828281518110611305576113046146ef565b5b6020026020010181815250508061131b90614615565b90506112ab565b508091505092915050565b611335612476565b73ffffffffffffffffffffffffffffffffffffffff166113536119b1565b73ffffffffffffffffffffffffffffffffffffffff16146113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a0906142d2565b60405180910390fd5b60005b8282905081101561145d578282828181106113ca576113c96146ef565b5b90506020020135600a60008282546113e2919061471e565b9250508190555061144a8686838181106113ff576113fe6146ef565b5b905060200201602081019061141491906140d5565b8563ffffffff1685858581811061142e5761142d6146ef565b5b9050602002013560405180602001604052806000815250612791565b808061145590614615565b9150506113ac565b505050505050565b600960009054906101000a900460ff1681565b611480612476565b73ffffffffffffffffffffffffffffffffffffffff1661149e6119b1565b73ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb906142d2565b60405180910390fd5b80600e600085815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b611569612476565b73ffffffffffffffffffffffffffffffffffffffff166115876119b1565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906142d2565b60405180910390fd5b8063ffffffff16600a60008282546115f5919061471e565b92505081905550611623838363ffffffff168363ffffffff1660405180602001604052806000815250612791565b8063ffffffff16600d60008463ffffffff1681526020019081526020016000206000828254611652919061471e565b92505081905550505050565b611666612476565b73ffffffffffffffffffffffffffffffffffffffff166116846119b1565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d1906142d2565b60405180910390fd5b6116e46000612926565b565b600080600090505b600f6000858152602001908152602001600020805490508110156117ab578273ffffffffffffffffffffffffffffffffffffffff16600f60008681526020019081526020016000208281548110611748576117476146ef565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036117985760019150506117b1565b80806117a390614615565b9150506116ee565b50600090505b92915050565b601080546117c4906141c3565b80601f01602080910402602001604051908101604052809291908181526020018280546117f0906141c3565b801561183d5780601f106118125761010080835404028352916020019161183d565b820191906000526020600020905b81548152906001019060200180831161182057829003601f168201915b505050505081565b61184d612476565b73ffffffffffffffffffffffffffffffffffffffff1661186b6119b1565b73ffffffffffffffffffffffffffffffffffffffff16146118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b8906142d2565b60405180910390fd5b806007600084815260200190815260200160002090805190602001906118e8929190613209565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516119199190613613565b60405180910390a25050565b61192d612476565b73ffffffffffffffffffffffffffffffffffffffff1661194b6119b1565b73ffffffffffffffffffffffffffffffffffffffff16146119a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611998906142d2565b60405180910390fd5b80600c8190555050565b60085481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600680546119e8906141c3565b80601f0160208091040260200160405190810160405280929190818152602001828054611a14906141c3565b8015611a615780601f10611a3657610100808354040283529160200191611a61565b820191906000526020600020905b815481529060010190602001808311611a4457829003601f168201915b505050505081565b611a71612476565b73ffffffffffffffffffffffffffffffffffffffff16611a8f6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc906142d2565b60405180910390fd5b80600b8190555050565b611b01611afa612476565b83836129ec565b5050565b611b0d612476565b73ffffffffffffffffffffffffffffffffffffffff16611b2b6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b78906142d2565b60405180910390fd5b8060088190555050565b611b93612476565b73ffffffffffffffffffffffffffffffffffffffff16611bb16119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe906142d2565b60405180910390fd5b600f60008481526020019081526020016000206000611c26919061328f565b8181600f60008681526020019081526020016000209190611c489291906132b0565b50505050565b600260045403611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90614384565b60405180910390fd5b6002600481905550600960009054906101000a900460ff1615611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce2906147c0565b60405180910390fd5b600b548163ffffffff1614611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614852565b60405180910390fd5b600854341015611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d719061445c565b60405180910390fd5b600c54600d6000600b5481526020019081526020016000205410611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca906144c8565b60405180910390fd5b600e60008263ffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e9061455a565b60405180910390fd5b600960029054906101000a900460ff1615611edc57611e9c8163ffffffff16336116e6565b611edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed2906145c6565b60405180910390fd5b5b611efe338263ffffffff16600160405180602001604052806000815250612791565b6001600e60008363ffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600d60008263ffffffff1681526020019081526020016000206000815480929190611f9790614615565b9190505550600a6000815480929190611faf90614615565b9190505550600160048190555050565b611fc7612476565b73ffffffffffffffffffffffffffffffffffffffff16611fe56119b1565b73ffffffffffffffffffffffffffffffffffffffff161461203b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612032906142d2565b60405180910390fd5b80600960016101000a81548160ff02191690831515021790555050565b600960029054906101000a900460ff1681565b600960019054906101000a900460ff1681565b6007602052806000526040600020600091509050805461209d906141c3565b80601f01602080910402602001604051908101604052809291908181526020018280546120c9906141c3565b80156121165780601f106120eb57610100808354040283529160200191612116565b820191906000526020600020905b8154815290600101906020018083116120f957829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121ba612476565b73ffffffffffffffffffffffffffffffffffffffff166121d86119b1565b73ffffffffffffffffffffffffffffffffffffffff161461222e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612225906142d2565b60405180910390fd5b80600960026101000a81548160ff02191690831515021790555050565b612253612476565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612299575061229885612293612476565b61211e565b5b6122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf906148e4565b60405180910390fd5b6122e58585858585612b58565b5050505050565b6122f4612476565b73ffffffffffffffffffffffffffffffffffffffff166123126119b1565b73ffffffffffffffffffffffffffffffffffffffff1614612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f906142d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce90614976565b60405180910390fd5b6123e081612926565b50565b600c5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b81518351146124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990614a08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252890614a9a565b60405180910390fd5b600061253b612476565b905061254b818787878787612dd9565b60005b84518110156126fc57600085828151811061256c5761256b6146ef565b5b60200260200101519050600085838151811061258b5761258a6146ef565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561262c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262390614b2c565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e1919061471e565b92505081905550505050806126f590614615565b905061254e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612773929190614b4c565b60405180910390a4612789818787878787612de1565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f790614bf5565b60405180910390fd5b600061280a612476565b905061282b8160008761281c88612fb8565b61282588612fb8565b87612dd9565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288a919061471e565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612908929190614c15565b60405180910390a461291f81600087878787613032565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5190614cb0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b4b9190613470565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe90614a9a565b60405180910390fd5b6000612bd1612476565b9050612bf1818787612be288612fb8565b612beb88612fb8565b87612dd9565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7f90614b2c565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d3d919061471e565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612dba929190614c15565b60405180910390a4612dd0828888888888613032565b50505050505050565b505050505050565b612e008473ffffffffffffffffffffffffffffffffffffffff166123e9565b15612fb0578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612e46959493929190614d25565b6020604051808303816000875af1925050508015612e8257506040513d601f19601f82011682018060405250810190612e7f9190614da2565b60015b612f2757612e8e614ddc565b806308c379a003612eea5750612ea2614dfe565b80612ead5750612eec565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee19190613613565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1e90614f00565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa590614f92565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612fd757612fd6613667565b5b6040519080825280602002602001820160405280156130055781602001602082028036833780820191505090505b509050828160008151811061301d5761301c6146ef565b5b60200260200101818152505080915050919050565b6130518473ffffffffffffffffffffffffffffffffffffffff166123e9565b15613201578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613097959493929190614fb2565b6020604051808303816000875af19250505080156130d357506040513d601f19601f820116820180604052508101906130d09190614da2565b60015b613178576130df614ddc565b806308c379a00361313b57506130f3614dfe565b806130fe575061313d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131329190613613565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316f90614f00565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f690614f92565b60405180910390fd5b505b505050505050565b828054613215906141c3565b90600052602060002090601f016020900481019282613237576000855561327e565b82601f1061325057805160ff191683800117855561327e565b8280016001018555821561327e579182015b8281111561327d578251825591602001919060010190613262565b5b50905061328b9190613350565b5090565b50805460008255906000526020600020908101906132ad9190613350565b50565b82805482825590600052602060002090810192821561333f579160200282015b8281111561333e57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906132d0565b5b50905061334c9190613350565b5090565b5b80821115613369576000816000905550600101613351565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61339481613381565b811461339f57600080fd5b50565b6000813590506133b18161338b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133e2826133b7565b9050919050565b6133f2816133d7565b81146133fd57600080fd5b50565b60008135905061340f816133e9565b92915050565b6000806040838503121561342c5761342b613377565b5b600061343a858286016133a2565b925050602061344b85828601613400565b9150509250929050565b60008115159050919050565b61346a81613455565b82525050565b60006020820190506134856000830184613461565b92915050565b600080604083850312156134a2576134a1613377565b5b60006134b085828601613400565b92505060206134c1858286016133a2565b9150509250929050565b6134d481613381565b82525050565b60006020820190506134ef60008301846134cb565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61352a816134f5565b811461353557600080fd5b50565b60008135905061354781613521565b92915050565b60006020828403121561356357613562613377565b5b600061357184828501613538565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135b4578082015181840152602081019050613599565b838111156135c3576000848401525b50505050565b6000601f19601f8301169050919050565b60006135e58261357a565b6135ef8185613585565b93506135ff818560208601613596565b613608816135c9565b840191505092915050565b6000602082019050818103600083015261362d81846135da565b905092915050565b60006020828403121561364b5761364a613377565b5b6000613659848285016133a2565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61369f826135c9565b810181811067ffffffffffffffff821117156136be576136bd613667565b5b80604052505050565b60006136d161336d565b90506136dd8282613696565b919050565b600067ffffffffffffffff8211156136fd576136fc613667565b5b602082029050602081019050919050565b600080fd5b6000613726613721846136e2565b6136c7565b905080838252602082019050602084028301858111156137495761374861370e565b5b835b81811015613772578061375e88826133a2565b84526020840193505060208101905061374b565b5050509392505050565b600082601f83011261379157613790613662565b5b81356137a1848260208601613713565b91505092915050565b600080fd5b600067ffffffffffffffff8211156137ca576137c9613667565b5b6137d3826135c9565b9050602081019050919050565b82818337600083830152505050565b60006138026137fd846137af565b6136c7565b90508281526020810184848401111561381e5761381d6137aa565b5b6138298482856137e0565b509392505050565b600082601f83011261384657613845613662565b5b81356138568482602086016137ef565b91505092915050565b600080600080600060a0868803121561387b5761387a613377565b5b600061388988828901613400565b955050602061389a88828901613400565b945050604086013567ffffffffffffffff8111156138bb576138ba61337c565b5b6138c78882890161377c565b935050606086013567ffffffffffffffff8111156138e8576138e761337c565b5b6138f48882890161377c565b925050608086013567ffffffffffffffff8111156139155761391461337c565b5b61392188828901613831565b9150509295509295909350565b61393781613455565b811461394257600080fd5b50565b6000813590506139548161392e565b92915050565b6000602082840312156139705761396f613377565b5b600061397e84828501613945565b91505092915050565b6000806040838503121561399e5761399d613377565b5b60006139ac858286016133a2565b92505060206139bd858286016133a2565b9150509250929050565b6139d0816133d7565b82525050565b60006020820190506139eb60008301846139c7565b92915050565b600063ffffffff82169050919050565b613a0a816139f1565b8114613a1557600080fd5b50565b600081359050613a2781613a01565b92915050565b600060208284031215613a4357613a42613377565b5b6000613a5184828501613a18565b91505092915050565b600067ffffffffffffffff821115613a7557613a74613667565b5b602082029050602081019050919050565b6000613a99613a9484613a5a565b6136c7565b90508083825260208201905060208402830185811115613abc57613abb61370e565b5b835b81811015613ae55780613ad18882613400565b845260208401935050602081019050613abe565b5050509392505050565b600082601f830112613b0457613b03613662565b5b8135613b14848260208601613a86565b91505092915050565b60008060408385031215613b3457613b33613377565b5b600083013567ffffffffffffffff811115613b5257613b5161337c565b5b613b5e85828601613aef565b925050602083013567ffffffffffffffff811115613b7f57613b7e61337c565b5b613b8b8582860161377c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bca81613381565b82525050565b6000613bdc8383613bc1565b60208301905092915050565b6000602082019050919050565b6000613c0082613b95565b613c0a8185613ba0565b9350613c1583613bb1565b8060005b83811015613c46578151613c2d8882613bd0565b9750613c3883613be8565b925050600181019050613c19565b5085935050505092915050565b60006020820190508181036000830152613c6d8184613bf5565b905092915050565b600080fd5b60008083601f840112613c9057613c8f613662565b5b8235905067ffffffffffffffff811115613cad57613cac613c75565b5b602083019150836020820283011115613cc957613cc861370e565b5b9250929050565b60008083601f840112613ce657613ce5613662565b5b8235905067ffffffffffffffff811115613d0357613d02613c75565b5b602083019150836020820283011115613d1f57613d1e61370e565b5b9250929050565b600080600080600060608688031215613d4257613d41613377565b5b600086013567ffffffffffffffff811115613d6057613d5f61337c565b5b613d6c88828901613c7a565b95509550506020613d7f88828901613a18565b935050604086013567ffffffffffffffff811115613da057613d9f61337c565b5b613dac88828901613cd0565b92509250509295509295909350565b600080600060608486031215613dd457613dd3613377565b5b6000613de2868287016133a2565b9350506020613df386828701613400565b9250506040613e0486828701613945565b9150509250925092565b600080600060608486031215613e2757613e26613377565b5b6000613e3586828701613400565b9350506020613e4686828701613a18565b9250506040613e5786828701613a18565b9150509250925092565b600067ffffffffffffffff821115613e7c57613e7b613667565b5b613e85826135c9565b9050602081019050919050565b6000613ea5613ea084613e61565b6136c7565b905082815260208101848484011115613ec157613ec06137aa565b5b613ecc8482856137e0565b509392505050565b600082601f830112613ee957613ee8613662565b5b8135613ef9848260208601613e92565b91505092915050565b60008060408385031215613f1957613f18613377565b5b6000613f27858286016133a2565b925050602083013567ffffffffffffffff811115613f4857613f4761337c565b5b613f5485828601613ed4565b9150509250929050565b60008060408385031215613f7557613f74613377565b5b6000613f8385828601613400565b9250506020613f9485828601613945565b9150509250929050565b600080600060408486031215613fb757613fb6613377565b5b6000613fc5868287016133a2565b935050602084013567ffffffffffffffff811115613fe657613fe561337c565b5b613ff286828701613c7a565b92509250509250925092565b6000806040838503121561401557614014613377565b5b600061402385828601613400565b925050602061403485828601613400565b9150509250929050565b600080600080600060a0868803121561405a57614059613377565b5b600061406888828901613400565b955050602061407988828901613400565b945050604061408a888289016133a2565b935050606061409b888289016133a2565b925050608086013567ffffffffffffffff8111156140bc576140bb61337c565b5b6140c888828901613831565b9150509295509295909350565b6000602082840312156140eb576140ea613377565b5b60006140f984828501613400565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061415e602b83613585565b915061416982614102565b604082019050919050565b6000602082019050818103600083015261418d81614151565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141db57607f821691505b6020821081036141ee576141ed614194565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614250603283613585565b915061425b826141f4565b604082019050919050565b6000602082019050818103600083015261427f81614243565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142bc602083613585565b91506142c782614286565b602082019050919050565b600060208201905081810360008301526142eb816142af565b9050919050565b600081905092915050565b50565b600061430d6000836142f2565b9150614318826142fd565b600082019050919050565b600061432e82614300565b9150819050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061436e601f83613585565b915061437982614338565b602082019050919050565b6000602082019050818103600083015261439d81614361565b9050919050565b7f4f6c6420536561736f6e206d696e74696e672064697361626c65640000000000600082015250565b60006143da601b83613585565b91506143e5826143a4565b602082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b7f496e73756666696369656e74206574682073656e742e00000000000000000000600082015250565b6000614446601683613585565b915061445182614410565b602082019050919050565b6000602082019050818103600083015261447581614439565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b60006144b2600883613585565b91506144bd8261447c565b602082019050919050565b600060208201905081810360008301526144e1816144a5565b9050919050565b7f596f75206861766520616c7265616479206d696e74656420746869732073656160008201527f736f6e0000000000000000000000000000000000000000000000000000000000602082015250565b6000614544602383613585565b915061454f826144e8565b604082019050919050565b6000602082019050818103600083015261457381614537565b9050919050565b7f796f7520617265206e6f74206f6e207468652077686974656c69737400000000600082015250565b60006145b0601c83613585565b91506145bb8261457a565b602082019050919050565b600060208201905081810360008301526145df816145a3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061462082613381565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614652576146516145e6565b5b600182019050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006146b9602983613585565b91506146c48261465d565b604082019050919050565b600060208201905081810360008301526146e8816146ac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061472982613381565b915061473483613381565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614769576147686145e6565b5b828201905092915050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b60006147aa601283613585565b91506147b582614774565b602082019050919050565b600060208201905081810360008301526147d98161479d565b9050919050565b7f596f7520617265206d696e74696e67207468652077726f6e6720736561736f6e60008201527f732070617373706f72742c20536561736f6e2068617320656e64656400000000602082015250565b600061483c603c83613585565b9150614847826147e0565b604082019050919050565b6000602082019050818103600083015261486b8161482f565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006148ce602983613585565b91506148d982614872565b604082019050919050565b600060208201905081810360008301526148fd816148c1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614960602683613585565b915061496b82614904565b604082019050919050565b6000602082019050818103600083015261498f81614953565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006149f2602883613585565b91506149fd82614996565b604082019050919050565b60006020820190508181036000830152614a21816149e5565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a84602583613585565b9150614a8f82614a28565b604082019050919050565b60006020820190508181036000830152614ab381614a77565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614b16602a83613585565b9150614b2182614aba565b604082019050919050565b60006020820190508181036000830152614b4581614b09565b9050919050565b60006040820190508181036000830152614b668185613bf5565b90508181036020830152614b7a8184613bf5565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bdf602183613585565b9150614bea82614b83565b604082019050919050565b60006020820190508181036000830152614c0e81614bd2565b9050919050565b6000604082019050614c2a60008301856134cb565b614c3760208301846134cb565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614c9a602983613585565b9150614ca582614c3e565b604082019050919050565b60006020820190508181036000830152614cc981614c8d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614cf782614cd0565b614d018185614cdb565b9350614d11818560208601613596565b614d1a816135c9565b840191505092915050565b600060a082019050614d3a60008301886139c7565b614d4760208301876139c7565b8181036040830152614d598186613bf5565b90508181036060830152614d6d8185613bf5565b90508181036080830152614d818184614cec565b90509695505050505050565b600081519050614d9c81613521565b92915050565b600060208284031215614db857614db7613377565b5b6000614dc684828501614d8d565b91505092915050565b60008160e01c9050919050565b600060033d1115614dfb5760046000803e614df8600051614dcf565b90505b90565b600060443d10614e8b57614e1061336d565b60043d036004823e80513d602482011167ffffffffffffffff82111715614e38575050614e8b565b808201805167ffffffffffffffff811115614e565750505050614e8b565b80602083010160043d038501811115614e73575050505050614e8b565b614e8282602001850186613696565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614eea603483613585565b9150614ef582614e8e565b604082019050919050565b60006020820190508181036000830152614f1981614edd565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614f7c602883613585565b9150614f8782614f20565b604082019050919050565b60006020820190508181036000830152614fab81614f6f565b9050919050565b600060a082019050614fc760008301886139c7565b614fd460208301876139c7565b614fe160408301866134cb565b614fee60608301856134cb565b81810360808301526150008184614cec565b9050969550505050505056fea2646970667358221220b912e8c150963bcb6531f5e8f3d4da3b96d9b0c56ba799a5b19b2a12518a896764736f6c634300080d0033697066733a2f2f516d5654744e337978664665507168476d7469665241424d6d395639585631413858786d6e67346a574265636b5a

Deployed Bytecode

0x6080604052600436106102395760003560e01c8063854802aa1161012e578063a71bbebe116100ab578063e985e9c51161006f578063e985e9c514610856578063ea05a8c614610893578063f242432a146108bc578063f2fde38b146108e5578063fb3484121461090e57610239565b8063a71bbebe1461077e578063b2b95c691461079a578063bedcdfae146107c3578063c58d162e146107ee578063c87b56dd1461081957610239565b806395d89b41116100f257806395d89b41146106af5780639e87bc36146106da578063a22cb46514610703578063a2b40d191461072c578063a41bc5431461075557610239565b8063854802aa146105dc578063862440e21461060757806386eb6813146106305780638d859f3e146106595780638da5cb5b1461068457610239565b80633ccfd60b116101bc5780635c975abb116101805780635c975abb1461050b57806364d96134146105365780636904efca1461055f578063715018a6146105885780637d22c35c1461059f57610239565b80633ccfd60b1461044257806344aac4301461044c57806345627de6146104895780634e1273f4146104a55780634e9df54d146104e257610239565b80630b2c35dd116102035780630b2c35dd1461034b5780630e89341c146103885780632eb2c2d6146103c557806330237d8f146103ee5780633424b8ce1461041957610239565b80629b600d1461023e578062fdd58e1461027b57806301ffc9a7146102b8578063047fc9aa146102f557806306fdde0314610320575b600080fd5b34801561024a57600080fd5b5061026560048036038101906102609190613415565b610939565b6040516102729190613470565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061348b565b610968565b6040516102af91906134da565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da919061354d565b610a30565b6040516102ec9190613470565b60405180910390f35b34801561030157600080fd5b5061030a610b12565b60405161031791906134da565b60405180910390f35b34801561032c57600080fd5b50610335610b18565b6040516103429190613613565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190613635565b610ba6565b60405161037f91906134da565b60405180910390f35b34801561039457600080fd5b506103af60048036038101906103aa9190613635565b610bbe565b6040516103bc9190613613565b60405180910390f35b3480156103d157600080fd5b506103ec60048036038101906103e7919061385f565b610c63565b005b3480156103fa57600080fd5b50610403610d04565b60405161041091906134da565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b919061395a565b610d0a565b005b61044a610da3565b005b34801561045857600080fd5b50610473600480360381019061046e9190613987565b610e9f565b60405161048091906139d6565b60405180910390f35b6104a3600480360381019061049e9190613a2d565b610eed565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190613b1d565b611214565b6040516104d99190613c53565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190613d26565b61132d565b005b34801561051757600080fd5b50610520611465565b60405161052d9190613470565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613dbb565b611478565b005b34801561056b57600080fd5b5061058660048036038101906105819190613e0e565b611561565b005b34801561059457600080fd5b5061059d61165e565b005b3480156105ab57600080fd5b506105c660048036038101906105c19190613415565b6116e6565b6040516105d39190613470565b60405180910390f35b3480156105e857600080fd5b506105f16117b7565b6040516105fe9190613613565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613f02565b611845565b005b34801561063c57600080fd5b5061065760048036038101906106529190613635565b611925565b005b34801561066557600080fd5b5061066e6119ab565b60405161067b91906134da565b60405180910390f35b34801561069057600080fd5b506106996119b1565b6040516106a691906139d6565b60405180910390f35b3480156106bb57600080fd5b506106c46119db565b6040516106d19190613613565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190613635565b611a69565b005b34801561070f57600080fd5b5061072a60048036038101906107259190613f5e565b611aef565b005b34801561073857600080fd5b50610753600480360381019061074e9190613635565b611b05565b005b34801561076157600080fd5b5061077c60048036038101906107779190613f9e565b611b8b565b005b61079860048036038101906107939190613a2d565b611c4e565b005b3480156107a657600080fd5b506107c160048036038101906107bc919061395a565b611fbf565b005b3480156107cf57600080fd5b506107d8612058565b6040516107e59190613470565b60405180910390f35b3480156107fa57600080fd5b5061080361206b565b6040516108109190613470565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190613635565b61207e565b60405161084d9190613613565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190613ffe565b61211e565b60405161088a9190613470565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b5919061395a565b6121b2565b005b3480156108c857600080fd5b506108e360048036038101906108de919061403e565b61224b565b005b3480156108f157600080fd5b5061090c600480360381019061090791906140d5565b6122ec565b005b34801561091a57600080fd5b506109236123e3565b60405161093091906134da565b60405180910390f35b600e6020528160005260406000206020528060005260406000206000915091509054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf90614174565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610afb57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b0b5750610b0a8261240c565b5b9050919050565b600a5481565b60058054610b25906141c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b51906141c3565b8015610b9e5780601f10610b7357610100808354040283529160200191610b9e565b820191906000526020600020905b815481529060010190602001808311610b8157829003601f168201915b505050505081565b600d6020528060005260406000206000915090505481565b6060600760008381526020019081526020016000208054610bde906141c3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0a906141c3565b8015610c575780601f10610c2c57610100808354040283529160200191610c57565b820191906000526020600020905b815481529060010190602001808311610c3a57829003601f168201915b50505050509050919050565b610c6b612476565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610cb15750610cb085610cab612476565b61211e565b5b610cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce790614266565b60405180910390fd5b610cfd858585858561247e565b5050505050565b600b5481565b610d12612476565b73ffffffffffffffffffffffffffffffffffffffff16610d306119b1565b73ffffffffffffffffffffffffffffffffffffffff1614610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d906142d2565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b610dab612476565b73ffffffffffffffffffffffffffffffffffffffff16610dc96119b1565b73ffffffffffffffffffffffffffffffffffffffff1614610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e16906142d2565b60405180910390fd5b6000610e296119b1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e4c90614323565b60006040518083038185875af1925050503d8060008114610e89576040519150601f19603f3d011682016040523d82523d6000602084013e610e8e565b606091505b5050905080610e9c57600080fd5b50565b600f6020528160005260406000208181548110610ebb57600080fd5b906000526020600020016000915091509054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260045403610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990614384565b60405180910390fd5b6002600481905550600960019054906101000a900460ff1615610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f81906143f0565b60405180910390fd5b600854341015610fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc69061445c565b60405180910390fd5b600c54600d6000600b5481526020019081526020016000205410611028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101f906144c8565b60405180910390fd5b600e60008263ffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c39061455a565b60405180910390fd5b600960029054906101000a900460ff1615611131576110f18163ffffffff16336116e6565b611130576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611127906145c6565b60405180910390fd5b5b611153338263ffffffff16600160405180602001604052806000815250612791565b6001600e60008363ffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600d60008263ffffffff16815260200190815260200160002060008154809291906111ec90614615565b9190505550600a600081548092919061120490614615565b9190505550600160048190555050565b6060815183511461125a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611251906146cf565b60405180910390fd5b6000835167ffffffffffffffff81111561127757611276613667565b5b6040519080825280602002602001820160405280156112a55781602001602082028036833780820191505090505b50905060005b8451811015611322576112f28582815181106112ca576112c96146ef565b5b60200260200101518583815181106112e5576112e46146ef565b5b6020026020010151610968565b828281518110611305576113046146ef565b5b6020026020010181815250508061131b90614615565b90506112ab565b508091505092915050565b611335612476565b73ffffffffffffffffffffffffffffffffffffffff166113536119b1565b73ffffffffffffffffffffffffffffffffffffffff16146113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a0906142d2565b60405180910390fd5b60005b8282905081101561145d578282828181106113ca576113c96146ef565b5b90506020020135600a60008282546113e2919061471e565b9250508190555061144a8686838181106113ff576113fe6146ef565b5b905060200201602081019061141491906140d5565b8563ffffffff1685858581811061142e5761142d6146ef565b5b9050602002013560405180602001604052806000815250612791565b808061145590614615565b9150506113ac565b505050505050565b600960009054906101000a900460ff1681565b611480612476565b73ffffffffffffffffffffffffffffffffffffffff1661149e6119b1565b73ffffffffffffffffffffffffffffffffffffffff16146114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb906142d2565b60405180910390fd5b80600e600085815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b611569612476565b73ffffffffffffffffffffffffffffffffffffffff166115876119b1565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d4906142d2565b60405180910390fd5b8063ffffffff16600a60008282546115f5919061471e565b92505081905550611623838363ffffffff168363ffffffff1660405180602001604052806000815250612791565b8063ffffffff16600d60008463ffffffff1681526020019081526020016000206000828254611652919061471e565b92505081905550505050565b611666612476565b73ffffffffffffffffffffffffffffffffffffffff166116846119b1565b73ffffffffffffffffffffffffffffffffffffffff16146116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d1906142d2565b60405180910390fd5b6116e46000612926565b565b600080600090505b600f6000858152602001908152602001600020805490508110156117ab578273ffffffffffffffffffffffffffffffffffffffff16600f60008681526020019081526020016000208281548110611748576117476146ef565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036117985760019150506117b1565b80806117a390614615565b9150506116ee565b50600090505b92915050565b601080546117c4906141c3565b80601f01602080910402602001604051908101604052809291908181526020018280546117f0906141c3565b801561183d5780601f106118125761010080835404028352916020019161183d565b820191906000526020600020905b81548152906001019060200180831161182057829003601f168201915b505050505081565b61184d612476565b73ffffffffffffffffffffffffffffffffffffffff1661186b6119b1565b73ffffffffffffffffffffffffffffffffffffffff16146118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b8906142d2565b60405180910390fd5b806007600084815260200190815260200160002090805190602001906118e8929190613209565b50817f6bb7ff708619ba0610cba295a58592e0451dee2622938c8755667688daf3529b826040516119199190613613565b60405180910390a25050565b61192d612476565b73ffffffffffffffffffffffffffffffffffffffff1661194b6119b1565b73ffffffffffffffffffffffffffffffffffffffff16146119a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611998906142d2565b60405180910390fd5b80600c8190555050565b60085481565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600680546119e8906141c3565b80601f0160208091040260200160405190810160405280929190818152602001828054611a14906141c3565b8015611a615780601f10611a3657610100808354040283529160200191611a61565b820191906000526020600020905b815481529060010190602001808311611a4457829003601f168201915b505050505081565b611a71612476565b73ffffffffffffffffffffffffffffffffffffffff16611a8f6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc906142d2565b60405180910390fd5b80600b8190555050565b611b01611afa612476565b83836129ec565b5050565b611b0d612476565b73ffffffffffffffffffffffffffffffffffffffff16611b2b6119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b78906142d2565b60405180910390fd5b8060088190555050565b611b93612476565b73ffffffffffffffffffffffffffffffffffffffff16611bb16119b1565b73ffffffffffffffffffffffffffffffffffffffff1614611c07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfe906142d2565b60405180910390fd5b600f60008481526020019081526020016000206000611c26919061328f565b8181600f60008681526020019081526020016000209190611c489291906132b0565b50505050565b600260045403611c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8a90614384565b60405180910390fd5b6002600481905550600960009054906101000a900460ff1615611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce2906147c0565b60405180910390fd5b600b548163ffffffff1614611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614852565b60405180910390fd5b600854341015611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d719061445c565b60405180910390fd5b600c54600d6000600b5481526020019081526020016000205410611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca906144c8565b60405180910390fd5b600e60008263ffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e9061455a565b60405180910390fd5b600960029054906101000a900460ff1615611edc57611e9c8163ffffffff16336116e6565b611edb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed2906145c6565b60405180910390fd5b5b611efe338263ffffffff16600160405180602001604052806000815250612791565b6001600e60008363ffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600d60008263ffffffff1681526020019081526020016000206000815480929190611f9790614615565b9190505550600a6000815480929190611faf90614615565b9190505550600160048190555050565b611fc7612476565b73ffffffffffffffffffffffffffffffffffffffff16611fe56119b1565b73ffffffffffffffffffffffffffffffffffffffff161461203b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612032906142d2565b60405180910390fd5b80600960016101000a81548160ff02191690831515021790555050565b600960029054906101000a900460ff1681565b600960019054906101000a900460ff1681565b6007602052806000526040600020600091509050805461209d906141c3565b80601f01602080910402602001604051908101604052809291908181526020018280546120c9906141c3565b80156121165780601f106120eb57610100808354040283529160200191612116565b820191906000526020600020905b8154815290600101906020018083116120f957829003601f168201915b505050505081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6121ba612476565b73ffffffffffffffffffffffffffffffffffffffff166121d86119b1565b73ffffffffffffffffffffffffffffffffffffffff161461222e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612225906142d2565b60405180910390fd5b80600960026101000a81548160ff02191690831515021790555050565b612253612476565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480612299575061229885612293612476565b61211e565b5b6122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf906148e4565b60405180910390fd5b6122e58585858585612b58565b5050505050565b6122f4612476565b73ffffffffffffffffffffffffffffffffffffffff166123126119b1565b73ffffffffffffffffffffffffffffffffffffffff1614612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f906142d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce90614976565b60405180910390fd5b6123e081612926565b50565b600c5481565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b81518351146124c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b990614a08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252890614a9a565b60405180910390fd5b600061253b612476565b905061254b818787878787612dd9565b60005b84518110156126fc57600085828151811061256c5761256b6146ef565b5b60200260200101519050600085838151811061258b5761258a6146ef565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561262c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262390614b2c565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126e1919061471e565b92505081905550505050806126f590614615565b905061254e565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612773929190614b4c565b60405180910390a4612789818787878787612de1565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f790614bf5565b60405180910390fd5b600061280a612476565b905061282b8160008761281c88612fb8565b61282588612fb8565b87612dd9565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288a919061471e565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612908929190614c15565b60405180910390a461291f81600087878787613032565b5050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5190614cb0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b4b9190613470565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbe90614a9a565b60405180910390fd5b6000612bd1612476565b9050612bf1818787612be288612fb8565b612beb88612fb8565b87612dd9565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7f90614b2c565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d3d919061471e565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612dba929190614c15565b60405180910390a4612dd0828888888888613032565b50505050505050565b505050505050565b612e008473ffffffffffffffffffffffffffffffffffffffff166123e9565b15612fb0578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612e46959493929190614d25565b6020604051808303816000875af1925050508015612e8257506040513d601f19601f82011682018060405250810190612e7f9190614da2565b60015b612f2757612e8e614ddc565b806308c379a003612eea5750612ea2614dfe565b80612ead5750612eec565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee19190613613565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1e90614f00565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa590614f92565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612fd757612fd6613667565b5b6040519080825280602002602001820160405280156130055781602001602082028036833780820191505090505b509050828160008151811061301d5761301c6146ef565b5b60200260200101818152505080915050919050565b6130518473ffffffffffffffffffffffffffffffffffffffff166123e9565b15613201578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401613097959493929190614fb2565b6020604051808303816000875af19250505080156130d357506040513d601f19601f820116820180604052508101906130d09190614da2565b60015b613178576130df614ddc565b806308c379a00361313b57506130f3614dfe565b806130fe575061313d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131329190613613565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161316f90614f00565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f690614f92565b60405180910390fd5b505b505050505050565b828054613215906141c3565b90600052602060002090601f016020900481019282613237576000855561327e565b82601f1061325057805160ff191683800117855561327e565b8280016001018555821561327e579182015b8281111561327d578251825591602001919060010190613262565b5b50905061328b9190613350565b5090565b50805460008255906000526020600020908101906132ad9190613350565b50565b82805482825590600052602060002090810192821561333f579160200282015b8281111561333e57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906132d0565b5b50905061334c9190613350565b5090565b5b80821115613369576000816000905550600101613351565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b61339481613381565b811461339f57600080fd5b50565b6000813590506133b18161338b565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006133e2826133b7565b9050919050565b6133f2816133d7565b81146133fd57600080fd5b50565b60008135905061340f816133e9565b92915050565b6000806040838503121561342c5761342b613377565b5b600061343a858286016133a2565b925050602061344b85828601613400565b9150509250929050565b60008115159050919050565b61346a81613455565b82525050565b60006020820190506134856000830184613461565b92915050565b600080604083850312156134a2576134a1613377565b5b60006134b085828601613400565b92505060206134c1858286016133a2565b9150509250929050565b6134d481613381565b82525050565b60006020820190506134ef60008301846134cb565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61352a816134f5565b811461353557600080fd5b50565b60008135905061354781613521565b92915050565b60006020828403121561356357613562613377565b5b600061357184828501613538565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156135b4578082015181840152602081019050613599565b838111156135c3576000848401525b50505050565b6000601f19601f8301169050919050565b60006135e58261357a565b6135ef8185613585565b93506135ff818560208601613596565b613608816135c9565b840191505092915050565b6000602082019050818103600083015261362d81846135da565b905092915050565b60006020828403121561364b5761364a613377565b5b6000613659848285016133a2565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61369f826135c9565b810181811067ffffffffffffffff821117156136be576136bd613667565b5b80604052505050565b60006136d161336d565b90506136dd8282613696565b919050565b600067ffffffffffffffff8211156136fd576136fc613667565b5b602082029050602081019050919050565b600080fd5b6000613726613721846136e2565b6136c7565b905080838252602082019050602084028301858111156137495761374861370e565b5b835b81811015613772578061375e88826133a2565b84526020840193505060208101905061374b565b5050509392505050565b600082601f83011261379157613790613662565b5b81356137a1848260208601613713565b91505092915050565b600080fd5b600067ffffffffffffffff8211156137ca576137c9613667565b5b6137d3826135c9565b9050602081019050919050565b82818337600083830152505050565b60006138026137fd846137af565b6136c7565b90508281526020810184848401111561381e5761381d6137aa565b5b6138298482856137e0565b509392505050565b600082601f83011261384657613845613662565b5b81356138568482602086016137ef565b91505092915050565b600080600080600060a0868803121561387b5761387a613377565b5b600061388988828901613400565b955050602061389a88828901613400565b945050604086013567ffffffffffffffff8111156138bb576138ba61337c565b5b6138c78882890161377c565b935050606086013567ffffffffffffffff8111156138e8576138e761337c565b5b6138f48882890161377c565b925050608086013567ffffffffffffffff8111156139155761391461337c565b5b61392188828901613831565b9150509295509295909350565b61393781613455565b811461394257600080fd5b50565b6000813590506139548161392e565b92915050565b6000602082840312156139705761396f613377565b5b600061397e84828501613945565b91505092915050565b6000806040838503121561399e5761399d613377565b5b60006139ac858286016133a2565b92505060206139bd858286016133a2565b9150509250929050565b6139d0816133d7565b82525050565b60006020820190506139eb60008301846139c7565b92915050565b600063ffffffff82169050919050565b613a0a816139f1565b8114613a1557600080fd5b50565b600081359050613a2781613a01565b92915050565b600060208284031215613a4357613a42613377565b5b6000613a5184828501613a18565b91505092915050565b600067ffffffffffffffff821115613a7557613a74613667565b5b602082029050602081019050919050565b6000613a99613a9484613a5a565b6136c7565b90508083825260208201905060208402830185811115613abc57613abb61370e565b5b835b81811015613ae55780613ad18882613400565b845260208401935050602081019050613abe565b5050509392505050565b600082601f830112613b0457613b03613662565b5b8135613b14848260208601613a86565b91505092915050565b60008060408385031215613b3457613b33613377565b5b600083013567ffffffffffffffff811115613b5257613b5161337c565b5b613b5e85828601613aef565b925050602083013567ffffffffffffffff811115613b7f57613b7e61337c565b5b613b8b8582860161377c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613bca81613381565b82525050565b6000613bdc8383613bc1565b60208301905092915050565b6000602082019050919050565b6000613c0082613b95565b613c0a8185613ba0565b9350613c1583613bb1565b8060005b83811015613c46578151613c2d8882613bd0565b9750613c3883613be8565b925050600181019050613c19565b5085935050505092915050565b60006020820190508181036000830152613c6d8184613bf5565b905092915050565b600080fd5b60008083601f840112613c9057613c8f613662565b5b8235905067ffffffffffffffff811115613cad57613cac613c75565b5b602083019150836020820283011115613cc957613cc861370e565b5b9250929050565b60008083601f840112613ce657613ce5613662565b5b8235905067ffffffffffffffff811115613d0357613d02613c75565b5b602083019150836020820283011115613d1f57613d1e61370e565b5b9250929050565b600080600080600060608688031215613d4257613d41613377565b5b600086013567ffffffffffffffff811115613d6057613d5f61337c565b5b613d6c88828901613c7a565b95509550506020613d7f88828901613a18565b935050604086013567ffffffffffffffff811115613da057613d9f61337c565b5b613dac88828901613cd0565b92509250509295509295909350565b600080600060608486031215613dd457613dd3613377565b5b6000613de2868287016133a2565b9350506020613df386828701613400565b9250506040613e0486828701613945565b9150509250925092565b600080600060608486031215613e2757613e26613377565b5b6000613e3586828701613400565b9350506020613e4686828701613a18565b9250506040613e5786828701613a18565b9150509250925092565b600067ffffffffffffffff821115613e7c57613e7b613667565b5b613e85826135c9565b9050602081019050919050565b6000613ea5613ea084613e61565b6136c7565b905082815260208101848484011115613ec157613ec06137aa565b5b613ecc8482856137e0565b509392505050565b600082601f830112613ee957613ee8613662565b5b8135613ef9848260208601613e92565b91505092915050565b60008060408385031215613f1957613f18613377565b5b6000613f27858286016133a2565b925050602083013567ffffffffffffffff811115613f4857613f4761337c565b5b613f5485828601613ed4565b9150509250929050565b60008060408385031215613f7557613f74613377565b5b6000613f8385828601613400565b9250506020613f9485828601613945565b9150509250929050565b600080600060408486031215613fb757613fb6613377565b5b6000613fc5868287016133a2565b935050602084013567ffffffffffffffff811115613fe657613fe561337c565b5b613ff286828701613c7a565b92509250509250925092565b6000806040838503121561401557614014613377565b5b600061402385828601613400565b925050602061403485828601613400565b9150509250929050565b600080600080600060a0868803121561405a57614059613377565b5b600061406888828901613400565b955050602061407988828901613400565b945050604061408a888289016133a2565b935050606061409b888289016133a2565b925050608086013567ffffffffffffffff8111156140bc576140bb61337c565b5b6140c888828901613831565b9150509295509295909350565b6000602082840312156140eb576140ea613377565b5b60006140f984828501613400565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061415e602b83613585565b915061416982614102565b604082019050919050565b6000602082019050818103600083015261418d81614151565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806141db57607f821691505b6020821081036141ee576141ed614194565b5b50919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614250603283613585565b915061425b826141f4565b604082019050919050565b6000602082019050818103600083015261427f81614243565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142bc602083613585565b91506142c782614286565b602082019050919050565b600060208201905081810360008301526142eb816142af565b9050919050565b600081905092915050565b50565b600061430d6000836142f2565b9150614318826142fd565b600082019050919050565b600061432e82614300565b9150819050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061436e601f83613585565b915061437982614338565b602082019050919050565b6000602082019050818103600083015261439d81614361565b9050919050565b7f4f6c6420536561736f6e206d696e74696e672064697361626c65640000000000600082015250565b60006143da601b83613585565b91506143e5826143a4565b602082019050919050565b60006020820190508181036000830152614409816143cd565b9050919050565b7f496e73756666696369656e74206574682073656e742e00000000000000000000600082015250565b6000614446601683613585565b915061445182614410565b602082019050919050565b6000602082019050818103600083015261447581614439565b9050919050565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b60006144b2600883613585565b91506144bd8261447c565b602082019050919050565b600060208201905081810360008301526144e1816144a5565b9050919050565b7f596f75206861766520616c7265616479206d696e74656420746869732073656160008201527f736f6e0000000000000000000000000000000000000000000000000000000000602082015250565b6000614544602383613585565b915061454f826144e8565b604082019050919050565b6000602082019050818103600083015261457381614537565b9050919050565b7f796f7520617265206e6f74206f6e207468652077686974656c69737400000000600082015250565b60006145b0601c83613585565b91506145bb8261457a565b602082019050919050565b600060208201905081810360008301526145df816145a3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061462082613381565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614652576146516145e6565b5b600182019050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006146b9602983613585565b91506146c48261465d565b604082019050919050565b600060208201905081810360008301526146e8816146ac565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061472982613381565b915061473483613381565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614769576147686145e6565b5b828201905092915050565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b60006147aa601283613585565b91506147b582614774565b602082019050919050565b600060208201905081810360008301526147d98161479d565b9050919050565b7f596f7520617265206d696e74696e67207468652077726f6e6720736561736f6e60008201527f732070617373706f72742c20536561736f6e2068617320656e64656400000000602082015250565b600061483c603c83613585565b9150614847826147e0565b604082019050919050565b6000602082019050818103600083015261486b8161482f565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006148ce602983613585565b91506148d982614872565b604082019050919050565b600060208201905081810360008301526148fd816148c1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614960602683613585565b915061496b82614904565b604082019050919050565b6000602082019050818103600083015261498f81614953565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b60006149f2602883613585565b91506149fd82614996565b604082019050919050565b60006020820190508181036000830152614a21816149e5565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614a84602583613585565b9150614a8f82614a28565b604082019050919050565b60006020820190508181036000830152614ab381614a77565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614b16602a83613585565b9150614b2182614aba565b604082019050919050565b60006020820190508181036000830152614b4581614b09565b9050919050565b60006040820190508181036000830152614b668185613bf5565b90508181036020830152614b7a8184613bf5565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bdf602183613585565b9150614bea82614b83565b604082019050919050565b60006020820190508181036000830152614c0e81614bd2565b9050919050565b6000604082019050614c2a60008301856134cb565b614c3760208301846134cb565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614c9a602983613585565b9150614ca582614c3e565b604082019050919050565b60006020820190508181036000830152614cc981614c8d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614cf782614cd0565b614d018185614cdb565b9350614d11818560208601613596565b614d1a816135c9565b840191505092915050565b600060a082019050614d3a60008301886139c7565b614d4760208301876139c7565b8181036040830152614d598186613bf5565b90508181036060830152614d6d8185613bf5565b90508181036080830152614d818184614cec565b90509695505050505050565b600081519050614d9c81613521565b92915050565b600060208284031215614db857614db7613377565b5b6000614dc684828501614d8d565b91505092915050565b60008160e01c9050919050565b600060033d1115614dfb5760046000803e614df8600051614dcf565b90505b90565b600060443d10614e8b57614e1061336d565b60043d036004823e80513d602482011167ffffffffffffffff82111715614e38575050614e8b565b808201805167ffffffffffffffff811115614e565750505050614e8b565b80602083010160043d038501811115614e73575050505050614e8b565b614e8282602001850186613696565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614eea603483613585565b9150614ef582614e8e565b604082019050919050565b60006020820190508181036000830152614f1981614edd565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614f7c602883613585565b9150614f8782614f20565b604082019050919050565b60006020820190508181036000830152614fab81614f6f565b9050919050565b600060a082019050614fc760008301886139c7565b614fd460208301876139c7565b614fe160408301866134cb565b614fee60608301856134cb565b81810360808301526150008184614cec565b9050969550505050505056fea2646970667358221220b912e8c150963bcb6531f5e8f3d4da3b96d9b0c56ba799a5b19b2a12518a896764736f6c634300080d0033

Deployed Bytecode Sourcemap

41709:4723:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42232:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28161:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27184:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42080:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41766:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42180:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46315:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30100:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42107:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45136:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45836:155;;;:::i;:::-;;42322:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43385:693;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28558:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44334:316;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41971:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45481:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44086:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7390:103;;;;;;;;;;;;;:::i;:::-;;46026:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42377:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44682:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44920:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41928:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6739:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41813:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45034:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29155:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44822:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45664:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42612:765;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45355:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42034:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41996:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41880:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29382:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45240:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29622:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7648:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42139:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42232:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28161:231::-;28247:7;28294:1;28275:21;;:7;:21;;;28267:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;28362:9;:13;28372:2;28362:13;;;;;;;;;;;:22;28376:7;28362:22;;;;;;;;;;;;;;;;28355:29;;28161:231;;;;:::o;27184:310::-;27286:4;27338:26;27323:41;;;:11;:41;;;;:110;;;;27396:37;27381:52;;;:11;:52;;;;27323:110;:163;;;;27450:36;27474:11;27450:23;:36::i;:::-;27323:163;27303:183;;27184:310;;;:::o;42080:18::-;;;;:::o;41766:40::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42180:43::-;;;;;;;;;;;;;;;;;:::o;46315:107::-;46368:13;46401:8;:13;46410:3;46401:13;;;;;;;;;;;46394:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46315:107;;;:::o;30100:442::-;30341:12;:10;:12::i;:::-;30333:20;;:4;:20;;;:60;;;;30357:36;30374:4;30380:12;:10;:12::i;:::-;30357:16;:36::i;:::-;30333:60;30311:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;30482:52;30505:4;30511:2;30515:3;30520:7;30529:4;30482:22;:52::i;:::-;30100:442;;;;;:::o;42107:25::-;;;;:::o;45136:96::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45215:9:::1;45206:6;;:18;;;;;;;;;;;;;;;;;;45136:96:::0;:::o;45836:155::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45893:7:::1;45914;:5;:7::i;:::-;45906:21;;45935;45906:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45892:69;;;45980:2;45972:11;;;::::0;::::1;;45881:110;45836:155::o:0;42322:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43385:693::-;1713:1;2311:7;;:19;2303:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1713:1;2444:7;:18;;;;43474:19:::1;;;;;;;;;;;43473:20;43465:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43557:5;;43544:9;:18;;43536:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;43634:12;;43609:14;:22;43624:6;;43609:22;;;;;;;;;;;;:37;43601:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43678:29;:38;43708:7;43678:38;;;;;;;;;;;;;:50;43717:10;43678:50;;;;;;;;;;;;;;;;;;;;;;;;;43677:51;43669:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43782:18;;;;;;;;;;;43779:123;;;43824:33;43838:7;43824:33;;43846:10;43824:13;:33::i;:::-;43816:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43779:123;43914:33;43920:10;43932:7;43914:33;;43941:1;43914:33;;;;;;;;;;;::::0;:5:::1;:33::i;:::-;44011:4;43958:29;:38;43988:7;43958:38;;;;;;;;;;;;;:50;43997:10;43958:50;;;;;;;;;;;;;;;;:57;;;;;;;;;;;;;;;;;;44026:14;:23;44041:7;44026:23;;;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;44062:6;;:8;;;;;;;;;:::i;:::-;;;;;;1669:1:::0;2623:7;:22;;;;43385:693;:::o;28558:524::-;28714:16;28775:3;:10;28756:8;:15;:29;28748:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;28844:30;28891:8;:15;28877:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28844:63;;28925:9;28920:122;28944:8;:15;28940:1;:19;28920:122;;;29000:30;29010:8;29019:1;29010:11;;;;;;;;:::i;:::-;;;;;;;;29023:3;29027:1;29023:6;;;;;;;;:::i;:::-;;;;;;;;29000:9;:30::i;:::-;28981:13;28995:1;28981:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;28961:3;;;;:::i;:::-;;;28920:122;;;;29061:13;29054:20;;;28558:524;;;;:::o;44334:316::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44496:6:::1;44513:130;44525:8;;:15;;44523:1;:17;44513:130;;;44572:8;;44581:1;44572:11;;;;;;;:::i;:::-;;;;;;;;44562:6;;:21;;;;;;;:::i;:::-;;;;;;;;44598:33;44604:2;;44607:1;44604:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;44611:2;44598:33;;44615:8;;44624:1;44615:11;;;;;;;:::i;:::-;;;;;;;;44598:33;;;;;;;;;;;::::0;:5:::1;:33::i;:::-;44542:3;;;;;:::i;:::-;;;;44513:130;;;44485:165;44334:316:::0;;;;;:::o;41971:18::-;;;;;;;;;;;;;:::o;45481:175::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45642:6:::1;45596:29;:37;45626:6;45596:37;;;;;;;;;;;:43;45634:4;45596:43;;;;;;;;;;;;;;;;:52;;;;;;;;;;;;;;;;;;45481:175:::0;;;:::o;44086:240::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44230:8:::1;44220:18;;:6;;:18;;;;;;;:::i;:::-;;;;;;;;44249:27;44255:2;44259;44249:27;;44263:8;44249:27;;;;;;;;;;;;;::::0;:5:::1;:27::i;:::-;44308:8;44287:29;;:14;:18;44302:2;44287:18;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;44086:240:::0;;;:::o;7390:103::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7455:30:::1;7482:1;7455:18;:30::i;:::-;7390:103::o:0;46026:281::-;46101:4;46123:6;46132:1;46123:10;;46118:159;46139:9;:17;46149:6;46139:17;;;;;;;;;;;:24;;;;46135:1;:28;46118:159;;;46213:5;46189:29;;:9;:17;46199:6;46189:17;;;;;;;;;;;46207:1;46189:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:29;;;46185:81;;46246:4;46239:11;;;;;46185:81;46165:3;;;;;:::i;:::-;;;;46118:159;;;;46294:5;46287:12;;46026:281;;;;;:::o;42377:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44682:132::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44772:4:::1;44756:8;:13;44765:3;44756:13;;;;;;;;;;;:20;;;;;;;;;;;;:::i;:::-;;44802:3;44792:14;44796:4;44792:14;;;;;;:::i;:::-;;;;;;;;44682:132:::0;;:::o;44920:106::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45009:9:::1;44994:12;:24;;;;44920:106:::0;:::o;41928:34::-;;;;:::o;6739:87::-;6785:7;6812:6;;;;;;;;;;;6805:13;;6739:87;:::o;41813:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45034:94::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45111:9:::1;45102:6;:18;;;;45034:94:::0;:::o;29155:155::-;29250:52;29269:12;:10;:12::i;:::-;29283:8;29293;29250:18;:52::i;:::-;29155:155;;:::o;44822:90::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44896:8:::1;44888:5;:16;;;;44822:90:::0;:::o;45664:162::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45765:9:::1;:17;45775:6;45765:17;;;;;;;;;;;;45758:24;;;;:::i;:::-;45813:5;;45793:9;:17;45803:6;45793:17;;;;;;;;;;;:25;;;;;;;:::i;:::-;;45664:162:::0;;;:::o;42612:765::-;1713:1;2311:7;;:19;2303:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1713:1;2444:7;:18;;;;42692:6:::1;;;;;;;;;;;42691:7;42683:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;42750:6;;42739:7;:17;;;42731:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;42852:5;;42839:9;:18;;42831:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;42929:12;;42904:14;:22;42919:6;;42904:22;;;;;;;;;;;;:37;42896:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42973:29;:38;43003:7;42973:38;;;;;;;;;;;;;:50;43012:10;42973:50;;;;;;;;;;;;;;;;;;;;;;;;;42972:51;42964:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43079:18;;;;;;;;;;;43076:123;;;43121:33;43135:7;43121:33;;43143:10;43121:13;:33::i;:::-;43113:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43076:123;43213:33;43219:10;43231:7;43213:33;;43240:1;43213:33;;;;;;;;;;;::::0;:5:::1;:33::i;:::-;43310:4;43257:29;:38;43287:7;43257:38;;;;;;;;;;;;;:50;43296:10;43257:50;;;;;;;;;;;;;;;;:57;;;;;;;;;;;;;;;;;;43325:14;:23;43340:7;43325:23;;;;;;;;;;;;;;:25;;;;;;;;;:::i;:::-;;;;;;43361:6;;:8;;;;;;;;;:::i;:::-;;;;;;1669:1:::0;2623:7;:22;;;;42612:765;:::o;45355:118::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45456:9:::1;45434:19;;:31;;;;;;;;;;;;;;;;;;45355:118:::0;:::o;42034:37::-;;;;;;;;;;;;;:::o;41996:31::-;;;;;;;;;;;;;:::o;41880:39::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29382:168::-;29481:4;29505:18;:27;29524:7;29505:27;;;;;;;;;;;;;;;:37;29533:8;29505:37;;;;;;;;;;;;;;;;;;;;;;;;;29498:44;;29382:168;;;;:::o;45240:107::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45330:9:::1;45309:18;;:30;;;;;;;;;;;;;;;;;;45240:107:::0;:::o;29622:401::-;29838:12;:10;:12::i;:::-;29830:20;;:4;:20;;;:60;;;;29854:36;29871:4;29877:12;:10;:12::i;:::-;29854:16;:36::i;:::-;29830:60;29808:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;29970:45;29988:4;29994:2;29998;30002:6;30010:4;29970:17;:45::i;:::-;29622:401;;;;;:::o;7648:201::-;6970:12;:10;:12::i;:::-;6959:23;;:7;:5;:7::i;:::-;:23;;;6951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7757:1:::1;7737:22;;:8;:22;;::::0;7729:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7813:28;7832:8;7813:18;:28::i;:::-;7648:201:::0;:::o;42139:34::-;;;;:::o;9440:326::-;9500:4;9757:1;9735:7;:19;;;:23;9728:30;;9440:326;;;:::o;18492:157::-;18577:4;18616:25;18601:40;;;:11;:40;;;;18594:47;;18492:157;;;:::o;5463:98::-;5516:7;5543:10;5536:17;;5463:98;:::o;32184:1074::-;32411:7;:14;32397:3;:10;:28;32389:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;32503:1;32489:16;;:2;:16;;;32481:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32560:16;32579:12;:10;:12::i;:::-;32560:31;;32604:60;32625:8;32635:4;32641:2;32645:3;32650:7;32659:4;32604:20;:60::i;:::-;32682:9;32677:421;32701:3;:10;32697:1;:14;32677:421;;;32733:10;32746:3;32750:1;32746:6;;;;;;;;:::i;:::-;;;;;;;;32733:19;;32767:14;32784:7;32792:1;32784:10;;;;;;;;:::i;:::-;;;;;;;;32767:27;;32811:19;32833:9;:13;32843:2;32833:13;;;;;;;;;;;:19;32847:4;32833:19;;;;;;;;;;;;;;;;32811:41;;32890:6;32875:11;:21;;32867:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;33023:6;33009:11;:20;32987:9;:13;32997:2;32987:13;;;;;;;;;;;:19;33001:4;32987:19;;;;;;;;;;;;;;;:42;;;;33080:6;33059:9;:13;33069:2;33059:13;;;;;;;;;;;:17;33073:2;33059:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;32718:380;;;32713:3;;;;:::i;:::-;;;32677:421;;;;33145:2;33115:47;;33139:4;33115:47;;33129:8;33115:47;;;33149:3;33154:7;33115:47;;;;;;;:::i;:::-;;;;;;;;33175:75;33211:8;33221:4;33227:2;33231:3;33236:7;33245:4;33175:35;:75::i;:::-;32378:880;32184:1074;;;;;:::o;34576:569::-;34743:1;34729:16;;:2;:16;;;34721:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34796:16;34815:12;:10;:12::i;:::-;34796:31;;34840:102;34861:8;34879:1;34883:2;34887:21;34905:2;34887:17;:21::i;:::-;34910:25;34928:6;34910:17;:25::i;:::-;34937:4;34840:20;:102::i;:::-;34976:6;34955:9;:13;34965:2;34955:13;;;;;;;;;;;:17;34969:2;34955:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;35035:2;34998:52;;35031:1;34998:52;;35013:8;34998:52;;;35039:2;35043:6;34998:52;;;;;;;:::i;:::-;;;;;;;;35063:74;35094:8;35112:1;35116:2;35120;35124:6;35132:4;35063:30;:74::i;:::-;34710:435;34576:569;;;;:::o;8009:191::-;8083:16;8102:6;;;;;;;;;;;8083:25;;8128:8;8119:6;;:17;;;;;;;;;;;;;;;;;;8183:8;8152:40;;8173:8;8152:40;;;;;;;;;;;;8072:128;8009:191;:::o;38370:331::-;38525:8;38516:17;;:5;:17;;;38508:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38628:8;38590:18;:25;38609:5;38590:25;;;;;;;;;;;;;;;:35;38616:8;38590:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38674:8;38652:41;;38667:5;38652:41;;;38684:8;38652:41;;;;;;:::i;:::-;;;;;;;;38370:331;;;:::o;31006:820::-;31208:1;31194:16;;:2;:16;;;31186:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;31265:16;31284:12;:10;:12::i;:::-;31265:31;;31309:96;31330:8;31340:4;31346:2;31350:21;31368:2;31350:17;:21::i;:::-;31373:25;31391:6;31373:17;:25::i;:::-;31400:4;31309:20;:96::i;:::-;31418:19;31440:9;:13;31450:2;31440:13;;;;;;;;;;;:19;31454:4;31440:19;;;;;;;;;;;;;;;;31418:41;;31493:6;31478:11;:21;;31470:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31618:6;31604:11;:20;31582:9;:13;31592:2;31582:13;;;;;;;;;;;:19;31596:4;31582:19;;;;;;;;;;;;;;;:42;;;;31667:6;31646:9;:13;31656:2;31646:13;;;;;;;;;;;:17;31660:2;31646:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;31722:2;31691:46;;31716:4;31691:46;;31706:8;31691:46;;;31726:2;31730:6;31691:46;;;;;;;:::i;:::-;;;;;;;;31750:68;31781:8;31791:4;31797:2;31801;31805:6;31813:4;31750:30;:68::i;:::-;31175:651;;31006:820;;;;;:::o;39657:221::-;;;;;;;:::o;40638:813::-;40878:15;:2;:13;;;:15::i;:::-;40874:570;;;40931:2;40914:43;;;40958:8;40968:4;40974:3;40979:7;40988:4;40914:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40910:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;41306:6;41299:14;;;;;;;;;;;:::i;:::-;;;;;;;;40910:523;;;41355:62;;;;;;;;;;:::i;:::-;;;;;;;;40910:523;41087:48;;;41075:60;;;:8;:60;;;;41071:159;;41160:50;;;;;;;;;;:::i;:::-;;;;;;;;41071:159;40994:251;40874:570;40638:813;;;;;;:::o;41459:198::-;41525:16;41554:22;41593:1;41579:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41554:41;;41617:7;41606:5;41612:1;41606:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;41644:5;41637:12;;;41459:198;;;:::o;39886:744::-;40101:15;:2;:13;;;:15::i;:::-;40097:526;;;40154:2;40137:38;;;40176:8;40186:4;40192:2;40196:6;40204:4;40137:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40133:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;40485:6;40478:14;;;;;;;;;;;:::i;:::-;;;;;;;;40133:479;;;40534:62;;;;;;;;;;:::i;:::-;;;;;;;;40133:479;40271:43;;;40259:55;;;:8;:55;;;;40255:154;;40339:50;;;;;;;;;;:::i;:::-;;;;;;;;40255:154;40210:214;40097:526;39886:744;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:126::-;727:7;767:42;760:5;756:54;745:65;;690:126;;;:::o;822:96::-;859:7;888:24;906:5;888:24;:::i;:::-;877:35;;822:96;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:90::-;1711:7;1754:5;1747:13;1740:21;1729:32;;1677:90;;;:::o;1773:109::-;1854:21;1869:5;1854:21;:::i;:::-;1849:3;1842:34;1773:109;;:::o;1888:210::-;1975:4;2013:2;2002:9;1998:18;1990:26;;2026:65;2088:1;2077:9;2073:17;2064:6;2026:65;:::i;:::-;1888:210;;;;:::o;2104:474::-;2172:6;2180;2229:2;2217:9;2208:7;2204:23;2200:32;2197:119;;;2235:79;;:::i;:::-;2197:119;2355:1;2380:53;2425:7;2416:6;2405:9;2401:22;2380:53;:::i;:::-;2370:63;;2326:117;2482:2;2508:53;2553:7;2544:6;2533:9;2529:22;2508:53;:::i;:::-;2498:63;;2453:118;2104:474;;;;;:::o;2584:118::-;2671:24;2689:5;2671:24;:::i;:::-;2666:3;2659:37;2584:118;;:::o;2708:222::-;2801:4;2839:2;2828:9;2824:18;2816:26;;2852:71;2920:1;2909:9;2905:17;2896:6;2852:71;:::i;:::-;2708:222;;;;:::o;2936:149::-;2972:7;3012:66;3005:5;3001:78;2990:89;;2936:149;;;:::o;3091:120::-;3163:23;3180:5;3163:23;:::i;:::-;3156:5;3153:34;3143:62;;3201:1;3198;3191:12;3143:62;3091:120;:::o;3217:137::-;3262:5;3300:6;3287:20;3278:29;;3316:32;3342:5;3316:32;:::i;:::-;3217:137;;;;:::o;3360:327::-;3418:6;3467:2;3455:9;3446:7;3442:23;3438:32;3435:119;;;3473:79;;:::i;:::-;3435:119;3593:1;3618:52;3662:7;3653:6;3642:9;3638:22;3618:52;:::i;:::-;3608:62;;3564:116;3360:327;;;;:::o;3693:99::-;3745:6;3779:5;3773:12;3763:22;;3693:99;;;:::o;3798:169::-;3882:11;3916:6;3911:3;3904:19;3956:4;3951:3;3947:14;3932:29;;3798:169;;;;:::o;3973:307::-;4041:1;4051:113;4065:6;4062:1;4059:13;4051:113;;;4150:1;4145:3;4141:11;4135:18;4131:1;4126:3;4122:11;4115:39;4087:2;4084:1;4080:10;4075:15;;4051:113;;;4182:6;4179:1;4176:13;4173:101;;;4262:1;4253:6;4248:3;4244:16;4237:27;4173:101;4022:258;3973:307;;;:::o;4286:102::-;4327:6;4378:2;4374:7;4369:2;4362:5;4358:14;4354:28;4344:38;;4286:102;;;:::o;4394:364::-;4482:3;4510:39;4543:5;4510:39;:::i;:::-;4565:71;4629:6;4624:3;4565:71;:::i;:::-;4558:78;;4645:52;4690:6;4685:3;4678:4;4671:5;4667:16;4645:52;:::i;:::-;4722:29;4744:6;4722:29;:::i;:::-;4717:3;4713:39;4706:46;;4486:272;4394:364;;;;:::o;4764:313::-;4877:4;4915:2;4904:9;4900:18;4892:26;;4964:9;4958:4;4954:20;4950:1;4939:9;4935:17;4928:47;4992:78;5065:4;5056:6;4992:78;:::i;:::-;4984:86;;4764:313;;;;:::o;5083:329::-;5142:6;5191:2;5179:9;5170:7;5166:23;5162:32;5159:119;;;5197:79;;:::i;:::-;5159:119;5317:1;5342:53;5387:7;5378:6;5367:9;5363:22;5342:53;:::i;:::-;5332:63;;5288:117;5083:329;;;;:::o;5418:117::-;5527:1;5524;5517:12;5541:180;5589:77;5586:1;5579:88;5686:4;5683:1;5676:15;5710:4;5707:1;5700:15;5727:281;5810:27;5832:4;5810:27;:::i;:::-;5802:6;5798:40;5940:6;5928:10;5925:22;5904:18;5892:10;5889:34;5886:62;5883:88;;;5951:18;;:::i;:::-;5883:88;5991:10;5987:2;5980:22;5770:238;5727:281;;:::o;6014:129::-;6048:6;6075:20;;:::i;:::-;6065:30;;6104:33;6132:4;6124:6;6104:33;:::i;:::-;6014:129;;;:::o;6149:311::-;6226:4;6316:18;6308:6;6305:30;6302:56;;;6338:18;;:::i;:::-;6302:56;6388:4;6380:6;6376:17;6368:25;;6448:4;6442;6438:15;6430:23;;6149:311;;;:::o;6466:117::-;6575:1;6572;6565:12;6606:710;6702:5;6727:81;6743:64;6800:6;6743:64;:::i;:::-;6727:81;:::i;:::-;6718:90;;6828:5;6857:6;6850:5;6843:21;6891:4;6884:5;6880:16;6873:23;;6944:4;6936:6;6932:17;6924:6;6920:30;6973:3;6965:6;6962:15;6959:122;;;6992:79;;:::i;:::-;6959:122;7107:6;7090:220;7124:6;7119:3;7116:15;7090:220;;;7199:3;7228:37;7261:3;7249:10;7228:37;:::i;:::-;7223:3;7216:50;7295:4;7290:3;7286:14;7279:21;;7166:144;7150:4;7145:3;7141:14;7134:21;;7090:220;;;7094:21;6708:608;;6606:710;;;;;:::o;7339:370::-;7410:5;7459:3;7452:4;7444:6;7440:17;7436:27;7426:122;;7467:79;;:::i;:::-;7426:122;7584:6;7571:20;7609:94;7699:3;7691:6;7684:4;7676:6;7672:17;7609:94;:::i;:::-;7600:103;;7416:293;7339:370;;;;:::o;7715:117::-;7824:1;7821;7814:12;7838:307;7899:4;7989:18;7981:6;7978:30;7975:56;;;8011:18;;:::i;:::-;7975:56;8049:29;8071:6;8049:29;:::i;:::-;8041:37;;8133:4;8127;8123:15;8115:23;;7838:307;;;:::o;8151:154::-;8235:6;8230:3;8225;8212:30;8297:1;8288:6;8283:3;8279:16;8272:27;8151:154;;;:::o;8311:410::-;8388:5;8413:65;8429:48;8470:6;8429:48;:::i;:::-;8413:65;:::i;:::-;8404:74;;8501:6;8494:5;8487:21;8539:4;8532:5;8528:16;8577:3;8568:6;8563:3;8559:16;8556:25;8553:112;;;8584:79;;:::i;:::-;8553:112;8674:41;8708:6;8703:3;8698;8674:41;:::i;:::-;8394:327;8311:410;;;;;:::o;8740:338::-;8795:5;8844:3;8837:4;8829:6;8825:17;8821:27;8811:122;;8852:79;;:::i;:::-;8811:122;8969:6;8956:20;8994:78;9068:3;9060:6;9053:4;9045:6;9041:17;8994:78;:::i;:::-;8985:87;;8801:277;8740:338;;;;:::o;9084:1509::-;9238:6;9246;9254;9262;9270;9319:3;9307:9;9298:7;9294:23;9290:33;9287:120;;;9326:79;;:::i;:::-;9287:120;9446:1;9471:53;9516:7;9507:6;9496:9;9492:22;9471:53;:::i;:::-;9461:63;;9417:117;9573:2;9599:53;9644:7;9635:6;9624:9;9620:22;9599:53;:::i;:::-;9589:63;;9544:118;9729:2;9718:9;9714:18;9701:32;9760:18;9752:6;9749:30;9746:117;;;9782:79;;:::i;:::-;9746:117;9887:78;9957:7;9948:6;9937:9;9933:22;9887:78;:::i;:::-;9877:88;;9672:303;10042:2;10031:9;10027:18;10014:32;10073:18;10065:6;10062:30;10059:117;;;10095:79;;:::i;:::-;10059:117;10200:78;10270:7;10261:6;10250:9;10246:22;10200:78;:::i;:::-;10190:88;;9985:303;10355:3;10344:9;10340:19;10327:33;10387:18;10379:6;10376:30;10373:117;;;10409:79;;:::i;:::-;10373:117;10514:62;10568:7;10559:6;10548:9;10544:22;10514:62;:::i;:::-;10504:72;;10298:288;9084:1509;;;;;;;;:::o;10599:116::-;10669:21;10684:5;10669:21;:::i;:::-;10662:5;10659:32;10649:60;;10705:1;10702;10695:12;10649:60;10599:116;:::o;10721:133::-;10764:5;10802:6;10789:20;10780:29;;10818:30;10842:5;10818:30;:::i;:::-;10721:133;;;;:::o;10860:323::-;10916:6;10965:2;10953:9;10944:7;10940:23;10936:32;10933:119;;;10971:79;;:::i;:::-;10933:119;11091:1;11116:50;11158:7;11149:6;11138:9;11134:22;11116:50;:::i;:::-;11106:60;;11062:114;10860:323;;;;:::o;11189:474::-;11257:6;11265;11314:2;11302:9;11293:7;11289:23;11285:32;11282:119;;;11320:79;;:::i;:::-;11282:119;11440:1;11465:53;11510:7;11501:6;11490:9;11486:22;11465:53;:::i;:::-;11455:63;;11411:117;11567:2;11593:53;11638:7;11629:6;11618:9;11614:22;11593:53;:::i;:::-;11583:63;;11538:118;11189:474;;;;;:::o;11669:118::-;11756:24;11774:5;11756:24;:::i;:::-;11751:3;11744:37;11669:118;;:::o;11793:222::-;11886:4;11924:2;11913:9;11909:18;11901:26;;11937:71;12005:1;11994:9;11990:17;11981:6;11937:71;:::i;:::-;11793:222;;;;:::o;12021:93::-;12057:7;12097:10;12090:5;12086:22;12075:33;;12021:93;;;:::o;12120:120::-;12192:23;12209:5;12192:23;:::i;:::-;12185:5;12182:34;12172:62;;12230:1;12227;12220:12;12172:62;12120:120;:::o;12246:137::-;12291:5;12329:6;12316:20;12307:29;;12345:32;12371:5;12345:32;:::i;:::-;12246:137;;;;:::o;12389:327::-;12447:6;12496:2;12484:9;12475:7;12471:23;12467:32;12464:119;;;12502:79;;:::i;:::-;12464:119;12622:1;12647:52;12691:7;12682:6;12671:9;12667:22;12647:52;:::i;:::-;12637:62;;12593:116;12389:327;;;;:::o;12722:311::-;12799:4;12889:18;12881:6;12878:30;12875:56;;;12911:18;;:::i;:::-;12875:56;12961:4;12953:6;12949:17;12941:25;;13021:4;13015;13011:15;13003:23;;12722:311;;;:::o;13056:710::-;13152:5;13177:81;13193:64;13250:6;13193:64;:::i;:::-;13177:81;:::i;:::-;13168:90;;13278:5;13307:6;13300:5;13293:21;13341:4;13334:5;13330:16;13323:23;;13394:4;13386:6;13382:17;13374:6;13370:30;13423:3;13415:6;13412:15;13409:122;;;13442:79;;:::i;:::-;13409:122;13557:6;13540:220;13574:6;13569:3;13566:15;13540:220;;;13649:3;13678:37;13711:3;13699:10;13678:37;:::i;:::-;13673:3;13666:50;13745:4;13740:3;13736:14;13729:21;;13616:144;13600:4;13595:3;13591:14;13584:21;;13540:220;;;13544:21;13158:608;;13056:710;;;;;:::o;13789:370::-;13860:5;13909:3;13902:4;13894:6;13890:17;13886:27;13876:122;;13917:79;;:::i;:::-;13876:122;14034:6;14021:20;14059:94;14149:3;14141:6;14134:4;14126:6;14122:17;14059:94;:::i;:::-;14050:103;;13866:293;13789:370;;;;:::o;14165:894::-;14283:6;14291;14340:2;14328:9;14319:7;14315:23;14311:32;14308:119;;;14346:79;;:::i;:::-;14308:119;14494:1;14483:9;14479:17;14466:31;14524:18;14516:6;14513:30;14510:117;;;14546:79;;:::i;:::-;14510:117;14651:78;14721:7;14712:6;14701:9;14697:22;14651:78;:::i;:::-;14641:88;;14437:302;14806:2;14795:9;14791:18;14778:32;14837:18;14829:6;14826:30;14823:117;;;14859:79;;:::i;:::-;14823:117;14964:78;15034:7;15025:6;15014:9;15010:22;14964:78;:::i;:::-;14954:88;;14749:303;14165:894;;;;;:::o;15065:114::-;15132:6;15166:5;15160:12;15150:22;;15065:114;;;:::o;15185:184::-;15284:11;15318:6;15313:3;15306:19;15358:4;15353:3;15349:14;15334:29;;15185:184;;;;:::o;15375:132::-;15442:4;15465:3;15457:11;;15495:4;15490:3;15486:14;15478:22;;15375:132;;;:::o;15513:108::-;15590:24;15608:5;15590:24;:::i;:::-;15585:3;15578:37;15513:108;;:::o;15627:179::-;15696:10;15717:46;15759:3;15751:6;15717:46;:::i;:::-;15795:4;15790:3;15786:14;15772:28;;15627:179;;;;:::o;15812:113::-;15882:4;15914;15909:3;15905:14;15897:22;;15812:113;;;:::o;15961:732::-;16080:3;16109:54;16157:5;16109:54;:::i;:::-;16179:86;16258:6;16253:3;16179:86;:::i;:::-;16172:93;;16289:56;16339:5;16289:56;:::i;:::-;16368:7;16399:1;16384:284;16409:6;16406:1;16403:13;16384:284;;;16485:6;16479:13;16512:63;16571:3;16556:13;16512:63;:::i;:::-;16505:70;;16598:60;16651:6;16598:60;:::i;:::-;16588:70;;16444:224;16431:1;16428;16424:9;16419:14;;16384:284;;;16388:14;16684:3;16677:10;;16085:608;;;15961:732;;;;:::o;16699:373::-;16842:4;16880:2;16869:9;16865:18;16857:26;;16929:9;16923:4;16919:20;16915:1;16904:9;16900:17;16893:47;16957:108;17060:4;17051:6;16957:108;:::i;:::-;16949:116;;16699:373;;;;:::o;17078:117::-;17187:1;17184;17177:12;17218:568;17291:8;17301:6;17351:3;17344:4;17336:6;17332:17;17328:27;17318:122;;17359:79;;:::i;:::-;17318:122;17472:6;17459:20;17449:30;;17502:18;17494:6;17491:30;17488:117;;;17524:79;;:::i;:::-;17488:117;17638:4;17630:6;17626:17;17614:29;;17692:3;17684:4;17676:6;17672:17;17662:8;17658:32;17655:41;17652:128;;;17699:79;;:::i;:::-;17652:128;17218:568;;;;;:::o;17809:::-;17882:8;17892:6;17942:3;17935:4;17927:6;17923:17;17919:27;17909:122;;17950:79;;:::i;:::-;17909:122;18063:6;18050:20;18040:30;;18093:18;18085:6;18082:30;18079:117;;;18115:79;;:::i;:::-;18079:117;18229:4;18221:6;18217:17;18205:29;;18283:3;18275:4;18267:6;18263:17;18253:8;18249:32;18246:41;18243:128;;;18290:79;;:::i;:::-;18243:128;17809:568;;;;;:::o;18383:1077::-;18513:6;18521;18529;18537;18545;18594:2;18582:9;18573:7;18569:23;18565:32;18562:119;;;18600:79;;:::i;:::-;18562:119;18748:1;18737:9;18733:17;18720:31;18778:18;18770:6;18767:30;18764:117;;;18800:79;;:::i;:::-;18764:117;18913:80;18985:7;18976:6;18965:9;18961:22;18913:80;:::i;:::-;18895:98;;;;18691:312;19042:2;19068:52;19112:7;19103:6;19092:9;19088:22;19068:52;:::i;:::-;19058:62;;19013:117;19197:2;19186:9;19182:18;19169:32;19228:18;19220:6;19217:30;19214:117;;;19250:79;;:::i;:::-;19214:117;19363:80;19435:7;19426:6;19415:9;19411:22;19363:80;:::i;:::-;19345:98;;;;19140:313;18383:1077;;;;;;;;:::o;19466:613::-;19540:6;19548;19556;19605:2;19593:9;19584:7;19580:23;19576:32;19573:119;;;19611:79;;:::i;:::-;19573:119;19731:1;19756:53;19801:7;19792:6;19781:9;19777:22;19756:53;:::i;:::-;19746:63;;19702:117;19858:2;19884:53;19929:7;19920:6;19909:9;19905:22;19884:53;:::i;:::-;19874:63;;19829:118;19986:2;20012:50;20054:7;20045:6;20034:9;20030:22;20012:50;:::i;:::-;20002:60;;19957:115;19466:613;;;;;:::o;20085:615::-;20160:6;20168;20176;20225:2;20213:9;20204:7;20200:23;20196:32;20193:119;;;20231:79;;:::i;:::-;20193:119;20351:1;20376:53;20421:7;20412:6;20401:9;20397:22;20376:53;:::i;:::-;20366:63;;20322:117;20478:2;20504:52;20548:7;20539:6;20528:9;20524:22;20504:52;:::i;:::-;20494:62;;20449:117;20605:2;20631:52;20675:7;20666:6;20655:9;20651:22;20631:52;:::i;:::-;20621:62;;20576:117;20085:615;;;;;:::o;20706:308::-;20768:4;20858:18;20850:6;20847:30;20844:56;;;20880:18;;:::i;:::-;20844:56;20918:29;20940:6;20918:29;:::i;:::-;20910:37;;21002:4;20996;20992:15;20984:23;;20706:308;;;:::o;21020:412::-;21098:5;21123:66;21139:49;21181:6;21139:49;:::i;:::-;21123:66;:::i;:::-;21114:75;;21212:6;21205:5;21198:21;21250:4;21243:5;21239:16;21288:3;21279:6;21274:3;21270:16;21267:25;21264:112;;;21295:79;;:::i;:::-;21264:112;21385:41;21419:6;21414:3;21409;21385:41;:::i;:::-;21104:328;21020:412;;;;;:::o;21452:340::-;21508:5;21557:3;21550:4;21542:6;21538:17;21534:27;21524:122;;21565:79;;:::i;:::-;21524:122;21682:6;21669:20;21707:79;21782:3;21774:6;21767:4;21759:6;21755:17;21707:79;:::i;:::-;21698:88;;21514:278;21452:340;;;;:::o;21798:654::-;21876:6;21884;21933:2;21921:9;21912:7;21908:23;21904:32;21901:119;;;21939:79;;:::i;:::-;21901:119;22059:1;22084:53;22129:7;22120:6;22109:9;22105:22;22084:53;:::i;:::-;22074:63;;22030:117;22214:2;22203:9;22199:18;22186:32;22245:18;22237:6;22234:30;22231:117;;;22267:79;;:::i;:::-;22231:117;22372:63;22427:7;22418:6;22407:9;22403:22;22372:63;:::i;:::-;22362:73;;22157:288;21798:654;;;;;:::o;22458:468::-;22523:6;22531;22580:2;22568:9;22559:7;22555:23;22551:32;22548:119;;;22586:79;;:::i;:::-;22548:119;22706:1;22731:53;22776:7;22767:6;22756:9;22752:22;22731:53;:::i;:::-;22721:63;;22677:117;22833:2;22859:50;22901:7;22892:6;22881:9;22877:22;22859:50;:::i;:::-;22849:60;;22804:115;22458:468;;;;;:::o;22932:704::-;23027:6;23035;23043;23092:2;23080:9;23071:7;23067:23;23063:32;23060:119;;;23098:79;;:::i;:::-;23060:119;23218:1;23243:53;23288:7;23279:6;23268:9;23264:22;23243:53;:::i;:::-;23233:63;;23189:117;23373:2;23362:9;23358:18;23345:32;23404:18;23396:6;23393:30;23390:117;;;23426:79;;:::i;:::-;23390:117;23539:80;23611:7;23602:6;23591:9;23587:22;23539:80;:::i;:::-;23521:98;;;;23316:313;22932:704;;;;;:::o;23642:474::-;23710:6;23718;23767:2;23755:9;23746:7;23742:23;23738:32;23735:119;;;23773:79;;:::i;:::-;23735:119;23893:1;23918:53;23963:7;23954:6;23943:9;23939:22;23918:53;:::i;:::-;23908:63;;23864:117;24020:2;24046:53;24091:7;24082:6;24071:9;24067:22;24046:53;:::i;:::-;24036:63;;23991:118;23642:474;;;;;:::o;24122:1089::-;24226:6;24234;24242;24250;24258;24307:3;24295:9;24286:7;24282:23;24278:33;24275:120;;;24314:79;;:::i;:::-;24275:120;24434:1;24459:53;24504:7;24495:6;24484:9;24480:22;24459:53;:::i;:::-;24449:63;;24405:117;24561:2;24587:53;24632:7;24623:6;24612:9;24608:22;24587:53;:::i;:::-;24577:63;;24532:118;24689:2;24715:53;24760:7;24751:6;24740:9;24736:22;24715:53;:::i;:::-;24705:63;;24660:118;24817:2;24843:53;24888:7;24879:6;24868:9;24864:22;24843:53;:::i;:::-;24833:63;;24788:118;24973:3;24962:9;24958:19;24945:33;25005:18;24997:6;24994:30;24991:117;;;25027:79;;:::i;:::-;24991:117;25132:62;25186:7;25177:6;25166:9;25162:22;25132:62;:::i;:::-;25122:72;;24916:288;24122:1089;;;;;;;;:::o;25217:329::-;25276:6;25325:2;25313:9;25304:7;25300:23;25296:32;25293:119;;;25331:79;;:::i;:::-;25293:119;25451:1;25476:53;25521:7;25512:6;25501:9;25497:22;25476:53;:::i;:::-;25466:63;;25422:117;25217:329;;;;:::o;25552:230::-;25692:34;25688:1;25680:6;25676:14;25669:58;25761:13;25756:2;25748:6;25744:15;25737:38;25552:230;:::o;25788:366::-;25930:3;25951:67;26015:2;26010:3;25951:67;:::i;:::-;25944:74;;26027:93;26116:3;26027:93;:::i;:::-;26145:2;26140:3;26136:12;26129:19;;25788:366;;;:::o;26160:419::-;26326:4;26364:2;26353:9;26349:18;26341:26;;26413:9;26407:4;26403:20;26399:1;26388:9;26384:17;26377:47;26441:131;26567:4;26441:131;:::i;:::-;26433:139;;26160:419;;;:::o;26585:180::-;26633:77;26630:1;26623:88;26730:4;26727:1;26720:15;26754:4;26751:1;26744:15;26771:320;26815:6;26852:1;26846:4;26842:12;26832:22;;26899:1;26893:4;26889:12;26920:18;26910:81;;26976:4;26968:6;26964:17;26954:27;;26910:81;27038:2;27030:6;27027:14;27007:18;27004:38;27001:84;;27057:18;;:::i;:::-;27001:84;26822:269;26771:320;;;:::o;27097:237::-;27237:34;27233:1;27225:6;27221:14;27214:58;27306:20;27301:2;27293:6;27289:15;27282:45;27097:237;:::o;27340:366::-;27482:3;27503:67;27567:2;27562:3;27503:67;:::i;:::-;27496:74;;27579:93;27668:3;27579:93;:::i;:::-;27697:2;27692:3;27688:12;27681:19;;27340:366;;;:::o;27712:419::-;27878:4;27916:2;27905:9;27901:18;27893:26;;27965:9;27959:4;27955:20;27951:1;27940:9;27936:17;27929:47;27993:131;28119:4;27993:131;:::i;:::-;27985:139;;27712:419;;;:::o;28137:182::-;28277:34;28273:1;28265:6;28261:14;28254:58;28137:182;:::o;28325:366::-;28467:3;28488:67;28552:2;28547:3;28488:67;:::i;:::-;28481:74;;28564:93;28653:3;28564:93;:::i;:::-;28682:2;28677:3;28673:12;28666:19;;28325:366;;;:::o;28697:419::-;28863:4;28901:2;28890:9;28886:18;28878:26;;28950:9;28944:4;28940:20;28936:1;28925:9;28921:17;28914:47;28978:131;29104:4;28978:131;:::i;:::-;28970:139;;28697:419;;;:::o;29122:147::-;29223:11;29260:3;29245:18;;29122:147;;;;:::o;29275:114::-;;:::o;29395:398::-;29554:3;29575:83;29656:1;29651:3;29575:83;:::i;:::-;29568:90;;29667:93;29756:3;29667:93;:::i;:::-;29785:1;29780:3;29776:11;29769:18;;29395:398;;;:::o;29799:379::-;29983:3;30005:147;30148:3;30005:147;:::i;:::-;29998:154;;30169:3;30162:10;;29799:379;;;:::o;30184:181::-;30324:33;30320:1;30312:6;30308:14;30301:57;30184:181;:::o;30371:366::-;30513:3;30534:67;30598:2;30593:3;30534:67;:::i;:::-;30527:74;;30610:93;30699:3;30610:93;:::i;:::-;30728:2;30723:3;30719:12;30712:19;;30371:366;;;:::o;30743:419::-;30909:4;30947:2;30936:9;30932:18;30924:26;;30996:9;30990:4;30986:20;30982:1;30971:9;30967:17;30960:47;31024:131;31150:4;31024:131;:::i;:::-;31016:139;;30743:419;;;:::o;31168:177::-;31308:29;31304:1;31296:6;31292:14;31285:53;31168:177;:::o;31351:366::-;31493:3;31514:67;31578:2;31573:3;31514:67;:::i;:::-;31507:74;;31590:93;31679:3;31590:93;:::i;:::-;31708:2;31703:3;31699:12;31692:19;;31351:366;;;:::o;31723:419::-;31889:4;31927:2;31916:9;31912:18;31904:26;;31976:9;31970:4;31966:20;31962:1;31951:9;31947:17;31940:47;32004:131;32130:4;32004:131;:::i;:::-;31996:139;;31723:419;;;:::o;32148:172::-;32288:24;32284:1;32276:6;32272:14;32265:48;32148:172;:::o;32326:366::-;32468:3;32489:67;32553:2;32548:3;32489:67;:::i;:::-;32482:74;;32565:93;32654:3;32565:93;:::i;:::-;32683:2;32678:3;32674:12;32667:19;;32326:366;;;:::o;32698:419::-;32864:4;32902:2;32891:9;32887:18;32879:26;;32951:9;32945:4;32941:20;32937:1;32926:9;32922:17;32915:47;32979:131;33105:4;32979:131;:::i;:::-;32971:139;;32698:419;;;:::o;33123:158::-;33263:10;33259:1;33251:6;33247:14;33240:34;33123:158;:::o;33287:365::-;33429:3;33450:66;33514:1;33509:3;33450:66;:::i;:::-;33443:73;;33525:93;33614:3;33525:93;:::i;:::-;33643:2;33638:3;33634:12;33627:19;;33287:365;;;:::o;33658:419::-;33824:4;33862:2;33851:9;33847:18;33839:26;;33911:9;33905:4;33901:20;33897:1;33886:9;33882:17;33875:47;33939:131;34065:4;33939:131;:::i;:::-;33931:139;;33658:419;;;:::o;34083:222::-;34223:34;34219:1;34211:6;34207:14;34200:58;34292:5;34287:2;34279:6;34275:15;34268:30;34083:222;:::o;34311:366::-;34453:3;34474:67;34538:2;34533:3;34474:67;:::i;:::-;34467:74;;34550:93;34639:3;34550:93;:::i;:::-;34668:2;34663:3;34659:12;34652:19;;34311:366;;;:::o;34683:419::-;34849:4;34887:2;34876:9;34872:18;34864:26;;34936:9;34930:4;34926:20;34922:1;34911:9;34907:17;34900:47;34964:131;35090:4;34964:131;:::i;:::-;34956:139;;34683:419;;;:::o;35108:178::-;35248:30;35244:1;35236:6;35232:14;35225:54;35108:178;:::o;35292:366::-;35434:3;35455:67;35519:2;35514:3;35455:67;:::i;:::-;35448:74;;35531:93;35620:3;35531:93;:::i;:::-;35649:2;35644:3;35640:12;35633:19;;35292:366;;;:::o;35664:419::-;35830:4;35868:2;35857:9;35853:18;35845:26;;35917:9;35911:4;35907:20;35903:1;35892:9;35888:17;35881:47;35945:131;36071:4;35945:131;:::i;:::-;35937:139;;35664:419;;;:::o;36089:180::-;36137:77;36134:1;36127:88;36234:4;36231:1;36224:15;36258:4;36255:1;36248:15;36275:233;36314:3;36337:24;36355:5;36337:24;:::i;:::-;36328:33;;36383:66;36376:5;36373:77;36370:103;;36453:18;;:::i;:::-;36370:103;36500:1;36493:5;36489:13;36482:20;;36275:233;;;:::o;36514:228::-;36654:34;36650:1;36642:6;36638:14;36631:58;36723:11;36718:2;36710:6;36706:15;36699:36;36514:228;:::o;36748:366::-;36890:3;36911:67;36975:2;36970:3;36911:67;:::i;:::-;36904:74;;36987:93;37076:3;36987:93;:::i;:::-;37105:2;37100:3;37096:12;37089:19;;36748:366;;;:::o;37120:419::-;37286:4;37324:2;37313:9;37309:18;37301:26;;37373:9;37367:4;37363:20;37359:1;37348:9;37344:17;37337:47;37401:131;37527:4;37401:131;:::i;:::-;37393:139;;37120:419;;;:::o;37545:180::-;37593:77;37590:1;37583:88;37690:4;37687:1;37680:15;37714:4;37711:1;37704:15;37731:305;37771:3;37790:20;37808:1;37790:20;:::i;:::-;37785:25;;37824:20;37842:1;37824:20;:::i;:::-;37819:25;;37978:1;37910:66;37906:74;37903:1;37900:81;37897:107;;;37984:18;;:::i;:::-;37897:107;38028:1;38025;38021:9;38014:16;;37731:305;;;;:::o;38042:168::-;38182:20;38178:1;38170:6;38166:14;38159:44;38042:168;:::o;38216:366::-;38358:3;38379:67;38443:2;38438:3;38379:67;:::i;:::-;38372:74;;38455:93;38544:3;38455:93;:::i;:::-;38573:2;38568:3;38564:12;38557:19;;38216:366;;;:::o;38588:419::-;38754:4;38792:2;38781:9;38777:18;38769:26;;38841:9;38835:4;38831:20;38827:1;38816:9;38812:17;38805:47;38869:131;38995:4;38869:131;:::i;:::-;38861:139;;38588:419;;;:::o;39013:247::-;39153:34;39149:1;39141:6;39137:14;39130:58;39222:30;39217:2;39209:6;39205:15;39198:55;39013:247;:::o;39266:366::-;39408:3;39429:67;39493:2;39488:3;39429:67;:::i;:::-;39422:74;;39505:93;39594:3;39505:93;:::i;:::-;39623:2;39618:3;39614:12;39607:19;;39266:366;;;:::o;39638:419::-;39804:4;39842:2;39831:9;39827:18;39819:26;;39891:9;39885:4;39881:20;39877:1;39866:9;39862:17;39855:47;39919:131;40045:4;39919:131;:::i;:::-;39911:139;;39638:419;;;:::o;40063:228::-;40203:34;40199:1;40191:6;40187:14;40180:58;40272:11;40267:2;40259:6;40255:15;40248:36;40063:228;:::o;40297:366::-;40439:3;40460:67;40524:2;40519:3;40460:67;:::i;:::-;40453:74;;40536:93;40625:3;40536:93;:::i;:::-;40654:2;40649:3;40645:12;40638:19;;40297:366;;;:::o;40669:419::-;40835:4;40873:2;40862:9;40858:18;40850:26;;40922:9;40916:4;40912:20;40908:1;40897:9;40893:17;40886:47;40950:131;41076:4;40950:131;:::i;:::-;40942:139;;40669:419;;;:::o;41094:225::-;41234:34;41230:1;41222:6;41218:14;41211:58;41303:8;41298:2;41290:6;41286:15;41279:33;41094:225;:::o;41325:366::-;41467:3;41488:67;41552:2;41547:3;41488:67;:::i;:::-;41481:74;;41564:93;41653:3;41564:93;:::i;:::-;41682:2;41677:3;41673:12;41666:19;;41325:366;;;:::o;41697:419::-;41863:4;41901:2;41890:9;41886:18;41878:26;;41950:9;41944:4;41940:20;41936:1;41925:9;41921:17;41914:47;41978:131;42104:4;41978:131;:::i;:::-;41970:139;;41697:419;;;:::o;42122:227::-;42262:34;42258:1;42250:6;42246:14;42239:58;42331:10;42326:2;42318:6;42314:15;42307:35;42122:227;:::o;42355:366::-;42497:3;42518:67;42582:2;42577:3;42518:67;:::i;:::-;42511:74;;42594:93;42683:3;42594:93;:::i;:::-;42712:2;42707:3;42703:12;42696:19;;42355:366;;;:::o;42727:419::-;42893:4;42931:2;42920:9;42916:18;42908:26;;42980:9;42974:4;42970:20;42966:1;42955:9;42951:17;42944:47;43008:131;43134:4;43008:131;:::i;:::-;43000:139;;42727:419;;;:::o;43152:224::-;43292:34;43288:1;43280:6;43276:14;43269:58;43361:7;43356:2;43348:6;43344:15;43337:32;43152:224;:::o;43382:366::-;43524:3;43545:67;43609:2;43604:3;43545:67;:::i;:::-;43538:74;;43621:93;43710:3;43621:93;:::i;:::-;43739:2;43734:3;43730:12;43723:19;;43382:366;;;:::o;43754:419::-;43920:4;43958:2;43947:9;43943:18;43935:26;;44007:9;44001:4;43997:20;43993:1;43982:9;43978:17;43971:47;44035:131;44161:4;44035:131;:::i;:::-;44027:139;;43754:419;;;:::o;44179:229::-;44319:34;44315:1;44307:6;44303:14;44296:58;44388:12;44383:2;44375:6;44371:15;44364:37;44179:229;:::o;44414:366::-;44556:3;44577:67;44641:2;44636:3;44577:67;:::i;:::-;44570:74;;44653:93;44742:3;44653:93;:::i;:::-;44771:2;44766:3;44762:12;44755:19;;44414:366;;;:::o;44786:419::-;44952:4;44990:2;44979:9;44975:18;44967:26;;45039:9;45033:4;45029:20;45025:1;45014:9;45010:17;45003:47;45067:131;45193:4;45067:131;:::i;:::-;45059:139;;44786:419;;;:::o;45211:634::-;45432:4;45470:2;45459:9;45455:18;45447:26;;45519:9;45513:4;45509:20;45505:1;45494:9;45490:17;45483:47;45547:108;45650:4;45641:6;45547:108;:::i;:::-;45539:116;;45702:9;45696:4;45692:20;45687:2;45676:9;45672:18;45665:48;45730:108;45833:4;45824:6;45730:108;:::i;:::-;45722:116;;45211:634;;;;;:::o;45851:220::-;45991:34;45987:1;45979:6;45975:14;45968:58;46060:3;46055:2;46047:6;46043:15;46036:28;45851:220;:::o;46077:366::-;46219:3;46240:67;46304:2;46299:3;46240:67;:::i;:::-;46233:74;;46316:93;46405:3;46316:93;:::i;:::-;46434:2;46429:3;46425:12;46418:19;;46077:366;;;:::o;46449:419::-;46615:4;46653:2;46642:9;46638:18;46630:26;;46702:9;46696:4;46692:20;46688:1;46677:9;46673:17;46666:47;46730:131;46856:4;46730:131;:::i;:::-;46722:139;;46449:419;;;:::o;46874:332::-;46995:4;47033:2;47022:9;47018:18;47010:26;;47046:71;47114:1;47103:9;47099:17;47090:6;47046:71;:::i;:::-;47127:72;47195:2;47184:9;47180:18;47171:6;47127:72;:::i;:::-;46874:332;;;;;:::o;47212:228::-;47352:34;47348:1;47340:6;47336:14;47329:58;47421:11;47416:2;47408:6;47404:15;47397:36;47212:228;:::o;47446:366::-;47588:3;47609:67;47673:2;47668:3;47609:67;:::i;:::-;47602:74;;47685:93;47774:3;47685:93;:::i;:::-;47803:2;47798:3;47794:12;47787:19;;47446:366;;;:::o;47818:419::-;47984:4;48022:2;48011:9;48007:18;47999:26;;48071:9;48065:4;48061:20;48057:1;48046:9;48042:17;48035:47;48099:131;48225:4;48099:131;:::i;:::-;48091:139;;47818:419;;;:::o;48243:98::-;48294:6;48328:5;48322:12;48312:22;;48243:98;;;:::o;48347:168::-;48430:11;48464:6;48459:3;48452:19;48504:4;48499:3;48495:14;48480:29;;48347:168;;;;:::o;48521:360::-;48607:3;48635:38;48667:5;48635:38;:::i;:::-;48689:70;48752:6;48747:3;48689:70;:::i;:::-;48682:77;;48768:52;48813:6;48808:3;48801:4;48794:5;48790:16;48768:52;:::i;:::-;48845:29;48867:6;48845:29;:::i;:::-;48840:3;48836:39;48829:46;;48611:270;48521:360;;;;:::o;48887:1053::-;49210:4;49248:3;49237:9;49233:19;49225:27;;49262:71;49330:1;49319:9;49315:17;49306:6;49262:71;:::i;:::-;49343:72;49411:2;49400:9;49396:18;49387:6;49343:72;:::i;:::-;49462:9;49456:4;49452:20;49447:2;49436:9;49432:18;49425:48;49490:108;49593:4;49584:6;49490:108;:::i;:::-;49482:116;;49645:9;49639:4;49635:20;49630:2;49619:9;49615:18;49608:48;49673:108;49776:4;49767:6;49673:108;:::i;:::-;49665:116;;49829:9;49823:4;49819:20;49813:3;49802:9;49798:19;49791:49;49857:76;49928:4;49919:6;49857:76;:::i;:::-;49849:84;;48887:1053;;;;;;;;:::o;49946:141::-;50002:5;50033:6;50027:13;50018:22;;50049:32;50075:5;50049:32;:::i;:::-;49946:141;;;;:::o;50093:349::-;50162:6;50211:2;50199:9;50190:7;50186:23;50182:32;50179:119;;;50217:79;;:::i;:::-;50179:119;50337:1;50362:63;50417:7;50408:6;50397:9;50393:22;50362:63;:::i;:::-;50352:73;;50308:127;50093:349;;;;:::o;50448:106::-;50492:8;50541:5;50536:3;50532:15;50511:36;;50448:106;;;:::o;50560:183::-;50595:3;50633:1;50615:16;50612:23;50609:128;;;50671:1;50668;50665;50650:23;50693:34;50724:1;50718:8;50693:34;:::i;:::-;50686:41;;50609:128;50560:183;:::o;50749:711::-;50788:3;50826:4;50808:16;50805:26;50834:5;50802:39;50863:20;;:::i;:::-;50938:1;50920:16;50916:24;50913:1;50907:4;50892:49;50971:4;50965:11;51070:16;51063:4;51055:6;51051:17;51048:39;51015:18;51007:6;51004:30;50988:113;50985:146;;;51116:5;;;;50985:146;51162:6;51156:4;51152:17;51198:3;51192:10;51225:18;51217:6;51214:30;51211:43;;;51247:5;;;;;;51211:43;51295:6;51288:4;51283:3;51279:14;51275:27;51354:1;51336:16;51332:24;51326:4;51322:35;51317:3;51314:44;51311:57;;;51361:5;;;;;;;51311:57;51378;51426:6;51420:4;51416:17;51408:6;51404:30;51398:4;51378:57;:::i;:::-;51451:3;51444:10;;50792:668;;;;;50749:711;;:::o;51466:239::-;51606:34;51602:1;51594:6;51590:14;51583:58;51675:22;51670:2;51662:6;51658:15;51651:47;51466:239;:::o;51711:366::-;51853:3;51874:67;51938:2;51933:3;51874:67;:::i;:::-;51867:74;;51950:93;52039:3;51950:93;:::i;:::-;52068:2;52063:3;52059:12;52052:19;;51711:366;;;:::o;52083:419::-;52249:4;52287:2;52276:9;52272:18;52264:26;;52336:9;52330:4;52326:20;52322:1;52311:9;52307:17;52300:47;52364:131;52490:4;52364:131;:::i;:::-;52356:139;;52083:419;;;:::o;52508:227::-;52648:34;52644:1;52636:6;52632:14;52625:58;52717:10;52712:2;52704:6;52700:15;52693:35;52508:227;:::o;52741:366::-;52883:3;52904:67;52968:2;52963:3;52904:67;:::i;:::-;52897:74;;52980:93;53069:3;52980:93;:::i;:::-;53098:2;53093:3;53089:12;53082:19;;52741:366;;;:::o;53113:419::-;53279:4;53317:2;53306:9;53302:18;53294:26;;53366:9;53360:4;53356:20;53352:1;53341:9;53337:17;53330:47;53394:131;53520:4;53394:131;:::i;:::-;53386:139;;53113:419;;;:::o;53538:751::-;53761:4;53799:3;53788:9;53784:19;53776:27;;53813:71;53881:1;53870:9;53866:17;53857:6;53813:71;:::i;:::-;53894:72;53962:2;53951:9;53947:18;53938:6;53894:72;:::i;:::-;53976;54044:2;54033:9;54029:18;54020:6;53976:72;:::i;:::-;54058;54126:2;54115:9;54111:18;54102:6;54058:72;:::i;:::-;54178:9;54172:4;54168:20;54162:3;54151:9;54147:19;54140:49;54206:76;54277:4;54268:6;54206:76;:::i;:::-;54198:84;;53538:751;;;;;;;;:::o

Swarm Source

ipfs://b912e8c150963bcb6531f5e8f3d4da3b96d9b0c56ba799a5b19b2a12518a8967
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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