ETH Price: $3,405.55 (-1.55%)
Gas: 4 Gwei

Token

 

Overview

Max Total Supply

36

Holders

36

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0x33fb8e00ef47d4a06b0609244ae0f41e725c5d43
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:
Oil

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-02-09
*/

// SPDX_License_Identifier: Unlicensed


// The first time you see an ERC404 contract...

// (⌐■_■)
// ( •_•)>⌐■-■
// (•_•)

// But the second time...

// (•_•)
// ( •_•)>⌐■-■
// (⌐■_■)


pragma solidity ^0.8.18;


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

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


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}


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


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

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

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

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

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

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

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

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

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

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


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


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


/**
 * @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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

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


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


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

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

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

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

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

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

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

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

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

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

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

        return batchBalances;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

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

        address operator = _msgSender();

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

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

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

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

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

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

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

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

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

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

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

        return array;
    }
}


/// @title A liquidity-messaging collection for Riggers.
///
/// @notice Riggers
///             Telegram: https://t.me/riggersfinance
///             Twitter:  https://twitter.com/RiggersFinance
///             Web:      riggers.finance
///
/// @author Inspired by Pandora dev team (https://etherscan.io/address/0x9E9FbDE7C7a83c43913BddC8779158F1368F0413#code).
/// @author Prospector Howie 🛢️
///         Telegram: OilRigSheikh
///
/// @custom:security-contact Telegram: https://t.me/OilRigSheikh
contract Oil is ERC1155,
                Ownable
{


    ////
    //// STATE
    ////


    /// A single token type.
    struct Token {
        string name;
        string uri;
        uint256 supply;
    }

    /// All tokens.
    mapping(uint256 id => Token token) public tokens;

    /// Count of token types.
    uint256 public tokensCount;

    /// Contract-level URI for OpenSea.
    string private _contractURI;
    event ContractURIUpdated(
        string prevURI,
        string newURI
    );

    /// Addresses permitted to manage supply.
    mapping(address caller => bool isPermitted) public permits;
    modifier onlyPermitted {
        require(
            permits[msg.sender],
            "Not permitted"
        );
        _;
    }


    ////
    //// INIT
    ////


    /// Deploy.
    ///
    /// @param presale The presale contract.
    constructor(
        address presale
    )
    ERC1155("")
    {
        permits[msg.sender] = true;
        permits[presale] = true;
    }


    ////
    //// ADMIN
    ////


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

    function setTokenURI(
        uint256 tokenId,
        string memory _uri
    )
        external
        onlyOwner
    {
        tokens[tokenId].uri = _uri;
    }

    function setContractURI(
        string memory contractURI_
    )
        external
        onlyOwner
    {
        _contractURI = contractURI_;

        emit ContractURIUpdated(
            _contractURI,
            contractURI_
        );
    }

    function setPermits(
        address[] memory callers,
        bool[] memory _permitted
    )
        external
        onlyOwner
    {
        for (uint256 i = 0; i < callers.length; i++) {
            permits[callers[i]] = _permitted[i];
        }
    }

    function createToken(
        string memory name,
        string memory _uri
    )
        external
        onlyOwner
    {
        tokens[tokensCount] = Token(
            name,
            _uri,
            0
        );
        tokensCount++;
    }


    ////
    //// SUPPLY
    ////


    function mint(
        address account,
        uint256 id,
        uint256 amount
    )
        external
        onlyPermitted
    {
        tokens[id].supply += amount;

        _mint(account, id, amount, "");
    }

    function mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts
    )
        external
        onlyPermitted
    {
        for (uint256 i = 0; i < ids.length; i++) {
            tokens[ids[i]].supply += amounts[i];
        }

        _mintBatch(to, ids, amounts, "");
    }

    function burn(
        address from,
        uint256 id,
        uint256 amount
    )
        external
        onlyPermitted
    {
        tokens[id].supply -= amount;

        _burn(
            from,
            id,
            amount
        );
    }

    function burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    )
        external
        onlyPermitted
    {
        for (uint256 i = 0; i < ids.length; i++) {
            tokens[ids[i]].supply -= amounts[i];
        }

        _burnBatch(
            from,
            ids,
            amounts
        );
    }


    ////
    //// URI
    ////


    function uri(
        uint256 id
    )
        public
        view
        override
        returns (string memory)
    {
        return tokens[id].uri;
    }

    function contractURI()
        public
        view
        returns (string memory)
    {
        return _contractURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"presale","type":"address"}],"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":false,"internalType":"string","name":"prevURI","type":"string"},{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"name":"createToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"caller","type":"address"}],"name":"permits","outputs":[{"internalType":"bool","name":"isPermitted","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":"string","name":"contractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"callers","type":"address[]"},{"internalType":"bool[]","name":"_permitted","type":"bool[]"}],"name":"setPermits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162004b8d38038062004b8d83398181016040528101906200003791906200027d565b6040518060200160405280600081525062000058816200013060201b60201c565b50620000796200006d6200014560201b60201c565b6200014d60201b60201c565b6001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062000610565b806002908162000141919062000529565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002458262000218565b9050919050565b620002578162000238565b81146200026357600080fd5b50565b60008151905062000277816200024c565b92915050565b60006020828403121562000296576200029562000213565b5b6000620002a68482850162000266565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033157607f821691505b602082108103620003475762000346620002e9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003b17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000372565b620003bd868362000372565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200040a62000404620003fe84620003d5565b620003df565b620003d5565b9050919050565b6000819050919050565b6200042683620003e9565b6200043e620004358262000411565b8484546200037f565b825550505050565b600090565b6200045562000446565b620004628184846200041b565b505050565b5b818110156200048a576200047e6000826200044b565b60018101905062000468565b5050565b601f821115620004d957620004a3816200034d565b620004ae8462000362565b81016020851015620004be578190505b620004d6620004cd8562000362565b83018262000467565b50505b505050565b600082821c905092915050565b6000620004fe60001984600802620004de565b1980831691505092915050565b6000620005198383620004eb565b9150826002028217905092915050565b6200053482620002af565b67ffffffffffffffff81111562000550576200054f620002ba565b5b6200055c825462000318565b620005698282856200048e565b600060209050601f831160018114620005a157600084156200058c578287015190505b6200059885826200050b565b86555062000608565b601f198416620005b1866200034d565b60005b82811015620005db57848901518255600182019150602085019450602081019050620005b4565b86831015620005fb5784890151620005f7601f891682620004eb565b8355505b6001600288020188555050505b505050505050565b61456d80620006206000396000f3fe608060405234801561001057600080fd5b50600436106101565760003560e01c80636b20c454116100c3578063d81d0a151161007c578063d81d0a15146103bf578063e8a3d485146103db578063e985e9c5146103f9578063f242432a14610429578063f2fde38b14610445578063f5298aca1461046157610156565b80636b20c45414610325578063715018a6146103415780638da5cb5b1461034b578063938e3d7b14610369578063a22cb46514610385578063a64ed8ba146103a157610156565b8063162094c411610115578063162094c4146102535780632eb2c2d61461026f5780632f2f2d561461028b5780634e1273f4146102a75780634f64b2be146102d757806368e6dafe1461030957610156565b80628009a31461015b578062fdd58e1461018b57806301ffc9a7146101bb57806302fe5305146101eb5780630e89341c14610207578063156e29f614610237575b600080fd5b610175600480360381019061017091906128ff565b61047d565b6040516101829190612947565b60405180910390f35b6101a560048036038101906101a09190612998565b61049d565b6040516101b291906129e7565b60405180910390f35b6101d560048036038101906101d09190612a5a565b610565565b6040516101e29190612947565b60405180910390f35b61020560048036038101906102009190612bcd565b610647565b005b610221600480360381019061021c9190612c16565b61065b565b60405161022e9190612cc2565b60405180910390f35b610251600480360381019061024c9190612ce4565b610703565b005b61026d60048036038101906102689190612d37565b6107dc565b005b61028960048036038101906102849190612efc565b61080c565b005b6102a560048036038101906102a09190612fcb565b6108ad565b005b6102c160048036038101906102bc9190613106565b61093b565b6040516102ce919061323c565b60405180910390f35b6102f160048036038101906102ec9190612c16565b610a54565b6040516103009392919061325e565b60405180910390f35b610323600480360381019061031e9190613392565b610b8e565b005b61033f600480360381019061033a919061340a565b610c45565b005b610349610d62565b005b610353610d76565b60405161036091906134a4565b60405180910390f35b610383600480360381019061037e9190612bcd565b610da0565b005b61039f600480360381019061039a91906134bf565b610df5565b005b6103a9610e0b565b6040516103b691906129e7565b60405180910390f35b6103d960048036038101906103d4919061340a565b610e11565b005b6103e3610f3e565b6040516103f09190612cc2565b60405180910390f35b610413600480360381019061040e91906134ff565b610fd0565b6040516104209190612947565b60405180910390f35b610443600480360381019061043e919061353f565b611064565b005b61045f600480360381019061045a91906128ff565b611105565b005b61047b60048036038101906104769190612ce4565b611188565b005b60076020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361050d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050490613648565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610640575061063f82611251565b5b9050919050565b61064f6112bb565b61065881611339565b50565b606060046000838152602001908152602001600020600101805461067e90613697565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90613697565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b50505050509050919050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078690613714565b60405180910390fd5b806004600084815260200190815260200160002060020160008282546107b59190613763565b925050819055506107d78383836040518060200160405280600081525061134c565b505050565b6107e46112bb565b806004600084815260200190815260200160002060010190816108079190613943565b505050565b6108146114fc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061085a5750610859856108546114fc565b610fd0565b5b610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090613a87565b60405180910390fd5b6108a68585858585611504565b5050505050565b6108b56112bb565b6040518060600160405280838152602001828152602001600081525060046000600554815260200190815260200160002060008201518160000190816108fb9190613943565b5060208201518160010190816109119190613943565b50604082015181600201559050506005600081548092919061093290613aa7565b91905055505050565b60608151835114610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890613b61565b60405180910390fd5b6000835167ffffffffffffffff81111561099e5761099d612aa2565b5b6040519080825280602002602001820160405280156109cc5781602001602082028036833780820191505090505b50905060005b8451811015610a4957610a198582815181106109f1576109f0613b81565b5b6020026020010151858381518110610a0c57610a0b613b81565b5b602002602001015161049d565b828281518110610a2c57610a2b613b81565b5b60200260200101818152505080610a4290613aa7565b90506109d2565b508091505092915050565b6004602052806000526040600020600091509050806000018054610a7790613697565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390613697565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b505050505090806001018054610b0590613697565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3190613697565b8015610b7e5780601f10610b5357610100808354040283529160200191610b7e565b820191906000526020600020905b815481529060010190602001808311610b6157829003601f168201915b5050505050908060020154905083565b610b966112bb565b60005b8251811015610c4057818181518110610bb557610bb4613b81565b5b602002602001015160076000858481518110610bd457610bd3613b81565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c3890613aa7565b915050610b99565b505050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890613714565b60405180910390fd5b60005b8251811015610d5157818181518110610cf057610cef613b81565b5b602002602001015160046000858481518110610d0f57610d0e613b81565b5b602002602001015181526020019081526020016000206002016000828254610d379190613bb0565b925050819055508080610d4990613aa7565b915050610cd4565b50610d5d838383611825565b505050565b610d6a6112bb565b610d746000611af3565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610da86112bb565b8060069081610db79190613943565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a16600682604051610dea929190613c68565b60405180910390a150565b610e07610e006114fc565b8383611bb9565b5050565b60055481565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490613714565b60405180910390fd5b60005b8251811015610f1d57818181518110610ebc57610ebb613b81565b5b602002602001015160046000858481518110610edb57610eda613b81565b5b602002602001015181526020019081526020016000206002016000828254610f039190613763565b925050819055508080610f1590613aa7565b915050610ea0565b50610f3983838360405180602001604052806000815250611d25565b505050565b606060068054610f4d90613697565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990613697565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61106c6114fc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110b257506110b1856110ac6114fc565b610fd0565b5b6110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890613a87565b60405180910390fd5b6110fe8585858585611f51565b5050505050565b61110d6112bb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613d11565b60405180910390fd5b61118581611af3565b50565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90613714565b60405180910390fd5b8060046000848152602001908152602001600020600201600082825461123a9190613bb0565b9250508190555061124c8383836121ec565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6112c36114fc565b73ffffffffffffffffffffffffffffffffffffffff166112e1610d76565b73ffffffffffffffffffffffffffffffffffffffff1614611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613d7d565b60405180910390fd5b565b80600290816113489190613943565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613e0f565b60405180910390fd5b60006113c56114fc565b905060006113d285612432565b905060006113df85612432565b90506113f0836000898585896124ac565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144f9190613763565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516114cd929190613e2f565b60405180910390a46114e4836000898585896124b4565b6114f3836000898989896124bc565b50505050505050565b600033905090565b8151835114611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90613eca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613f5c565b60405180910390fd5b60006115c16114fc565b90506115d18187878787876124ac565b60005b84518110156117825760008582815181106115f2576115f1613b81565b5b60200260200101519050600085838151811061161157611610613b81565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990613fee565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117679190613763565b925050819055505050508061177b90613aa7565b90506115d4565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117f992919061400e565b60405180910390a461180f8187878787876124b4565b61181d818787878787612693565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906140b7565b60405180910390fd5b80518251146118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613eca565b60405180910390fd5b60006118e26114fc565b9050611902818560008686604051806020016040528060008152506124ac565b60005b8351811015611a4f57600084828151811061192357611922613b81565b5b60200260200101519050600084838151811061194257611941613b81565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90614149565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611a4790613aa7565b915050611905565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611ac792919061400e565b60405180910390a4611aed818560008686604051806020016040528060008152506124b4565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e906141db565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d189190612947565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90613e0f565b60405180910390fd5b8151835114611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90613eca565b60405180910390fd5b6000611de26114fc565b9050611df3816000878787876124ac565b60005b8451811015611eac57838181518110611e1257611e11613b81565b5b6020026020010151600080878481518110611e3057611e2f613b81565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e929190613763565b925050819055508080611ea490613aa7565b915050611df6565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f2492919061400e565b60405180910390a4611f3b816000878787876124b4565b611f4a81600087878787612693565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790613f5c565b60405180910390fd5b6000611fca6114fc565b90506000611fd785612432565b90506000611fe485612432565b9050611ff48389898585896124ac565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290613fee565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121409190613763565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516121bd929190613e2f565b60405180910390a46121d3848a8a86868a6124b4565b6121e1848a8a8a8a8a6124bc565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612252906140b7565b60405180910390fd5b60006122656114fc565b9050600061227284612432565b9050600061227f84612432565b905061229f838760008585604051806020016040528060008152506124ac565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90614149565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612403929190613e2f565b60405180910390a4612429848860008686604051806020016040528060008152506124b4565b50505050505050565b60606000600167ffffffffffffffff81111561245157612450612aa2565b5b60405190808252806020026020018201604052801561247f5781602001602082028036833780820191505090505b509050828160008151811061249757612496613b81565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6124db8473ffffffffffffffffffffffffffffffffffffffff1661286a565b1561268b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612521959493929190614250565b6020604051808303816000875af192505050801561255d57506040513d601f19601f8201168201806040525081019061255a91906142bf565b60015b612602576125696142f9565b806308c379a0036125c5575061257d61431b565b8061258857506125c7565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bc9190612cc2565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f99061441d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906144af565b60405180910390fd5b505b505050505050565b6126b28473ffffffffffffffffffffffffffffffffffffffff1661286a565b15612862578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016126f89594939291906144cf565b6020604051808303816000875af192505050801561273457506040513d601f19601f8201168201806040525081019061273191906142bf565b60015b6127d9576127406142f9565b806308c379a00361279c575061275461431b565b8061275f575061279e565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127939190612cc2565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d09061441d565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612857906144af565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128cc826128a1565b9050919050565b6128dc816128c1565b81146128e757600080fd5b50565b6000813590506128f9816128d3565b92915050565b60006020828403121561291557612914612897565b5b6000612923848285016128ea565b91505092915050565b60008115159050919050565b6129418161292c565b82525050565b600060208201905061295c6000830184612938565b92915050565b6000819050919050565b61297581612962565b811461298057600080fd5b50565b6000813590506129928161296c565b92915050565b600080604083850312156129af576129ae612897565b5b60006129bd858286016128ea565b92505060206129ce85828601612983565b9150509250929050565b6129e181612962565b82525050565b60006020820190506129fc60008301846129d8565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a3781612a02565b8114612a4257600080fd5b50565b600081359050612a5481612a2e565b92915050565b600060208284031215612a7057612a6f612897565b5b6000612a7e84828501612a45565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ada82612a91565b810181811067ffffffffffffffff82111715612af957612af8612aa2565b5b80604052505050565b6000612b0c61288d565b9050612b188282612ad1565b919050565b600067ffffffffffffffff821115612b3857612b37612aa2565b5b612b4182612a91565b9050602081019050919050565b82818337600083830152505050565b6000612b70612b6b84612b1d565b612b02565b905082815260208101848484011115612b8c57612b8b612a8c565b5b612b97848285612b4e565b509392505050565b600082601f830112612bb457612bb3612a87565b5b8135612bc4848260208601612b5d565b91505092915050565b600060208284031215612be357612be2612897565b5b600082013567ffffffffffffffff811115612c0157612c0061289c565b5b612c0d84828501612b9f565b91505092915050565b600060208284031215612c2c57612c2b612897565b5b6000612c3a84828501612983565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c7d578082015181840152602081019050612c62565b60008484015250505050565b6000612c9482612c43565b612c9e8185612c4e565b9350612cae818560208601612c5f565b612cb781612a91565b840191505092915050565b60006020820190508181036000830152612cdc8184612c89565b905092915050565b600080600060608486031215612cfd57612cfc612897565b5b6000612d0b868287016128ea565b9350506020612d1c86828701612983565b9250506040612d2d86828701612983565b9150509250925092565b60008060408385031215612d4e57612d4d612897565b5b6000612d5c85828601612983565b925050602083013567ffffffffffffffff811115612d7d57612d7c61289c565b5b612d8985828601612b9f565b9150509250929050565b600067ffffffffffffffff821115612dae57612dad612aa2565b5b602082029050602081019050919050565b600080fd5b6000612dd7612dd284612d93565b612b02565b90508083825260208201905060208402830185811115612dfa57612df9612dbf565b5b835b81811015612e235780612e0f8882612983565b845260208401935050602081019050612dfc565b5050509392505050565b600082601f830112612e4257612e41612a87565b5b8135612e52848260208601612dc4565b91505092915050565b600067ffffffffffffffff821115612e7657612e75612aa2565b5b612e7f82612a91565b9050602081019050919050565b6000612e9f612e9a84612e5b565b612b02565b905082815260208101848484011115612ebb57612eba612a8c565b5b612ec6848285612b4e565b509392505050565b600082601f830112612ee357612ee2612a87565b5b8135612ef3848260208601612e8c565b91505092915050565b600080600080600060a08688031215612f1857612f17612897565b5b6000612f26888289016128ea565b9550506020612f37888289016128ea565b945050604086013567ffffffffffffffff811115612f5857612f5761289c565b5b612f6488828901612e2d565b935050606086013567ffffffffffffffff811115612f8557612f8461289c565b5b612f9188828901612e2d565b925050608086013567ffffffffffffffff811115612fb257612fb161289c565b5b612fbe88828901612ece565b9150509295509295909350565b60008060408385031215612fe257612fe1612897565b5b600083013567ffffffffffffffff81111561300057612fff61289c565b5b61300c85828601612b9f565b925050602083013567ffffffffffffffff81111561302d5761302c61289c565b5b61303985828601612b9f565b9150509250929050565b600067ffffffffffffffff82111561305e5761305d612aa2565b5b602082029050602081019050919050565b600061308261307d84613043565b612b02565b905080838252602082019050602084028301858111156130a5576130a4612dbf565b5b835b818110156130ce57806130ba88826128ea565b8452602084019350506020810190506130a7565b5050509392505050565b600082601f8301126130ed576130ec612a87565b5b81356130fd84826020860161306f565b91505092915050565b6000806040838503121561311d5761311c612897565b5b600083013567ffffffffffffffff81111561313b5761313a61289c565b5b613147858286016130d8565b925050602083013567ffffffffffffffff8111156131685761316761289c565b5b61317485828601612e2d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131b381612962565b82525050565b60006131c583836131aa565b60208301905092915050565b6000602082019050919050565b60006131e98261317e565b6131f38185613189565b93506131fe8361319a565b8060005b8381101561322f57815161321688826131b9565b9750613221836131d1565b925050600181019050613202565b5085935050505092915050565b6000602082019050818103600083015261325681846131de565b905092915050565b600060608201905081810360008301526132788186612c89565b9050818103602083015261328c8185612c89565b905061329b60408301846129d8565b949350505050565b600067ffffffffffffffff8211156132be576132bd612aa2565b5b602082029050602081019050919050565b6132d88161292c565b81146132e357600080fd5b50565b6000813590506132f5816132cf565b92915050565b600061330e613309846132a3565b612b02565b9050808382526020820190506020840283018581111561333157613330612dbf565b5b835b8181101561335a578061334688826132e6565b845260208401935050602081019050613333565b5050509392505050565b600082601f83011261337957613378612a87565b5b81356133898482602086016132fb565b91505092915050565b600080604083850312156133a9576133a8612897565b5b600083013567ffffffffffffffff8111156133c7576133c661289c565b5b6133d3858286016130d8565b925050602083013567ffffffffffffffff8111156133f4576133f361289c565b5b61340085828601613364565b9150509250929050565b60008060006060848603121561342357613422612897565b5b6000613431868287016128ea565b935050602084013567ffffffffffffffff8111156134525761345161289c565b5b61345e86828701612e2d565b925050604084013567ffffffffffffffff81111561347f5761347e61289c565b5b61348b86828701612e2d565b9150509250925092565b61349e816128c1565b82525050565b60006020820190506134b96000830184613495565b92915050565b600080604083850312156134d6576134d5612897565b5b60006134e4858286016128ea565b92505060206134f5858286016132e6565b9150509250929050565b6000806040838503121561351657613515612897565b5b6000613524858286016128ea565b9250506020613535858286016128ea565b9150509250929050565b600080600080600060a0868803121561355b5761355a612897565b5b6000613569888289016128ea565b955050602061357a888289016128ea565b945050604061358b88828901612983565b935050606061359c88828901612983565b925050608086013567ffffffffffffffff8111156135bd576135bc61289c565b5b6135c988828901612ece565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000613632602a83612c4e565b915061363d826135d6565b604082019050919050565b6000602082019050818103600083015261366181613625565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136af57607f821691505b6020821081036136c2576136c1613668565b5b50919050565b7f4e6f74207065726d697474656400000000000000000000000000000000000000600082015250565b60006136fe600d83612c4e565b9150613709826136c8565b602082019050919050565b6000602082019050818103600083015261372d816136f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061376e82612962565b915061377983612962565b925082820190508082111561379157613790613734565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137bc565b61380386836137bc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061384061383b61383684612962565b61381b565b612962565b9050919050565b6000819050919050565b61385a83613825565b61386e61386682613847565b8484546137c9565b825550505050565b600090565b613883613876565b61388e818484613851565b505050565b5b818110156138b2576138a760008261387b565b600181019050613894565b5050565b601f8211156138f7576138c881613797565b6138d1846137ac565b810160208510156138e0578190505b6138f46138ec856137ac565b830182613893565b50505b505050565b600082821c905092915050565b600061391a600019846008026138fc565b1980831691505092915050565b60006139338383613909565b9150826002028217905092915050565b61394c82612c43565b67ffffffffffffffff81111561396557613964612aa2565b5b61396f8254613697565b61397a8282856138b6565b600060209050601f8311600181146139ad576000841561399b578287015190505b6139a58582613927565b865550613a0d565b601f1984166139bb86613797565b60005b828110156139e3578489015182556001820191506020850194506020810190506139be565b86831015613a0057848901516139fc601f891682613909565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613a71602e83612c4e565b9150613a7c82613a15565b604082019050919050565b60006020820190508181036000830152613aa081613a64565b9050919050565b6000613ab282612962565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ae457613ae3613734565b5b600182019050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613b4b602983612c4e565b9150613b5682613aef565b604082019050919050565b60006020820190508181036000830152613b7a81613b3e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613bbb82612962565b9150613bc683612962565b9250828203905081811115613bde57613bdd613734565b5b92915050565b60008154613bf181613697565b613bfb8186612c4e565b94506001821660008114613c165760018114613c2c57613c5f565b60ff198316865281151560200286019350613c5f565b613c3585613797565b60005b83811015613c5757815481890152600182019150602081019050613c38565b808801955050505b50505092915050565b60006040820190508181036000830152613c828185613be4565b90508181036020830152613c968184612c89565b90509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cfb602683612c4e565b9150613d0682613c9f565b604082019050919050565b60006020820190508181036000830152613d2a81613cee565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d67602083612c4e565b9150613d7282613d31565b602082019050919050565b60006020820190508181036000830152613d9681613d5a565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613df9602183612c4e565b9150613e0482613d9d565b604082019050919050565b60006020820190508181036000830152613e2881613dec565b9050919050565b6000604082019050613e4460008301856129d8565b613e5160208301846129d8565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613eb4602883612c4e565b9150613ebf82613e58565b604082019050919050565b60006020820190508181036000830152613ee381613ea7565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f46602583612c4e565b9150613f5182613eea565b604082019050919050565b60006020820190508181036000830152613f7581613f39565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613fd8602a83612c4e565b9150613fe382613f7c565b604082019050919050565b6000602082019050818103600083015261400781613fcb565b9050919050565b6000604082019050818103600083015261402881856131de565b9050818103602083015261403c81846131de565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140a1602383612c4e565b91506140ac82614045565b604082019050919050565b600060208201905081810360008301526140d081614094565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614133602483612c4e565b915061413e826140d7565b604082019050919050565b6000602082019050818103600083015261416281614126565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006141c5602983612c4e565b91506141d082614169565b604082019050919050565b600060208201905081810360008301526141f4816141b8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614222826141fb565b61422c8185614206565b935061423c818560208601612c5f565b61424581612a91565b840191505092915050565b600060a0820190506142656000830188613495565b6142726020830187613495565b61427f60408301866129d8565b61428c60608301856129d8565b818103608083015261429e8184614217565b90509695505050505050565b6000815190506142b981612a2e565b92915050565b6000602082840312156142d5576142d4612897565b5b60006142e3848285016142aa565b91505092915050565b60008160e01c9050919050565b600060033d11156143185760046000803e6143156000516142ec565b90505b90565b600060443d106143a85761432d61288d565b60043d036004823e80513d602482011167ffffffffffffffff821117156143555750506143a8565b808201805167ffffffffffffffff81111561437357505050506143a8565b80602083010160043d0385018111156143905750505050506143a8565b61439f82602001850186612ad1565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614407603483612c4e565b9150614412826143ab565b604082019050919050565b60006020820190508181036000830152614436816143fa565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614499602883612c4e565b91506144a48261443d565b604082019050919050565b600060208201905081810360008301526144c88161448c565b9050919050565b600060a0820190506144e46000830188613495565b6144f16020830187613495565b818103604083015261450381866131de565b9050818103606083015261451781856131de565b9050818103608083015261452b8184614217565b9050969550505050505056fea26469706673582212200607089b8c6209a2d9190cb257fd233a215b788f49faf2a80516799b0943a03c64736f6c634300081200330000000000000000000000006610e2879efd5482fe4c74ff71791ec246af591b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101565760003560e01c80636b20c454116100c3578063d81d0a151161007c578063d81d0a15146103bf578063e8a3d485146103db578063e985e9c5146103f9578063f242432a14610429578063f2fde38b14610445578063f5298aca1461046157610156565b80636b20c45414610325578063715018a6146103415780638da5cb5b1461034b578063938e3d7b14610369578063a22cb46514610385578063a64ed8ba146103a157610156565b8063162094c411610115578063162094c4146102535780632eb2c2d61461026f5780632f2f2d561461028b5780634e1273f4146102a75780634f64b2be146102d757806368e6dafe1461030957610156565b80628009a31461015b578062fdd58e1461018b57806301ffc9a7146101bb57806302fe5305146101eb5780630e89341c14610207578063156e29f614610237575b600080fd5b610175600480360381019061017091906128ff565b61047d565b6040516101829190612947565b60405180910390f35b6101a560048036038101906101a09190612998565b61049d565b6040516101b291906129e7565b60405180910390f35b6101d560048036038101906101d09190612a5a565b610565565b6040516101e29190612947565b60405180910390f35b61020560048036038101906102009190612bcd565b610647565b005b610221600480360381019061021c9190612c16565b61065b565b60405161022e9190612cc2565b60405180910390f35b610251600480360381019061024c9190612ce4565b610703565b005b61026d60048036038101906102689190612d37565b6107dc565b005b61028960048036038101906102849190612efc565b61080c565b005b6102a560048036038101906102a09190612fcb565b6108ad565b005b6102c160048036038101906102bc9190613106565b61093b565b6040516102ce919061323c565b60405180910390f35b6102f160048036038101906102ec9190612c16565b610a54565b6040516103009392919061325e565b60405180910390f35b610323600480360381019061031e9190613392565b610b8e565b005b61033f600480360381019061033a919061340a565b610c45565b005b610349610d62565b005b610353610d76565b60405161036091906134a4565b60405180910390f35b610383600480360381019061037e9190612bcd565b610da0565b005b61039f600480360381019061039a91906134bf565b610df5565b005b6103a9610e0b565b6040516103b691906129e7565b60405180910390f35b6103d960048036038101906103d4919061340a565b610e11565b005b6103e3610f3e565b6040516103f09190612cc2565b60405180910390f35b610413600480360381019061040e91906134ff565b610fd0565b6040516104209190612947565b60405180910390f35b610443600480360381019061043e919061353f565b611064565b005b61045f600480360381019061045a91906128ff565b611105565b005b61047b60048036038101906104769190612ce4565b611188565b005b60076020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361050d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050490613648565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610640575061063f82611251565b5b9050919050565b61064f6112bb565b61065881611339565b50565b606060046000838152602001908152602001600020600101805461067e90613697565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90613697565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b50505050509050919050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661078f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078690613714565b60405180910390fd5b806004600084815260200190815260200160002060020160008282546107b59190613763565b925050819055506107d78383836040518060200160405280600081525061134c565b505050565b6107e46112bb565b806004600084815260200190815260200160002060010190816108079190613943565b505050565b6108146114fc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061085a5750610859856108546114fc565b610fd0565b5b610899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089090613a87565b60405180910390fd5b6108a68585858585611504565b5050505050565b6108b56112bb565b6040518060600160405280838152602001828152602001600081525060046000600554815260200190815260200160002060008201518160000190816108fb9190613943565b5060208201518160010190816109119190613943565b50604082015181600201559050506005600081548092919061093290613aa7565b91905055505050565b60608151835114610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890613b61565b60405180910390fd5b6000835167ffffffffffffffff81111561099e5761099d612aa2565b5b6040519080825280602002602001820160405280156109cc5781602001602082028036833780820191505090505b50905060005b8451811015610a4957610a198582815181106109f1576109f0613b81565b5b6020026020010151858381518110610a0c57610a0b613b81565b5b602002602001015161049d565b828281518110610a2c57610a2b613b81565b5b60200260200101818152505080610a4290613aa7565b90506109d2565b508091505092915050565b6004602052806000526040600020600091509050806000018054610a7790613697565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa390613697565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b505050505090806001018054610b0590613697565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3190613697565b8015610b7e5780601f10610b5357610100808354040283529160200191610b7e565b820191906000526020600020905b815481529060010190602001808311610b6157829003601f168201915b5050505050908060020154905083565b610b966112bb565b60005b8251811015610c4057818181518110610bb557610bb4613b81565b5b602002602001015160076000858481518110610bd457610bd3613b81565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c3890613aa7565b915050610b99565b505050565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890613714565b60405180910390fd5b60005b8251811015610d5157818181518110610cf057610cef613b81565b5b602002602001015160046000858481518110610d0f57610d0e613b81565b5b602002602001015181526020019081526020016000206002016000828254610d379190613bb0565b925050819055508080610d4990613aa7565b915050610cd4565b50610d5d838383611825565b505050565b610d6a6112bb565b610d746000611af3565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610da86112bb565b8060069081610db79190613943565b507fc9c7c3fe08b88b4df9d4d47ef47d2c43d55c025a0ba88ca442580ed9e7348a16600682604051610dea929190613c68565b60405180910390a150565b610e07610e006114fc565b8383611bb9565b5050565b60055481565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490613714565b60405180910390fd5b60005b8251811015610f1d57818181518110610ebc57610ebb613b81565b5b602002602001015160046000858481518110610edb57610eda613b81565b5b602002602001015181526020019081526020016000206002016000828254610f039190613763565b925050819055508080610f1590613aa7565b915050610ea0565b50610f3983838360405180602001604052806000815250611d25565b505050565b606060068054610f4d90613697565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7990613697565b8015610fc65780601f10610f9b57610100808354040283529160200191610fc6565b820191906000526020600020905b815481529060010190602001808311610fa957829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61106c6114fc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110b257506110b1856110ac6114fc565b610fd0565b5b6110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890613a87565b60405180910390fd5b6110fe8585858585611f51565b5050505050565b61110d6112bb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613d11565b60405180910390fd5b61118581611af3565b50565b600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b90613714565b60405180910390fd5b8060046000848152602001908152602001600020600201600082825461123a9190613bb0565b9250508190555061124c8383836121ec565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6112c36114fc565b73ffffffffffffffffffffffffffffffffffffffff166112e1610d76565b73ffffffffffffffffffffffffffffffffffffffff1614611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e90613d7d565b60405180910390fd5b565b80600290816113489190613943565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613e0f565b60405180910390fd5b60006113c56114fc565b905060006113d285612432565b905060006113df85612432565b90506113f0836000898585896124ac565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144f9190613763565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516114cd929190613e2f565b60405180910390a46114e4836000898585896124b4565b6114f3836000898989896124bc565b50505050505050565b600033905090565b8151835114611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90613eca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90613f5c565b60405180910390fd5b60006115c16114fc565b90506115d18187878787876124ac565b60005b84518110156117825760008582815181106115f2576115f1613b81565b5b60200260200101519050600085838151811061161157611610613b81565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a990613fee565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117679190613763565b925050819055505050508061177b90613aa7565b90506115d4565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117f992919061400e565b60405180910390a461180f8187878787876124b4565b61181d818787878787612693565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188b906140b7565b60405180910390fd5b80518251146118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613eca565b60405180910390fd5b60006118e26114fc565b9050611902818560008686604051806020016040528060008152506124ac565b60005b8351811015611a4f57600084828151811061192357611922613b81565b5b60200260200101519050600084838151811061194257611941613b81565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90614149565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611a4790613aa7565b915050611905565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611ac792919061400e565b60405180910390a4611aed818560008686604051806020016040528060008152506124b4565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1e906141db565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d189190612947565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90613e0f565b60405180910390fd5b8151835114611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf90613eca565b60405180910390fd5b6000611de26114fc565b9050611df3816000878787876124ac565b60005b8451811015611eac57838181518110611e1257611e11613b81565b5b6020026020010151600080878481518110611e3057611e2f613b81565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e929190613763565b925050819055508080611ea490613aa7565b915050611df6565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f2492919061400e565b60405180910390a4611f3b816000878787876124b4565b611f4a81600087878787612693565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb790613f5c565b60405180910390fd5b6000611fca6114fc565b90506000611fd785612432565b90506000611fe485612432565b9050611ff48389898585896124ac565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508581101561208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290613fee565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121409190613763565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516121bd929190613e2f565b60405180910390a46121d3848a8a86868a6124b4565b6121e1848a8a8a8a8a6124bc565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361225b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612252906140b7565b60405180910390fd5b60006122656114fc565b9050600061227284612432565b9050600061227f84612432565b905061229f838760008585604051806020016040528060008152506124ac565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90614149565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612403929190613e2f565b60405180910390a4612429848860008686604051806020016040528060008152506124b4565b50505050505050565b60606000600167ffffffffffffffff81111561245157612450612aa2565b5b60405190808252806020026020018201604052801561247f5781602001602082028036833780820191505090505b509050828160008151811061249757612496613b81565b5b60200260200101818152505080915050919050565b505050505050565b505050505050565b6124db8473ffffffffffffffffffffffffffffffffffffffff1661286a565b1561268b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612521959493929190614250565b6020604051808303816000875af192505050801561255d57506040513d601f19601f8201168201806040525081019061255a91906142bf565b60015b612602576125696142f9565b806308c379a0036125c5575061257d61431b565b8061258857506125c7565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125bc9190612cc2565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f99061441d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612689576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612680906144af565b60405180910390fd5b505b505050505050565b6126b28473ffffffffffffffffffffffffffffffffffffffff1661286a565b15612862578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016126f89594939291906144cf565b6020604051808303816000875af192505050801561273457506040513d601f19601f8201168201806040525081019061273191906142bf565b60015b6127d9576127406142f9565b806308c379a00361279c575061275461431b565b8061275f575061279e565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127939190612cc2565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d09061441d565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612857906144af565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128cc826128a1565b9050919050565b6128dc816128c1565b81146128e757600080fd5b50565b6000813590506128f9816128d3565b92915050565b60006020828403121561291557612914612897565b5b6000612923848285016128ea565b91505092915050565b60008115159050919050565b6129418161292c565b82525050565b600060208201905061295c6000830184612938565b92915050565b6000819050919050565b61297581612962565b811461298057600080fd5b50565b6000813590506129928161296c565b92915050565b600080604083850312156129af576129ae612897565b5b60006129bd858286016128ea565b92505060206129ce85828601612983565b9150509250929050565b6129e181612962565b82525050565b60006020820190506129fc60008301846129d8565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612a3781612a02565b8114612a4257600080fd5b50565b600081359050612a5481612a2e565b92915050565b600060208284031215612a7057612a6f612897565b5b6000612a7e84828501612a45565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ada82612a91565b810181811067ffffffffffffffff82111715612af957612af8612aa2565b5b80604052505050565b6000612b0c61288d565b9050612b188282612ad1565b919050565b600067ffffffffffffffff821115612b3857612b37612aa2565b5b612b4182612a91565b9050602081019050919050565b82818337600083830152505050565b6000612b70612b6b84612b1d565b612b02565b905082815260208101848484011115612b8c57612b8b612a8c565b5b612b97848285612b4e565b509392505050565b600082601f830112612bb457612bb3612a87565b5b8135612bc4848260208601612b5d565b91505092915050565b600060208284031215612be357612be2612897565b5b600082013567ffffffffffffffff811115612c0157612c0061289c565b5b612c0d84828501612b9f565b91505092915050565b600060208284031215612c2c57612c2b612897565b5b6000612c3a84828501612983565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c7d578082015181840152602081019050612c62565b60008484015250505050565b6000612c9482612c43565b612c9e8185612c4e565b9350612cae818560208601612c5f565b612cb781612a91565b840191505092915050565b60006020820190508181036000830152612cdc8184612c89565b905092915050565b600080600060608486031215612cfd57612cfc612897565b5b6000612d0b868287016128ea565b9350506020612d1c86828701612983565b9250506040612d2d86828701612983565b9150509250925092565b60008060408385031215612d4e57612d4d612897565b5b6000612d5c85828601612983565b925050602083013567ffffffffffffffff811115612d7d57612d7c61289c565b5b612d8985828601612b9f565b9150509250929050565b600067ffffffffffffffff821115612dae57612dad612aa2565b5b602082029050602081019050919050565b600080fd5b6000612dd7612dd284612d93565b612b02565b90508083825260208201905060208402830185811115612dfa57612df9612dbf565b5b835b81811015612e235780612e0f8882612983565b845260208401935050602081019050612dfc565b5050509392505050565b600082601f830112612e4257612e41612a87565b5b8135612e52848260208601612dc4565b91505092915050565b600067ffffffffffffffff821115612e7657612e75612aa2565b5b612e7f82612a91565b9050602081019050919050565b6000612e9f612e9a84612e5b565b612b02565b905082815260208101848484011115612ebb57612eba612a8c565b5b612ec6848285612b4e565b509392505050565b600082601f830112612ee357612ee2612a87565b5b8135612ef3848260208601612e8c565b91505092915050565b600080600080600060a08688031215612f1857612f17612897565b5b6000612f26888289016128ea565b9550506020612f37888289016128ea565b945050604086013567ffffffffffffffff811115612f5857612f5761289c565b5b612f6488828901612e2d565b935050606086013567ffffffffffffffff811115612f8557612f8461289c565b5b612f9188828901612e2d565b925050608086013567ffffffffffffffff811115612fb257612fb161289c565b5b612fbe88828901612ece565b9150509295509295909350565b60008060408385031215612fe257612fe1612897565b5b600083013567ffffffffffffffff81111561300057612fff61289c565b5b61300c85828601612b9f565b925050602083013567ffffffffffffffff81111561302d5761302c61289c565b5b61303985828601612b9f565b9150509250929050565b600067ffffffffffffffff82111561305e5761305d612aa2565b5b602082029050602081019050919050565b600061308261307d84613043565b612b02565b905080838252602082019050602084028301858111156130a5576130a4612dbf565b5b835b818110156130ce57806130ba88826128ea565b8452602084019350506020810190506130a7565b5050509392505050565b600082601f8301126130ed576130ec612a87565b5b81356130fd84826020860161306f565b91505092915050565b6000806040838503121561311d5761311c612897565b5b600083013567ffffffffffffffff81111561313b5761313a61289c565b5b613147858286016130d8565b925050602083013567ffffffffffffffff8111156131685761316761289c565b5b61317485828601612e2d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6131b381612962565b82525050565b60006131c583836131aa565b60208301905092915050565b6000602082019050919050565b60006131e98261317e565b6131f38185613189565b93506131fe8361319a565b8060005b8381101561322f57815161321688826131b9565b9750613221836131d1565b925050600181019050613202565b5085935050505092915050565b6000602082019050818103600083015261325681846131de565b905092915050565b600060608201905081810360008301526132788186612c89565b9050818103602083015261328c8185612c89565b905061329b60408301846129d8565b949350505050565b600067ffffffffffffffff8211156132be576132bd612aa2565b5b602082029050602081019050919050565b6132d88161292c565b81146132e357600080fd5b50565b6000813590506132f5816132cf565b92915050565b600061330e613309846132a3565b612b02565b9050808382526020820190506020840283018581111561333157613330612dbf565b5b835b8181101561335a578061334688826132e6565b845260208401935050602081019050613333565b5050509392505050565b600082601f83011261337957613378612a87565b5b81356133898482602086016132fb565b91505092915050565b600080604083850312156133a9576133a8612897565b5b600083013567ffffffffffffffff8111156133c7576133c661289c565b5b6133d3858286016130d8565b925050602083013567ffffffffffffffff8111156133f4576133f361289c565b5b61340085828601613364565b9150509250929050565b60008060006060848603121561342357613422612897565b5b6000613431868287016128ea565b935050602084013567ffffffffffffffff8111156134525761345161289c565b5b61345e86828701612e2d565b925050604084013567ffffffffffffffff81111561347f5761347e61289c565b5b61348b86828701612e2d565b9150509250925092565b61349e816128c1565b82525050565b60006020820190506134b96000830184613495565b92915050565b600080604083850312156134d6576134d5612897565b5b60006134e4858286016128ea565b92505060206134f5858286016132e6565b9150509250929050565b6000806040838503121561351657613515612897565b5b6000613524858286016128ea565b9250506020613535858286016128ea565b9150509250929050565b600080600080600060a0868803121561355b5761355a612897565b5b6000613569888289016128ea565b955050602061357a888289016128ea565b945050604061358b88828901612983565b935050606061359c88828901612983565b925050608086013567ffffffffffffffff8111156135bd576135bc61289c565b5b6135c988828901612ece565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b6000613632602a83612c4e565b915061363d826135d6565b604082019050919050565b6000602082019050818103600083015261366181613625565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136af57607f821691505b6020821081036136c2576136c1613668565b5b50919050565b7f4e6f74207065726d697474656400000000000000000000000000000000000000600082015250565b60006136fe600d83612c4e565b9150613709826136c8565b602082019050919050565b6000602082019050818103600083015261372d816136f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061376e82612962565b915061377983612962565b925082820190508082111561379157613790613734565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026137f97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826137bc565b61380386836137bc565b95508019841693508086168417925050509392505050565b6000819050919050565b600061384061383b61383684612962565b61381b565b612962565b9050919050565b6000819050919050565b61385a83613825565b61386e61386682613847565b8484546137c9565b825550505050565b600090565b613883613876565b61388e818484613851565b505050565b5b818110156138b2576138a760008261387b565b600181019050613894565b5050565b601f8211156138f7576138c881613797565b6138d1846137ac565b810160208510156138e0578190505b6138f46138ec856137ac565b830182613893565b50505b505050565b600082821c905092915050565b600061391a600019846008026138fc565b1980831691505092915050565b60006139338383613909565b9150826002028217905092915050565b61394c82612c43565b67ffffffffffffffff81111561396557613964612aa2565b5b61396f8254613697565b61397a8282856138b6565b600060209050601f8311600181146139ad576000841561399b578287015190505b6139a58582613927565b865550613a0d565b601f1984166139bb86613797565b60005b828110156139e3578489015182556001820191506020850194506020810190506139be565b86831015613a0057848901516139fc601f891682613909565b8355505b6001600288020188555050505b505050505050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b6000613a71602e83612c4e565b9150613a7c82613a15565b604082019050919050565b60006020820190508181036000830152613aa081613a64565b9050919050565b6000613ab282612962565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ae457613ae3613734565b5b600182019050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000613b4b602983612c4e565b9150613b5682613aef565b604082019050919050565b60006020820190508181036000830152613b7a81613b3e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613bbb82612962565b9150613bc683612962565b9250828203905081811115613bde57613bdd613734565b5b92915050565b60008154613bf181613697565b613bfb8186612c4e565b94506001821660008114613c165760018114613c2c57613c5f565b60ff198316865281151560200286019350613c5f565b613c3585613797565b60005b83811015613c5757815481890152600182019150602081019050613c38565b808801955050505b50505092915050565b60006040820190508181036000830152613c828185613be4565b90508181036020830152613c968184612c89565b90509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613cfb602683612c4e565b9150613d0682613c9f565b604082019050919050565b60006020820190508181036000830152613d2a81613cee565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d67602083612c4e565b9150613d7282613d31565b602082019050919050565b60006020820190508181036000830152613d9681613d5a565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613df9602183612c4e565b9150613e0482613d9d565b604082019050919050565b60006020820190508181036000830152613e2881613dec565b9050919050565b6000604082019050613e4460008301856129d8565b613e5160208301846129d8565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613eb4602883612c4e565b9150613ebf82613e58565b604082019050919050565b60006020820190508181036000830152613ee381613ea7565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f46602583612c4e565b9150613f5182613eea565b604082019050919050565b60006020820190508181036000830152613f7581613f39565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613fd8602a83612c4e565b9150613fe382613f7c565b604082019050919050565b6000602082019050818103600083015261400781613fcb565b9050919050565b6000604082019050818103600083015261402881856131de565b9050818103602083015261403c81846131de565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006140a1602383612c4e565b91506140ac82614045565b604082019050919050565b600060208201905081810360008301526140d081614094565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000614133602483612c4e565b915061413e826140d7565b604082019050919050565b6000602082019050818103600083015261416281614126565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006141c5602983612c4e565b91506141d082614169565b604082019050919050565b600060208201905081810360008301526141f4816141b8565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614222826141fb565b61422c8185614206565b935061423c818560208601612c5f565b61424581612a91565b840191505092915050565b600060a0820190506142656000830188613495565b6142726020830187613495565b61427f60408301866129d8565b61428c60608301856129d8565b818103608083015261429e8184614217565b90509695505050505050565b6000815190506142b981612a2e565b92915050565b6000602082840312156142d5576142d4612897565b5b60006142e3848285016142aa565b91505092915050565b60008160e01c9050919050565b600060033d11156143185760046000803e6143156000516142ec565b90505b90565b600060443d106143a85761432d61288d565b60043d036004823e80513d602482011167ffffffffffffffff821117156143555750506143a8565b808201805167ffffffffffffffff81111561437357505050506143a8565b80602083010160043d0385018111156143905750505050506143a8565b61439f82602001850186612ad1565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614407603483612c4e565b9150614412826143ab565b604082019050919050565b60006020820190508181036000830152614436816143fa565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614499602883612c4e565b91506144a48261443d565b604082019050919050565b600060208201905081810360008301526144c88161448c565b9050919050565b600060a0820190506144e46000830188613495565b6144f16020830187613495565b818103604083015261450381866131de565b9050818103606083015261451781856131de565b9050818103608083015261452b8184614217565b9050969550505050505056fea26469706673582212200607089b8c6209a2d9190cb257fd233a215b788f49faf2a80516799b0943a03c64736f6c63430008120033

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

0000000000000000000000006610e2879efd5482fe4c74ff71791ec246af591b

-----Decoded View---------------
Arg [0] : presale (address): 0x6610E2879EFd5482Fe4C74FF71791Ec246af591B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006610e2879efd5482fe4c74ff71791ec246af591b


Deployed Bytecode Sourcemap

39272:3842:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39856:58;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23399:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22422:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40374:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42807:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41539:228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40510:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25317:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41225:263;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23795:499;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39522:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;40953:264;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42384:375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2748:103;;;:::i;:::-;;2107:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40688:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24367:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39610:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41775:325;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42982:129;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24594:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24834:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3006:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42108:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39856:58;;;;;;;;;;;;;;;;;;;;;;:::o;23399:230::-;23485:7;23532:1;23513:21;;:7;:21;;;23505:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23599:9;:13;23609:2;23599:13;;;;;;;;;;;:22;23613:7;23599:22;;;;;;;;;;;;;;;;23592:29;;23399:230;;;;:::o;22422:310::-;22524:4;22576:26;22561:41;;;:11;:41;;;;:110;;;;22634:37;22619:52;;;:11;:52;;;;22561:110;:163;;;;22688:36;22712:11;22688:23;:36::i;:::-;22561:163;22541:183;;22422:310;;;:::o;40374:128::-;1993:13;:11;:13::i;:::-;40479:15:::1;40487:6;40479:7;:15::i;:::-;40374:128:::0;:::o;42807:167::-;42914:13;42952:6;:10;42959:2;42952:10;;;;;;;;;;;:14;;42945:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42807:167;;;:::o;41539:228::-;39977:7;:19;39985:10;39977:19;;;;;;;;;;;;;;;;;;;;;;;;;39955:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;41710:6:::1;41689;:10;41696:2;41689:10;;;;;;;;;;;:17;;;:27;;;;;;;:::i;:::-;;;;;;;;41729:30;41735:7;41744:2;41748:6;41729:30;;;;;;;;;;;::::0;:5:::1;:30::i;:::-;41539:228:::0;;;:::o;40510:170::-;1993:13;:11;:13::i;:::-;40668:4:::1;40646:6;:15;40653:7;40646:15;;;;;;;;;;;:19;;:26;;;;;;:::i;:::-;;40510:170:::0;;:::o;25317:438::-;25558:12;:10;:12::i;:::-;25550:20;;:4;:20;;;:60;;;;25574:36;25591:4;25597:12;:10;:12::i;:::-;25574:16;:36::i;:::-;25550:60;25528:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;25695:52;25718:4;25724:2;25728:3;25733:7;25742:4;25695:22;:52::i;:::-;25317:438;;;;;:::o;41225:263::-;1993:13;:11;:13::i;:::-;41386:70:::1;;;;;;;;41406:4;41386:70;;;;41425:4;41386:70;;;;41444:1;41386:70;;::::0;41364:6:::1;:19;41371:11;;41364:19;;;;;;;;;;;:92;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41467:11;;:13;;;;;;;;;:::i;:::-;;;;;;41225:263:::0;;:::o;23795:499::-;23931:16;23987:3;:10;23968:8;:15;:29;23960:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;24056:30;24103:8;:15;24089:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24056:63;;24137:9;24132:122;24156:8;:15;24152:1;:19;24132:122;;;24212:30;24222:8;24231:1;24222:11;;;;;;;;:::i;:::-;;;;;;;;24235:3;24239:1;24235:6;;;;;;;;:::i;:::-;;;;;;;;24212:9;:30::i;:::-;24193:13;24207:1;24193:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;24173:3;;;;:::i;:::-;;;24132:122;;;;24273:13;24266:20;;;23795:499;;;;:::o;39522:48::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40953:264::-;1993:13;:11;:13::i;:::-;41108:9:::1;41103:107;41127:7;:14;41123:1;:18;41103:107;;;41185:10;41196:1;41185:13;;;;;;;;:::i;:::-;;;;;;;;41163:7;:19;41171:7;41179:1;41171:10;;;;;;;;:::i;:::-;;;;;;;;41163:19;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;41143:3;;;;;:::i;:::-;;;;41103:107;;;;40953:264:::0;;:::o;42384:375::-;39977:7;:19;39985:10;39977:19;;;;;;;;;;;;;;;;;;;;;;;;;39955:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;42561:9:::1;42556:103;42580:3;:10;42576:1;:14;42556:103;;;42637:7;42645:1;42637:10;;;;;;;;:::i;:::-;;;;;;;;42612:6;:14;42619:3;42623:1;42619:6;;;;;;;;:::i;:::-;;;;;;;;42612:14;;;;;;;;;;;:21;;;:35;;;;;;;:::i;:::-;;;;;;;;42592:3;;;;;:::i;:::-;;;;42556:103;;;;42671:80;42696:4;42715:3;42733:7;42671:10;:80::i;:::-;42384:375:::0;;;:::o;2748:103::-;1993:13;:11;:13::i;:::-;2813:30:::1;2840:1;2813:18;:30::i;:::-;2748:103::o:0;2107:87::-;2153:7;2180:6;;;;;;;;;;;2173:13;;2107:87;:::o;40688:257::-;1993:13;:11;:13::i;:::-;40824:12:::1;40809;:27;;;;;;:::i;:::-;;40854:83;40887:12;40914;40854:83;;;;;;;:::i;:::-;;;;;;;;40688:257:::0;:::o;24367:155::-;24462:52;24481:12;:10;:12::i;:::-;24495:8;24505;24462:18;:52::i;:::-;24367:155;;:::o;39610:26::-;;;;:::o;41775:325::-;39977:7;:19;39985:10;39977:19;;;;;;;;;;;;;;;;;;;;;;;;;39955:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;41950:9:::1;41945:103;41969:3;:10;41965:1;:14;41945:103;;;42026:7;42034:1;42026:10;;;;;;;;:::i;:::-;;;;;;;;42001:6;:14;42008:3;42012:1;42008:6;;;;;;;;:::i;:::-;;;;;;;;42001:14;;;;;;;;;;;:21;;;:35;;;;;;;:::i;:::-;;;;;;;;41981:3;;;;;:::i;:::-;;;;41945:103;;;;42060:32;42071:2;42075:3;42080:7;42060:32;;;;;;;;;;;::::0;:10:::1;:32::i;:::-;41775:325:::0;;;:::o;42982:129::-;43053:13;43091:12;43084:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42982:129;:::o;24594:168::-;24693:4;24717:18;:27;24736:7;24717:27;;;;;;;;;;;;;;;:37;24745:8;24717:37;;;;;;;;;;;;;;;;;;;;;;;;;24710:44;;24594:168;;;;:::o;24834:406::-;25050:12;:10;:12::i;:::-;25042:20;;:4;:20;;;:60;;;;25066:36;25083:4;25089:12;:10;:12::i;:::-;25066:16;:36::i;:::-;25042:60;25020:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;25187:45;25205:4;25211:2;25215;25219:6;25227:4;25187:17;:45::i;:::-;24834:406;;;;;:::o;3006:201::-;1993:13;:11;:13::i;:::-;3115:1:::1;3095:22;;:8;:22;;::::0;3087:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3171:28;3190:8;3171:18;:28::i;:::-;3006:201:::0;:::o;42108:268::-;39977:7;:19;39985:10;39977:19;;;;;;;;;;;;;;;;;;;;;;;;;39955:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;42276:6:::1;42255;:10;42262:2;42255:10;;;;;;;;;;;:17;;;:27;;;;;;;:::i;:::-;;;;;;;;42295:73;42315:4;42334:2;42351:6;42295:5;:73::i;:::-;42108:268:::0;;;:::o;21346:157::-;21431:4;21470:25;21455:40;;;:11;:40;;;;21448:47;;21346:157;;;:::o;2272:132::-;2347:12;:10;:12::i;:::-;2336:23;;:7;:5;:7::i;:::-;:23;;;2328:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2272:132::o;29541:88::-;29615:6;29608:4;:13;;;;;;:::i;:::-;;29541:88;:::o;30015:686::-;30139:1;30125:16;;:2;:16;;;30117:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30192:16;30211:12;:10;:12::i;:::-;30192:31;;30234:20;30257:21;30275:2;30257:17;:21::i;:::-;30234:44;;30289:24;30316:25;30334:6;30316:17;:25::i;:::-;30289:52;;30354:66;30375:8;30393:1;30397:2;30401:3;30406:7;30415:4;30354:20;:66::i;:::-;30454:6;30433:9;:13;30443:2;30433:13;;;;;;;;;;;:17;30447:2;30433:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;30513:2;30476:52;;30509:1;30476:52;;30491:8;30476:52;;;30517:2;30521:6;30476:52;;;;;;;:::i;:::-;;;;;;;;30541:65;30561:8;30579:1;30583:2;30587:3;30592:7;30601:4;30541:19;:65::i;:::-;30619:74;30650:8;30668:1;30672:2;30676;30680:6;30688:4;30619:30;:74::i;:::-;30106:595;;;30015:686;;;;:::o;814:98::-;867:7;894:10;887:17;;814:98;:::o;27551:1146::-;27778:7;:14;27764:3;:10;:28;27756:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;27870:1;27856:16;;:2;:16;;;27848:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27927:16;27946:12;:10;:12::i;:::-;27927:31;;27971:60;27992:8;28002:4;28008:2;28012:3;28017:7;28026:4;27971:20;:60::i;:::-;28049:9;28044:421;28068:3;:10;28064:1;:14;28044:421;;;28100:10;28113:3;28117:1;28113:6;;;;;;;;:::i;:::-;;;;;;;;28100:19;;28134:14;28151:7;28159:1;28151:10;;;;;;;;:::i;:::-;;;;;;;;28134:27;;28178:19;28200:9;:13;28210:2;28200:13;;;;;;;;;;;:19;28214:4;28200:19;;;;;;;;;;;;;;;;28178:41;;28257:6;28242:11;:21;;28234:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28390:6;28376:11;:20;28354:9;:13;28364:2;28354:13;;;;;;;;;;;:19;28368:4;28354:19;;;;;;;;;;;;;;;:42;;;;28447:6;28426:9;:13;28436:2;28426:13;;;;;;;;;;;:17;28440:2;28426:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;28085:380;;;28080:3;;;;:::i;:::-;;;28044:421;;;;28512:2;28482:47;;28506:4;28482:47;;28496:8;28482:47;;;28516:3;28521:7;28482:47;;;;;;;:::i;:::-;;;;;;;;28542:59;28562:8;28572:4;28578:2;28582:3;28587:7;28596:4;28542:19;:59::i;:::-;28614:75;28650:8;28660:4;28666:2;28670:3;28675:7;28684:4;28614:35;:75::i;:::-;27745:952;27551:1146;;;;;:::o;33239:935::-;33373:1;33357:18;;:4;:18;;;33349:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33448:7;:14;33434:3;:10;:28;33426:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;33520:16;33539:12;:10;:12::i;:::-;33520:31;;33564:66;33585:8;33595:4;33609:1;33613:3;33618:7;33564:66;;;;;;;;;;;;:20;:66::i;:::-;33648:9;33643:373;33667:3;:10;33663:1;:14;33643:373;;;33699:10;33712:3;33716:1;33712:6;;;;;;;;:::i;:::-;;;;;;;;33699:19;;33733:14;33750:7;33758:1;33750:10;;;;;;;;:::i;:::-;;;;;;;;33733:27;;33777:19;33799:9;:13;33809:2;33799:13;;;;;;;;;;;:19;33813:4;33799:19;;;;;;;;;;;;;;;;33777:41;;33856:6;33841:11;:21;;33833:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;33983:6;33969:11;:20;33947:9;:13;33957:2;33947:13;;;;;;;;;;;:19;33961:4;33947:19;;;;;;;;;;;;;;;:42;;;;33684:332;;;33679:3;;;;;:::i;:::-;;;;33643:373;;;;34071:1;34033:55;;34057:4;34033:55;;34047:8;34033:55;;;34075:3;34080:7;34033:55;;;;;;;:::i;:::-;;;;;;;;34101:65;34121:8;34131:4;34145:1;34149:3;34154:7;34101:65;;;;;;;;;;;;:19;:65::i;:::-;33338:836;33239:935;;;:::o;3367:191::-;3441:16;3460:6;;;;;;;;;;;3441:25;;3486:8;3477:6;;:17;;;;;;;;;;;;;;;;;;3541:8;3510:40;;3531:8;3510:40;;;;;;;;;;;;3430:128;3367:191;:::o;34317:297::-;34438:8;34429:17;;:5;:17;;;34421:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;34541:8;34503:18;:25;34522:5;34503:25;;;;;;;;;;;;;;;:35;34529:8;34503:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;34587:8;34565:41;;34580:5;34565:41;;;34597:8;34565:41;;;;;;:::i;:::-;;;;;;;;34317:297;;;:::o;31104:813::-;31296:1;31282:16;;:2;:16;;;31274:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31369:7;:14;31355:3;:10;:28;31347:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;31441:16;31460:12;:10;:12::i;:::-;31441:31;;31485:66;31506:8;31524:1;31528:2;31532:3;31537:7;31546:4;31485:20;:66::i;:::-;31569:9;31564:103;31588:3;:10;31584:1;:14;31564:103;;;31645:7;31653:1;31645:10;;;;;;;;:::i;:::-;;;;;;;;31620:9;:17;31630:3;31634:1;31630:6;;;;;;;;:::i;:::-;;;;;;;;31620:17;;;;;;;;;;;:21;31638:2;31620:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;31600:3;;;;;:::i;:::-;;;;31564:103;;;;31720:2;31684:53;;31716:1;31684:53;;31698:8;31684:53;;;31724:3;31729:7;31684:53;;;;;;;:::i;:::-;;;;;;;;31750:65;31770:8;31788:1;31792:2;31796:3;31801:7;31810:4;31750:19;:65::i;:::-;31828:81;31864:8;31882:1;31886:2;31890:3;31895:7;31904:4;31828:35;:81::i;:::-;31263:654;31104:813;;;;:::o;26219:974::-;26421:1;26407:16;;:2;:16;;;26399:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26478:16;26497:12;:10;:12::i;:::-;26478:31;;26520:20;26543:21;26561:2;26543:17;:21::i;:::-;26520:44;;26575:24;26602:25;26620:6;26602:17;:25::i;:::-;26575:52;;26640:60;26661:8;26671:4;26677:2;26681:3;26686:7;26695:4;26640:20;:60::i;:::-;26713:19;26735:9;:13;26745:2;26735:13;;;;;;;;;;;:19;26749:4;26735:19;;;;;;;;;;;;;;;;26713:41;;26788:6;26773:11;:21;;26765:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26913:6;26899:11;:20;26877:9;:13;26887:2;26877:13;;;;;;;;;;;:19;26891:4;26877:19;;;;;;;;;;;;;;;:42;;;;26962:6;26941:9;:13;26951:2;26941:13;;;;;;;;;;;:17;26955:2;26941:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27017:2;26986:46;;27011:4;26986:46;;27001:8;26986:46;;;27021:2;27025:6;26986:46;;;;;;;:::i;:::-;;;;;;;;27045:59;27065:8;27075:4;27081:2;27085:3;27090:7;27099:4;27045:19;:59::i;:::-;27117:68;27148:8;27158:4;27164:2;27168;27172:6;27180:4;27117:30;:68::i;:::-;26388:805;;;;26219:974;;;;;:::o;32215:774::-;32324:1;32308:18;;:4;:18;;;32300:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32379:16;32398:12;:10;:12::i;:::-;32379:31;;32421:20;32444:21;32462:2;32444:17;:21::i;:::-;32421:44;;32476:24;32503:25;32521:6;32503:17;:25::i;:::-;32476:52;;32541:66;32562:8;32572:4;32586:1;32590:3;32595:7;32541:66;;;;;;;;;;;;:20;:66::i;:::-;32620:19;32642:9;:13;32652:2;32642:13;;;;;;;;;;;:19;32656:4;32642:19;;;;;;;;;;;;;;;;32620:41;;32695:6;32680:11;:21;;32672:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;32814:6;32800:11;:20;32778:9;:13;32788:2;32778:13;;;;;;;;;;;:19;32792:4;32778:19;;;;;;;;;;;;;;;:42;;;;32888:1;32849:54;;32874:4;32849:54;;32864:8;32849:54;;;32892:2;32896:6;32849:54;;;;;;;:::i;:::-;;;;;;;;32916:65;32936:8;32946:4;32960:1;32964:3;32969:7;32916:65;;;;;;;;;;;;:19;:65::i;:::-;32289:700;;;;32215:774;;;:::o;38549:198::-;38615:16;38644:22;38683:1;38669:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38644:41;;38707:7;38696:5;38702:1;38696:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;38734:5;38727:12;;;38549:198;;;:::o;35572:221::-;;;;;;;:::o;36748:220::-;;;;;;;:::o;36976:744::-;37191:15;:2;:13;;;:15::i;:::-;37187:526;;;37244:2;37227:38;;;37266:8;37276:4;37282:2;37286:6;37294:4;37227:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37223:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;37575:6;37568:14;;;;;;;;;;;:::i;:::-;;;;;;;;37223:479;;;37624:62;;;;;;;;;;:::i;:::-;;;;;;;;37223:479;37361:43;;;37349:55;;;:8;:55;;;;37345:154;;37429:50;;;;;;;;;;:::i;:::-;;;;;;;;37345:154;37300:214;37187:526;36976:744;;;;;;:::o;37728:813::-;37968:15;:2;:13;;;:15::i;:::-;37964:570;;;38021:2;38004:43;;;38048:8;38058:4;38064:3;38069:7;38078:4;38004:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38000:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;38396:6;38389:14;;;;;;;;;;;:::i;:::-;;;;;;;;38000:523;;;38445:62;;;;;;;;;;:::i;:::-;;;;;;;;38000:523;38177:48;;;38165:60;;;:8;:60;;;;38161:159;;38250:50;;;;;;;;;;:::i;:::-;;;;;;;;38161:159;38084:251;37964:570;37728:813;;;;;;:::o;12487:326::-;12547:4;12804:1;12782:7;:19;;;:23;12775:30;;12487:326;;;:::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:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:90::-;1210:7;1253:5;1246:13;1239:21;1228:32;;1176:90;;;:::o;1272:109::-;1353:21;1368:5;1353:21;:::i;:::-;1348:3;1341:34;1272:109;;:::o;1387:210::-;1474:4;1512:2;1501:9;1497:18;1489:26;;1525:65;1587:1;1576:9;1572:17;1563:6;1525:65;:::i;:::-;1387:210;;;;:::o;1603:77::-;1640:7;1669:5;1658:16;;1603:77;;;:::o;1686:122::-;1759:24;1777:5;1759:24;:::i;:::-;1752:5;1749:35;1739:63;;1798:1;1795;1788:12;1739:63;1686:122;:::o;1814:139::-;1860:5;1898:6;1885:20;1876:29;;1914:33;1941:5;1914:33;:::i;:::-;1814:139;;;;:::o;1959:474::-;2027:6;2035;2084:2;2072:9;2063:7;2059:23;2055:32;2052:119;;;2090:79;;:::i;:::-;2052:119;2210:1;2235:53;2280:7;2271:6;2260:9;2256:22;2235:53;:::i;:::-;2225:63;;2181:117;2337:2;2363:53;2408:7;2399:6;2388:9;2384:22;2363:53;:::i;:::-;2353:63;;2308:118;1959:474;;;;;:::o;2439:118::-;2526:24;2544:5;2526:24;:::i;:::-;2521:3;2514:37;2439:118;;:::o;2563:222::-;2656:4;2694:2;2683:9;2679:18;2671:26;;2707:71;2775:1;2764:9;2760:17;2751:6;2707:71;:::i;:::-;2563:222;;;;:::o;2791:149::-;2827:7;2867:66;2860:5;2856:78;2845:89;;2791:149;;;:::o;2946:120::-;3018:23;3035:5;3018:23;:::i;:::-;3011:5;3008:34;2998:62;;3056:1;3053;3046:12;2998:62;2946:120;:::o;3072:137::-;3117:5;3155:6;3142:20;3133:29;;3171:32;3197:5;3171:32;:::i;:::-;3072:137;;;;:::o;3215:327::-;3273:6;3322:2;3310:9;3301:7;3297:23;3293:32;3290:119;;;3328:79;;:::i;:::-;3290:119;3448:1;3473:52;3517:7;3508:6;3497:9;3493:22;3473:52;:::i;:::-;3463:62;;3419:116;3215:327;;;;:::o;3548:117::-;3657:1;3654;3647:12;3671:117;3780:1;3777;3770:12;3794:102;3835:6;3886:2;3882:7;3877:2;3870:5;3866:14;3862:28;3852:38;;3794:102;;;:::o;3902:180::-;3950:77;3947:1;3940:88;4047:4;4044:1;4037:15;4071:4;4068:1;4061:15;4088:281;4171:27;4193:4;4171:27;:::i;:::-;4163:6;4159:40;4301:6;4289:10;4286:22;4265:18;4253:10;4250:34;4247:62;4244:88;;;4312:18;;:::i;:::-;4244:88;4352:10;4348:2;4341:22;4131:238;4088:281;;:::o;4375:129::-;4409:6;4436:20;;:::i;:::-;4426:30;;4465:33;4493:4;4485:6;4465:33;:::i;:::-;4375:129;;;:::o;4510:308::-;4572:4;4662:18;4654:6;4651:30;4648:56;;;4684:18;;:::i;:::-;4648:56;4722:29;4744:6;4722:29;:::i;:::-;4714:37;;4806:4;4800;4796:15;4788:23;;4510:308;;;:::o;4824:146::-;4921:6;4916:3;4911;4898:30;4962:1;4953:6;4948:3;4944:16;4937:27;4824:146;;;:::o;4976:425::-;5054:5;5079:66;5095:49;5137:6;5095:49;:::i;:::-;5079:66;:::i;:::-;5070:75;;5168:6;5161:5;5154:21;5206:4;5199:5;5195:16;5244:3;5235:6;5230:3;5226:16;5223:25;5220:112;;;5251:79;;:::i;:::-;5220:112;5341:54;5388:6;5383:3;5378;5341:54;:::i;:::-;5060:341;4976:425;;;;;:::o;5421:340::-;5477:5;5526:3;5519:4;5511:6;5507:17;5503:27;5493:122;;5534:79;;:::i;:::-;5493:122;5651:6;5638:20;5676:79;5751:3;5743:6;5736:4;5728:6;5724:17;5676:79;:::i;:::-;5667:88;;5483:278;5421:340;;;;:::o;5767:509::-;5836:6;5885:2;5873:9;5864:7;5860:23;5856:32;5853:119;;;5891:79;;:::i;:::-;5853:119;6039:1;6028:9;6024:17;6011:31;6069:18;6061:6;6058:30;6055:117;;;6091:79;;:::i;:::-;6055:117;6196:63;6251:7;6242:6;6231:9;6227:22;6196:63;:::i;:::-;6186:73;;5982:287;5767:509;;;;:::o;6282:329::-;6341:6;6390:2;6378:9;6369:7;6365:23;6361:32;6358:119;;;6396:79;;:::i;:::-;6358:119;6516:1;6541:53;6586:7;6577:6;6566:9;6562:22;6541:53;:::i;:::-;6531:63;;6487:117;6282:329;;;;:::o;6617:99::-;6669:6;6703:5;6697:12;6687:22;;6617:99;;;:::o;6722:169::-;6806:11;6840:6;6835:3;6828:19;6880:4;6875:3;6871:14;6856:29;;6722:169;;;;:::o;6897:246::-;6978:1;6988:113;7002:6;6999:1;6996:13;6988:113;;;7087:1;7082:3;7078:11;7072:18;7068:1;7063:3;7059:11;7052:39;7024:2;7021:1;7017:10;7012:15;;6988:113;;;7135:1;7126:6;7121:3;7117:16;7110:27;6959:184;6897:246;;;:::o;7149:377::-;7237:3;7265:39;7298:5;7265:39;:::i;:::-;7320:71;7384:6;7379:3;7320:71;:::i;:::-;7313:78;;7400:65;7458:6;7453:3;7446:4;7439:5;7435:16;7400:65;:::i;:::-;7490:29;7512:6;7490:29;:::i;:::-;7485:3;7481:39;7474:46;;7241:285;7149:377;;;;:::o;7532:313::-;7645:4;7683:2;7672:9;7668:18;7660:26;;7732:9;7726:4;7722:20;7718:1;7707:9;7703:17;7696:47;7760:78;7833:4;7824:6;7760:78;:::i;:::-;7752:86;;7532:313;;;;:::o;7851:619::-;7928:6;7936;7944;7993:2;7981:9;7972:7;7968:23;7964:32;7961:119;;;7999:79;;:::i;:::-;7961:119;8119:1;8144:53;8189:7;8180:6;8169:9;8165:22;8144:53;:::i;:::-;8134:63;;8090:117;8246:2;8272:53;8317:7;8308:6;8297:9;8293:22;8272:53;:::i;:::-;8262:63;;8217:118;8374:2;8400:53;8445:7;8436:6;8425:9;8421:22;8400:53;:::i;:::-;8390:63;;8345:118;7851:619;;;;;:::o;8476:654::-;8554:6;8562;8611:2;8599:9;8590:7;8586:23;8582:32;8579:119;;;8617:79;;:::i;:::-;8579:119;8737:1;8762:53;8807:7;8798:6;8787:9;8783:22;8762:53;:::i;:::-;8752:63;;8708:117;8892:2;8881:9;8877:18;8864:32;8923:18;8915:6;8912:30;8909:117;;;8945:79;;:::i;:::-;8909:117;9050:63;9105:7;9096:6;9085:9;9081:22;9050:63;:::i;:::-;9040:73;;8835:288;8476:654;;;;;:::o;9136:311::-;9213:4;9303:18;9295:6;9292:30;9289:56;;;9325:18;;:::i;:::-;9289:56;9375:4;9367:6;9363:17;9355:25;;9435:4;9429;9425:15;9417:23;;9136:311;;;:::o;9453:117::-;9562:1;9559;9552:12;9593:710;9689:5;9714:81;9730:64;9787:6;9730:64;:::i;:::-;9714:81;:::i;:::-;9705:90;;9815:5;9844:6;9837:5;9830:21;9878:4;9871:5;9867:16;9860:23;;9931:4;9923:6;9919:17;9911:6;9907:30;9960:3;9952:6;9949:15;9946:122;;;9979:79;;:::i;:::-;9946:122;10094:6;10077:220;10111:6;10106:3;10103:15;10077:220;;;10186:3;10215:37;10248:3;10236:10;10215:37;:::i;:::-;10210:3;10203:50;10282:4;10277:3;10273:14;10266:21;;10153:144;10137:4;10132:3;10128:14;10121:21;;10077:220;;;10081:21;9695:608;;9593:710;;;;;:::o;10326:370::-;10397:5;10446:3;10439:4;10431:6;10427:17;10423:27;10413:122;;10454:79;;:::i;:::-;10413:122;10571:6;10558:20;10596:94;10686:3;10678:6;10671:4;10663:6;10659:17;10596:94;:::i;:::-;10587:103;;10403:293;10326:370;;;;:::o;10702:307::-;10763:4;10853:18;10845:6;10842:30;10839:56;;;10875:18;;:::i;:::-;10839:56;10913:29;10935:6;10913:29;:::i;:::-;10905:37;;10997:4;10991;10987:15;10979:23;;10702:307;;;:::o;11015:423::-;11092:5;11117:65;11133:48;11174:6;11133:48;:::i;:::-;11117:65;:::i;:::-;11108:74;;11205:6;11198:5;11191:21;11243:4;11236:5;11232:16;11281:3;11272:6;11267:3;11263:16;11260:25;11257:112;;;11288:79;;:::i;:::-;11257:112;11378:54;11425:6;11420:3;11415;11378:54;:::i;:::-;11098:340;11015:423;;;;;:::o;11457:338::-;11512:5;11561:3;11554:4;11546:6;11542:17;11538:27;11528:122;;11569:79;;:::i;:::-;11528:122;11686:6;11673:20;11711:78;11785:3;11777:6;11770:4;11762:6;11758:17;11711:78;:::i;:::-;11702:87;;11518:277;11457:338;;;;:::o;11801:1509::-;11955:6;11963;11971;11979;11987;12036:3;12024:9;12015:7;12011:23;12007:33;12004:120;;;12043:79;;:::i;:::-;12004:120;12163:1;12188:53;12233:7;12224:6;12213:9;12209:22;12188:53;:::i;:::-;12178:63;;12134:117;12290:2;12316:53;12361:7;12352:6;12341:9;12337:22;12316:53;:::i;:::-;12306:63;;12261:118;12446:2;12435:9;12431:18;12418:32;12477:18;12469:6;12466:30;12463:117;;;12499:79;;:::i;:::-;12463:117;12604:78;12674:7;12665:6;12654:9;12650:22;12604:78;:::i;:::-;12594:88;;12389:303;12759:2;12748:9;12744:18;12731:32;12790:18;12782:6;12779:30;12776:117;;;12812:79;;:::i;:::-;12776:117;12917:78;12987:7;12978:6;12967:9;12963:22;12917:78;:::i;:::-;12907:88;;12702:303;13072:3;13061:9;13057:19;13044:33;13104:18;13096:6;13093:30;13090:117;;;13126:79;;:::i;:::-;13090:117;13231:62;13285:7;13276:6;13265:9;13261:22;13231:62;:::i;:::-;13221:72;;13015:288;11801:1509;;;;;;;;:::o;13316:834::-;13404:6;13412;13461:2;13449:9;13440:7;13436:23;13432:32;13429:119;;;13467:79;;:::i;:::-;13429:119;13615:1;13604:9;13600:17;13587:31;13645:18;13637:6;13634:30;13631:117;;;13667:79;;:::i;:::-;13631:117;13772:63;13827:7;13818:6;13807:9;13803:22;13772:63;:::i;:::-;13762:73;;13558:287;13912:2;13901:9;13897:18;13884:32;13943:18;13935:6;13932:30;13929:117;;;13965:79;;:::i;:::-;13929:117;14070:63;14125:7;14116:6;14105:9;14101:22;14070:63;:::i;:::-;14060:73;;13855:288;13316:834;;;;;:::o;14156:311::-;14233:4;14323:18;14315:6;14312:30;14309:56;;;14345:18;;:::i;:::-;14309:56;14395:4;14387:6;14383:17;14375:25;;14455:4;14449;14445:15;14437:23;;14156:311;;;:::o;14490:710::-;14586:5;14611:81;14627:64;14684:6;14627:64;:::i;:::-;14611:81;:::i;:::-;14602:90;;14712:5;14741:6;14734:5;14727:21;14775:4;14768:5;14764:16;14757:23;;14828:4;14820:6;14816:17;14808:6;14804:30;14857:3;14849:6;14846:15;14843:122;;;14876:79;;:::i;:::-;14843:122;14991:6;14974:220;15008:6;15003:3;15000:15;14974:220;;;15083:3;15112:37;15145:3;15133:10;15112:37;:::i;:::-;15107:3;15100:50;15179:4;15174:3;15170:14;15163:21;;15050:144;15034:4;15029:3;15025:14;15018:21;;14974:220;;;14978:21;14592:608;;14490:710;;;;;:::o;15223:370::-;15294:5;15343:3;15336:4;15328:6;15324:17;15320:27;15310:122;;15351:79;;:::i;:::-;15310:122;15468:6;15455:20;15493:94;15583:3;15575:6;15568:4;15560:6;15556:17;15493:94;:::i;:::-;15484:103;;15300:293;15223:370;;;;:::o;15599:894::-;15717:6;15725;15774:2;15762:9;15753:7;15749:23;15745:32;15742:119;;;15780:79;;:::i;:::-;15742:119;15928:1;15917:9;15913:17;15900:31;15958:18;15950:6;15947:30;15944:117;;;15980:79;;:::i;:::-;15944:117;16085:78;16155:7;16146:6;16135:9;16131:22;16085:78;:::i;:::-;16075:88;;15871:302;16240:2;16229:9;16225:18;16212:32;16271:18;16263:6;16260:30;16257:117;;;16293:79;;:::i;:::-;16257:117;16398:78;16468:7;16459:6;16448:9;16444:22;16398:78;:::i;:::-;16388:88;;16183:303;15599:894;;;;;:::o;16499:114::-;16566:6;16600:5;16594:12;16584:22;;16499:114;;;:::o;16619:184::-;16718:11;16752:6;16747:3;16740:19;16792:4;16787:3;16783:14;16768:29;;16619:184;;;;:::o;16809:132::-;16876:4;16899:3;16891:11;;16929:4;16924:3;16920:14;16912:22;;16809:132;;;:::o;16947:108::-;17024:24;17042:5;17024:24;:::i;:::-;17019:3;17012:37;16947:108;;:::o;17061:179::-;17130:10;17151:46;17193:3;17185:6;17151:46;:::i;:::-;17229:4;17224:3;17220:14;17206:28;;17061:179;;;;:::o;17246:113::-;17316:4;17348;17343:3;17339:14;17331:22;;17246:113;;;:::o;17395:732::-;17514:3;17543:54;17591:5;17543:54;:::i;:::-;17613:86;17692:6;17687:3;17613:86;:::i;:::-;17606:93;;17723:56;17773:5;17723:56;:::i;:::-;17802:7;17833:1;17818:284;17843:6;17840:1;17837:13;17818:284;;;17919:6;17913:13;17946:63;18005:3;17990:13;17946:63;:::i;:::-;17939:70;;18032:60;18085:6;18032:60;:::i;:::-;18022:70;;17878:224;17865:1;17862;17858:9;17853:14;;17818:284;;;17822:14;18118:3;18111:10;;17519:608;;;17395:732;;;;:::o;18133:373::-;18276:4;18314:2;18303:9;18299:18;18291:26;;18363:9;18357:4;18353:20;18349:1;18338:9;18334:17;18327:47;18391:108;18494:4;18485:6;18391:108;:::i;:::-;18383:116;;18133:373;;;;:::o;18512:624::-;18701:4;18739:2;18728:9;18724:18;18716:26;;18788:9;18782:4;18778:20;18774:1;18763:9;18759:17;18752:47;18816:78;18889:4;18880:6;18816:78;:::i;:::-;18808:86;;18941:9;18935:4;18931:20;18926:2;18915:9;18911:18;18904:48;18969:78;19042:4;19033:6;18969:78;:::i;:::-;18961:86;;19057:72;19125:2;19114:9;19110:18;19101:6;19057:72;:::i;:::-;18512:624;;;;;;:::o;19142:308::-;19216:4;19306:18;19298:6;19295:30;19292:56;;;19328:18;;:::i;:::-;19292:56;19378:4;19370:6;19366:17;19358:25;;19438:4;19432;19428:15;19420:23;;19142:308;;;:::o;19456:116::-;19526:21;19541:5;19526:21;:::i;:::-;19519:5;19516:32;19506:60;;19562:1;19559;19552:12;19506:60;19456:116;:::o;19578:133::-;19621:5;19659:6;19646:20;19637:29;;19675:30;19699:5;19675:30;:::i;:::-;19578:133;;;;:::o;19731:701::-;19824:5;19849:78;19865:61;19919:6;19865:61;:::i;:::-;19849:78;:::i;:::-;19840:87;;19947:5;19976:6;19969:5;19962:21;20010:4;20003:5;19999:16;19992:23;;20063:4;20055:6;20051:17;20043:6;20039:30;20092:3;20084:6;20081:15;20078:122;;;20111:79;;:::i;:::-;20078:122;20226:6;20209:217;20243:6;20238:3;20235:15;20209:217;;;20318:3;20347:34;20377:3;20365:10;20347:34;:::i;:::-;20342:3;20335:47;20411:4;20406:3;20402:14;20395:21;;20285:141;20269:4;20264:3;20260:14;20253:21;;20209:217;;;20213:21;19830:602;;19731:701;;;;;:::o;20452:364::-;20520:5;20569:3;20562:4;20554:6;20550:17;20546:27;20536:122;;20577:79;;:::i;:::-;20536:122;20694:6;20681:20;20719:91;20806:3;20798:6;20791:4;20783:6;20779:17;20719:91;:::i;:::-;20710:100;;20526:290;20452:364;;;;:::o;20822:888::-;20937:6;20945;20994:2;20982:9;20973:7;20969:23;20965:32;20962:119;;;21000:79;;:::i;:::-;20962:119;21148:1;21137:9;21133:17;21120:31;21178:18;21170:6;21167:30;21164:117;;;21200:79;;:::i;:::-;21164:117;21305:78;21375:7;21366:6;21355:9;21351:22;21305:78;:::i;:::-;21295:88;;21091:302;21460:2;21449:9;21445:18;21432:32;21491:18;21483:6;21480:30;21477:117;;;21513:79;;:::i;:::-;21477:117;21618:75;21685:7;21676:6;21665:9;21661:22;21618:75;:::i;:::-;21608:85;;21403:300;20822:888;;;;;:::o;21716:1039::-;21843:6;21851;21859;21908:2;21896:9;21887:7;21883:23;21879:32;21876:119;;;21914:79;;:::i;:::-;21876:119;22034:1;22059:53;22104:7;22095:6;22084:9;22080:22;22059:53;:::i;:::-;22049:63;;22005:117;22189:2;22178:9;22174:18;22161:32;22220:18;22212:6;22209:30;22206:117;;;22242:79;;:::i;:::-;22206:117;22347:78;22417:7;22408:6;22397:9;22393:22;22347:78;:::i;:::-;22337:88;;22132:303;22502:2;22491:9;22487:18;22474:32;22533:18;22525:6;22522:30;22519:117;;;22555:79;;:::i;:::-;22519:117;22660:78;22730:7;22721:6;22710:9;22706:22;22660:78;:::i;:::-;22650:88;;22445:303;21716:1039;;;;;:::o;22761:118::-;22848:24;22866:5;22848:24;:::i;:::-;22843:3;22836:37;22761:118;;:::o;22885:222::-;22978:4;23016:2;23005:9;23001:18;22993:26;;23029:71;23097:1;23086:9;23082:17;23073:6;23029:71;:::i;:::-;22885:222;;;;:::o;23113:468::-;23178:6;23186;23235:2;23223:9;23214:7;23210:23;23206:32;23203:119;;;23241:79;;:::i;:::-;23203:119;23361:1;23386:53;23431:7;23422:6;23411:9;23407:22;23386:53;:::i;:::-;23376:63;;23332:117;23488:2;23514:50;23556:7;23547:6;23536:9;23532:22;23514:50;:::i;:::-;23504:60;;23459:115;23113:468;;;;;:::o;23587:474::-;23655:6;23663;23712:2;23700:9;23691:7;23687:23;23683:32;23680:119;;;23718:79;;:::i;:::-;23680:119;23838:1;23863:53;23908:7;23899:6;23888:9;23884:22;23863:53;:::i;:::-;23853:63;;23809:117;23965:2;23991:53;24036:7;24027:6;24016:9;24012:22;23991:53;:::i;:::-;23981:63;;23936:118;23587:474;;;;;:::o;24067:1089::-;24171:6;24179;24187;24195;24203;24252:3;24240:9;24231:7;24227:23;24223:33;24220:120;;;24259:79;;:::i;:::-;24220:120;24379:1;24404:53;24449:7;24440:6;24429:9;24425:22;24404:53;:::i;:::-;24394:63;;24350:117;24506:2;24532:53;24577:7;24568:6;24557:9;24553:22;24532:53;:::i;:::-;24522:63;;24477:118;24634:2;24660:53;24705:7;24696:6;24685:9;24681:22;24660:53;:::i;:::-;24650:63;;24605:118;24762:2;24788:53;24833:7;24824:6;24813:9;24809:22;24788:53;:::i;:::-;24778:63;;24733:118;24918:3;24907:9;24903:19;24890:33;24950:18;24942:6;24939:30;24936:117;;;24972:79;;:::i;:::-;24936:117;25077:62;25131:7;25122:6;25111:9;25107:22;25077:62;:::i;:::-;25067:72;;24861:288;24067:1089;;;;;;;;:::o;25162:229::-;25302:34;25298:1;25290:6;25286:14;25279:58;25371:12;25366:2;25358:6;25354:15;25347:37;25162:229;:::o;25397:366::-;25539:3;25560:67;25624:2;25619:3;25560:67;:::i;:::-;25553:74;;25636:93;25725:3;25636:93;:::i;:::-;25754:2;25749:3;25745:12;25738:19;;25397:366;;;:::o;25769:419::-;25935:4;25973:2;25962:9;25958:18;25950:26;;26022:9;26016:4;26012:20;26008:1;25997:9;25993:17;25986:47;26050:131;26176:4;26050:131;:::i;:::-;26042:139;;25769:419;;;:::o;26194:180::-;26242:77;26239:1;26232:88;26339:4;26336:1;26329:15;26363:4;26360:1;26353:15;26380:320;26424:6;26461:1;26455:4;26451:12;26441:22;;26508:1;26502:4;26498:12;26529:18;26519:81;;26585:4;26577:6;26573:17;26563:27;;26519:81;26647:2;26639:6;26636:14;26616:18;26613:38;26610:84;;26666:18;;:::i;:::-;26610:84;26431:269;26380:320;;;:::o;26706:163::-;26846:15;26842:1;26834:6;26830:14;26823:39;26706:163;:::o;26875:366::-;27017:3;27038:67;27102:2;27097:3;27038:67;:::i;:::-;27031:74;;27114:93;27203:3;27114:93;:::i;:::-;27232:2;27227:3;27223:12;27216:19;;26875:366;;;:::o;27247:419::-;27413:4;27451:2;27440:9;27436:18;27428:26;;27500:9;27494:4;27490:20;27486:1;27475:9;27471:17;27464:47;27528:131;27654:4;27528:131;:::i;:::-;27520:139;;27247:419;;;:::o;27672:180::-;27720:77;27717:1;27710:88;27817:4;27814:1;27807:15;27841:4;27838:1;27831:15;27858:191;27898:3;27917:20;27935:1;27917:20;:::i;:::-;27912:25;;27951:20;27969:1;27951:20;:::i;:::-;27946:25;;27994:1;27991;27987:9;27980:16;;28015:3;28012:1;28009:10;28006:36;;;28022:18;;:::i;:::-;28006:36;27858:191;;;;:::o;28055:141::-;28104:4;28127:3;28119:11;;28150:3;28147:1;28140:14;28184:4;28181:1;28171:18;28163:26;;28055:141;;;:::o;28202:93::-;28239:6;28286:2;28281;28274:5;28270:14;28266:23;28256:33;;28202:93;;;:::o;28301:107::-;28345:8;28395:5;28389:4;28385:16;28364:37;;28301:107;;;;:::o;28414:393::-;28483:6;28533:1;28521:10;28517:18;28556:97;28586:66;28575:9;28556:97;:::i;:::-;28674:39;28704:8;28693:9;28674:39;:::i;:::-;28662:51;;28746:4;28742:9;28735:5;28731:21;28722:30;;28795:4;28785:8;28781:19;28774:5;28771:30;28761:40;;28490:317;;28414:393;;;;;:::o;28813:60::-;28841:3;28862:5;28855:12;;28813:60;;;:::o;28879:142::-;28929:9;28962:53;28980:34;28989:24;29007:5;28989:24;:::i;:::-;28980:34;:::i;:::-;28962:53;:::i;:::-;28949:66;;28879:142;;;:::o;29027:75::-;29070:3;29091:5;29084:12;;29027:75;;;:::o;29108:269::-;29218:39;29249:7;29218:39;:::i;:::-;29279:91;29328:41;29352:16;29328:41;:::i;:::-;29320:6;29313:4;29307:11;29279:91;:::i;:::-;29273:4;29266:105;29184:193;29108:269;;;:::o;29383:73::-;29428:3;29383:73;:::o;29462:189::-;29539:32;;:::i;:::-;29580:65;29638:6;29630;29624:4;29580:65;:::i;:::-;29515:136;29462:189;;:::o;29657:186::-;29717:120;29734:3;29727:5;29724:14;29717:120;;;29788:39;29825:1;29818:5;29788:39;:::i;:::-;29761:1;29754:5;29750:13;29741:22;;29717:120;;;29657:186;;:::o;29849:543::-;29950:2;29945:3;29942:11;29939:446;;;29984:38;30016:5;29984:38;:::i;:::-;30068:29;30086:10;30068:29;:::i;:::-;30058:8;30054:44;30251:2;30239:10;30236:18;30233:49;;;30272:8;30257:23;;30233:49;30295:80;30351:22;30369:3;30351:22;:::i;:::-;30341:8;30337:37;30324:11;30295:80;:::i;:::-;29954:431;;29939:446;29849:543;;;:::o;30398:117::-;30452:8;30502:5;30496:4;30492:16;30471:37;;30398:117;;;;:::o;30521:169::-;30565:6;30598:51;30646:1;30642:6;30634:5;30631:1;30627:13;30598:51;:::i;:::-;30594:56;30679:4;30673;30669:15;30659:25;;30572:118;30521:169;;;;:::o;30695:295::-;30771:4;30917:29;30942:3;30936:4;30917:29;:::i;:::-;30909:37;;30979:3;30976:1;30972:11;30966:4;30963:21;30955:29;;30695:295;;;;:::o;30995:1395::-;31112:37;31145:3;31112:37;:::i;:::-;31214:18;31206:6;31203:30;31200:56;;;31236:18;;:::i;:::-;31200:56;31280:38;31312:4;31306:11;31280:38;:::i;:::-;31365:67;31425:6;31417;31411:4;31365:67;:::i;:::-;31459:1;31483:4;31470:17;;31515:2;31507:6;31504:14;31532:1;31527:618;;;;32189:1;32206:6;32203:77;;;32255:9;32250:3;32246:19;32240:26;32231:35;;32203:77;32306:67;32366:6;32359:5;32306:67;:::i;:::-;32300:4;32293:81;32162:222;31497:887;;31527:618;31579:4;31575:9;31567:6;31563:22;31613:37;31645:4;31613:37;:::i;:::-;31672:1;31686:208;31700:7;31697:1;31694:14;31686:208;;;31779:9;31774:3;31770:19;31764:26;31756:6;31749:42;31830:1;31822:6;31818:14;31808:24;;31877:2;31866:9;31862:18;31849:31;;31723:4;31720:1;31716:12;31711:17;;31686:208;;;31922:6;31913:7;31910:19;31907:179;;;31980:9;31975:3;31971:19;31965:26;32023:48;32065:4;32057:6;32053:17;32042:9;32023:48;:::i;:::-;32015:6;32008:64;31930:156;31907:179;32132:1;32128;32120:6;32116:14;32112:22;32106:4;32099:36;31534:611;;;31497:887;;31087:1303;;;30995:1395;;:::o;32396:233::-;32536:34;32532:1;32524:6;32520:14;32513:58;32605:16;32600:2;32592:6;32588:15;32581:41;32396:233;:::o;32635:366::-;32777:3;32798:67;32862:2;32857:3;32798:67;:::i;:::-;32791:74;;32874:93;32963:3;32874:93;:::i;:::-;32992:2;32987:3;32983:12;32976:19;;32635:366;;;:::o;33007:419::-;33173:4;33211:2;33200:9;33196:18;33188:26;;33260:9;33254:4;33250:20;33246:1;33235:9;33231:17;33224:47;33288:131;33414:4;33288:131;:::i;:::-;33280:139;;33007:419;;;:::o;33432:233::-;33471:3;33494:24;33512:5;33494:24;:::i;:::-;33485:33;;33540:66;33533:5;33530:77;33527:103;;33610:18;;:::i;:::-;33527:103;33657:1;33650:5;33646:13;33639:20;;33432:233;;;:::o;33671:228::-;33811:34;33807:1;33799:6;33795:14;33788:58;33880:11;33875:2;33867:6;33863:15;33856:36;33671:228;:::o;33905:366::-;34047:3;34068:67;34132:2;34127:3;34068:67;:::i;:::-;34061:74;;34144:93;34233:3;34144:93;:::i;:::-;34262:2;34257:3;34253:12;34246:19;;33905:366;;;:::o;34277:419::-;34443:4;34481:2;34470:9;34466:18;34458:26;;34530:9;34524:4;34520:20;34516:1;34505:9;34501:17;34494:47;34558:131;34684:4;34558:131;:::i;:::-;34550:139;;34277:419;;;:::o;34702:180::-;34750:77;34747:1;34740:88;34847:4;34844:1;34837:15;34871:4;34868:1;34861:15;34888:194;34928:4;34948:20;34966:1;34948:20;:::i;:::-;34943:25;;34982:20;35000:1;34982:20;:::i;:::-;34977:25;;35026:1;35023;35019:9;35011:17;;35050:1;35044:4;35041:11;35038:37;;;35055:18;;:::i;:::-;35038:37;34888:194;;;;:::o;35112:831::-;35197:3;35234:5;35228:12;35263:36;35289:9;35263:36;:::i;:::-;35315:71;35379:6;35374:3;35315:71;:::i;:::-;35308:78;;35417:1;35406:9;35402:17;35433:1;35428:164;;;;35606:1;35601:336;;;;35395:542;;35428:164;35512:4;35508:9;35497;35493:25;35488:3;35481:38;35572:6;35565:14;35558:22;35552:4;35548:33;35543:3;35539:43;35532:50;;35428:164;;35601:336;35668:38;35700:5;35668:38;:::i;:::-;35728:1;35742:154;35756:6;35753:1;35750:13;35742:154;;;35830:7;35824:14;35820:1;35815:3;35811:11;35804:35;35880:1;35871:7;35867:15;35856:26;;35778:4;35775:1;35771:12;35766:17;;35742:154;;;35925:1;35920:3;35916:11;35909:18;;35608:329;;35395:542;;35201:742;;35112:831;;;;:::o;35949:508::-;36107:4;36145:2;36134:9;36130:18;36122:26;;36194:9;36188:4;36184:20;36180:1;36169:9;36165:17;36158:47;36222:75;36292:4;36283:6;36222:75;:::i;:::-;36214:83;;36344:9;36338:4;36334:20;36329:2;36318:9;36314:18;36307:48;36372:78;36445:4;36436:6;36372:78;:::i;:::-;36364:86;;35949:508;;;;;:::o;36463:225::-;36603:34;36599:1;36591:6;36587:14;36580:58;36672:8;36667:2;36659:6;36655:15;36648:33;36463:225;:::o;36694:366::-;36836:3;36857:67;36921:2;36916:3;36857:67;:::i;:::-;36850:74;;36933:93;37022:3;36933:93;:::i;:::-;37051:2;37046:3;37042:12;37035:19;;36694:366;;;:::o;37066:419::-;37232:4;37270:2;37259:9;37255:18;37247:26;;37319:9;37313:4;37309:20;37305:1;37294:9;37290:17;37283:47;37347:131;37473:4;37347:131;:::i;:::-;37339:139;;37066:419;;;:::o;37491:182::-;37631:34;37627:1;37619:6;37615:14;37608:58;37491:182;:::o;37679:366::-;37821:3;37842:67;37906:2;37901:3;37842:67;:::i;:::-;37835:74;;37918:93;38007:3;37918:93;:::i;:::-;38036:2;38031:3;38027:12;38020:19;;37679:366;;;:::o;38051:419::-;38217:4;38255:2;38244:9;38240:18;38232:26;;38304:9;38298:4;38294:20;38290:1;38279:9;38275:17;38268:47;38332:131;38458:4;38332:131;:::i;:::-;38324:139;;38051:419;;;:::o;38476:220::-;38616:34;38612:1;38604:6;38600:14;38593:58;38685:3;38680:2;38672:6;38668:15;38661:28;38476:220;:::o;38702:366::-;38844:3;38865:67;38929:2;38924:3;38865:67;:::i;:::-;38858:74;;38941:93;39030:3;38941:93;:::i;:::-;39059:2;39054:3;39050:12;39043:19;;38702:366;;;:::o;39074:419::-;39240:4;39278:2;39267:9;39263:18;39255:26;;39327:9;39321:4;39317:20;39313:1;39302:9;39298:17;39291:47;39355:131;39481:4;39355:131;:::i;:::-;39347:139;;39074:419;;;:::o;39499:332::-;39620:4;39658:2;39647:9;39643:18;39635:26;;39671:71;39739:1;39728:9;39724:17;39715:6;39671:71;:::i;:::-;39752:72;39820:2;39809:9;39805:18;39796:6;39752:72;:::i;:::-;39499:332;;;;;:::o;39837:227::-;39977:34;39973:1;39965:6;39961:14;39954:58;40046:10;40041:2;40033:6;40029:15;40022:35;39837:227;:::o;40070:366::-;40212:3;40233:67;40297:2;40292:3;40233:67;:::i;:::-;40226:74;;40309:93;40398:3;40309:93;:::i;:::-;40427:2;40422:3;40418:12;40411:19;;40070:366;;;:::o;40442:419::-;40608:4;40646:2;40635:9;40631:18;40623:26;;40695:9;40689:4;40685:20;40681:1;40670:9;40666:17;40659:47;40723:131;40849:4;40723:131;:::i;:::-;40715:139;;40442:419;;;:::o;40867:224::-;41007:34;41003:1;40995:6;40991:14;40984:58;41076:7;41071:2;41063:6;41059:15;41052:32;40867:224;:::o;41097:366::-;41239:3;41260:67;41324:2;41319:3;41260:67;:::i;:::-;41253:74;;41336:93;41425:3;41336:93;:::i;:::-;41454:2;41449:3;41445:12;41438:19;;41097:366;;;:::o;41469:419::-;41635:4;41673:2;41662:9;41658:18;41650:26;;41722:9;41716:4;41712:20;41708:1;41697:9;41693:17;41686:47;41750:131;41876:4;41750:131;:::i;:::-;41742:139;;41469:419;;;:::o;41894:229::-;42034:34;42030:1;42022:6;42018:14;42011:58;42103:12;42098:2;42090:6;42086:15;42079:37;41894:229;:::o;42129:366::-;42271:3;42292:67;42356:2;42351:3;42292:67;:::i;:::-;42285:74;;42368:93;42457:3;42368:93;:::i;:::-;42486:2;42481:3;42477:12;42470:19;;42129:366;;;:::o;42501:419::-;42667:4;42705:2;42694:9;42690:18;42682:26;;42754:9;42748:4;42744:20;42740:1;42729:9;42725:17;42718:47;42782:131;42908:4;42782:131;:::i;:::-;42774:139;;42501:419;;;:::o;42926:634::-;43147:4;43185:2;43174:9;43170:18;43162:26;;43234:9;43228:4;43224:20;43220:1;43209:9;43205:17;43198:47;43262:108;43365:4;43356:6;43262:108;:::i;:::-;43254:116;;43417:9;43411:4;43407:20;43402:2;43391:9;43387:18;43380:48;43445:108;43548:4;43539:6;43445:108;:::i;:::-;43437:116;;42926:634;;;;;:::o;43566:222::-;43706:34;43702:1;43694:6;43690:14;43683:58;43775:5;43770:2;43762:6;43758:15;43751:30;43566:222;:::o;43794:366::-;43936:3;43957:67;44021:2;44016:3;43957:67;:::i;:::-;43950:74;;44033:93;44122:3;44033:93;:::i;:::-;44151:2;44146:3;44142:12;44135:19;;43794:366;;;:::o;44166:419::-;44332:4;44370:2;44359:9;44355:18;44347:26;;44419:9;44413:4;44409:20;44405:1;44394:9;44390:17;44383:47;44447:131;44573:4;44447:131;:::i;:::-;44439:139;;44166:419;;;:::o;44591:223::-;44731:34;44727:1;44719:6;44715:14;44708:58;44800:6;44795:2;44787:6;44783:15;44776:31;44591:223;:::o;44820:366::-;44962:3;44983:67;45047:2;45042:3;44983:67;:::i;:::-;44976:74;;45059:93;45148:3;45059:93;:::i;:::-;45177:2;45172:3;45168:12;45161:19;;44820:366;;;:::o;45192:419::-;45358:4;45396:2;45385:9;45381:18;45373:26;;45445:9;45439:4;45435:20;45431:1;45420:9;45416:17;45409:47;45473:131;45599:4;45473:131;:::i;:::-;45465:139;;45192:419;;;:::o;45617:228::-;45757:34;45753:1;45745:6;45741:14;45734:58;45826:11;45821:2;45813:6;45809:15;45802:36;45617:228;:::o;45851:366::-;45993:3;46014:67;46078:2;46073:3;46014:67;:::i;:::-;46007:74;;46090:93;46179:3;46090:93;:::i;:::-;46208:2;46203:3;46199:12;46192:19;;45851:366;;;:::o;46223:419::-;46389:4;46427:2;46416:9;46412:18;46404:26;;46476:9;46470:4;46466:20;46462:1;46451:9;46447:17;46440:47;46504:131;46630:4;46504:131;:::i;:::-;46496:139;;46223:419;;;:::o;46648:98::-;46699:6;46733:5;46727:12;46717:22;;46648:98;;;:::o;46752:168::-;46835:11;46869:6;46864:3;46857:19;46909:4;46904:3;46900:14;46885:29;;46752:168;;;;:::o;46926:373::-;47012:3;47040:38;47072:5;47040:38;:::i;:::-;47094:70;47157:6;47152:3;47094:70;:::i;:::-;47087:77;;47173:65;47231:6;47226:3;47219:4;47212:5;47208:16;47173:65;:::i;:::-;47263:29;47285:6;47263:29;:::i;:::-;47258:3;47254:39;47247:46;;47016:283;46926:373;;;;:::o;47305:751::-;47528:4;47566:3;47555:9;47551:19;47543:27;;47580:71;47648:1;47637:9;47633:17;47624:6;47580:71;:::i;:::-;47661:72;47729:2;47718:9;47714:18;47705:6;47661:72;:::i;:::-;47743;47811:2;47800:9;47796:18;47787:6;47743:72;:::i;:::-;47825;47893:2;47882:9;47878:18;47869:6;47825:72;:::i;:::-;47945:9;47939:4;47935:20;47929:3;47918:9;47914:19;47907:49;47973:76;48044:4;48035:6;47973:76;:::i;:::-;47965:84;;47305:751;;;;;;;;:::o;48062:141::-;48118:5;48149:6;48143:13;48134:22;;48165:32;48191:5;48165:32;:::i;:::-;48062:141;;;;:::o;48209:349::-;48278:6;48327:2;48315:9;48306:7;48302:23;48298:32;48295:119;;;48333:79;;:::i;:::-;48295:119;48453:1;48478:63;48533:7;48524:6;48513:9;48509:22;48478:63;:::i;:::-;48468:73;;48424:127;48209:349;;;;:::o;48564:106::-;48608:8;48657:5;48652:3;48648:15;48627:36;;48564:106;;;:::o;48676:183::-;48711:3;48749:1;48731:16;48728:23;48725:128;;;48787:1;48784;48781;48766:23;48809:34;48840:1;48834:8;48809:34;:::i;:::-;48802:41;;48725:128;48676:183;:::o;48865:711::-;48904:3;48942:4;48924:16;48921:26;48950:5;48918:39;48979:20;;:::i;:::-;49054:1;49036:16;49032:24;49029:1;49023:4;49008:49;49087:4;49081:11;49186:16;49179:4;49171:6;49167:17;49164:39;49131:18;49123:6;49120:30;49104:113;49101:146;;;49232:5;;;;49101:146;49278:6;49272:4;49268:17;49314:3;49308:10;49341:18;49333:6;49330:30;49327:43;;;49363:5;;;;;;49327:43;49411:6;49404:4;49399:3;49395:14;49391:27;49470:1;49452:16;49448:24;49442:4;49438:35;49433:3;49430:44;49427:57;;;49477:5;;;;;;;49427:57;49494;49542:6;49536:4;49532:17;49524:6;49520:30;49514:4;49494:57;:::i;:::-;49567:3;49560:10;;48908:668;;;;;48865:711;;:::o;49582:239::-;49722:34;49718:1;49710:6;49706:14;49699:58;49791:22;49786:2;49778:6;49774:15;49767:47;49582:239;:::o;49827:366::-;49969:3;49990:67;50054:2;50049:3;49990:67;:::i;:::-;49983:74;;50066:93;50155:3;50066:93;:::i;:::-;50184:2;50179:3;50175:12;50168:19;;49827:366;;;:::o;50199:419::-;50365:4;50403:2;50392:9;50388:18;50380:26;;50452:9;50446:4;50442:20;50438:1;50427:9;50423:17;50416:47;50480:131;50606:4;50480:131;:::i;:::-;50472:139;;50199:419;;;:::o;50624:227::-;50764:34;50760:1;50752:6;50748:14;50741:58;50833:10;50828:2;50820:6;50816:15;50809:35;50624:227;:::o;50857:366::-;50999:3;51020:67;51084:2;51079:3;51020:67;:::i;:::-;51013:74;;51096:93;51185:3;51096:93;:::i;:::-;51214:2;51209:3;51205:12;51198:19;;50857:366;;;:::o;51229:419::-;51395:4;51433:2;51422:9;51418:18;51410:26;;51482:9;51476:4;51472:20;51468:1;51457:9;51453:17;51446:47;51510:131;51636:4;51510:131;:::i;:::-;51502:139;;51229:419;;;:::o;51654:1053::-;51977:4;52015:3;52004:9;52000:19;51992:27;;52029:71;52097:1;52086:9;52082:17;52073:6;52029:71;:::i;:::-;52110:72;52178:2;52167:9;52163:18;52154:6;52110:72;:::i;:::-;52229:9;52223:4;52219:20;52214:2;52203:9;52199:18;52192:48;52257:108;52360:4;52351:6;52257:108;:::i;:::-;52249:116;;52412:9;52406:4;52402:20;52397:2;52386:9;52382:18;52375:48;52440:108;52543:4;52534:6;52440:108;:::i;:::-;52432:116;;52596:9;52590:4;52586:20;52580:3;52569:9;52565:19;52558:49;52624:76;52695:4;52686:6;52624:76;:::i;:::-;52616:84;;51654:1053;;;;;;;;:::o

Swarm Source

ipfs://0607089b8c6209a2d9190cb257fd233a215b788f49faf2a80516799b0943a03c
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.