ETH Price: $3,150.32 (-7.92%)
Gas: 6 Gwei

Token

Listening (LTG)
 

Overview

Max Total Supply

14 LTG

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vechknightvault.eth
Balance
1 LTG
0x27013982436c909a685c4e33a768ea0bb671fd73
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:
SimpleNftLowerGas

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

//SPDX-License-Identifier: unlicensed

// Edited by ReservedSnow (https://linktr.ee/reservedsnow)

/*
    !Disclaimer!
    This contract was edited under freelance conditons. Developer takes no liabillity for any damages
    done by the project or malfunctioning of the contract.
*/
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/interfaces/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/FVMListening.sol

pragma solidity >=0.7.0 <0.9.0;





contract SimpleNftLowerGas is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.04 ether;
  uint256 public maxSupply = 99;
  uint256 public maxMintAmountPerTx = 5;

  bool public paused = true;
  bool public revealed = false;

  // collection address
  address public freeMintCollection = 0x3f06dC7CBE3620676384270902aeB03222a91385;

  constructor() ERC721("Listening", "LTG") {
    setHiddenMetadataUri("ipfs://__CID__/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");

    IERC721 Collection = IERC721(freeMintCollection);
    uint256 CollectionBalance = Collection.balanceOf(msg.sender) ;
    if(CollectionBalance == 0) {
      require(msg.value >= cost * _mintAmount, "Insufficient funds!");
      require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    }
    else{
    require(msg.value >= 0 * _mintAmount, "Insufficient funds!");
    require(balanceOf(msg.sender) + _mintAmount <= CollectionBalance, "Max free mint exceeded, you don't hold anymore tokens");
    require(_mintAmount > 0 && _mintAmount <= CollectionBalance, "Invalid mint amount!");
    }

    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setFreeMintCollection(address _contractaddress) public onlyOwner {
    freeMintCollection = _contractaddress;
  }

  function withdraw() public onlyOwner {

    //owner withdraw

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

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintCollection","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractaddress","type":"address"}],"name":"setFreeMintCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b929190620003d7565b506040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506009908051906020019062000079929190620003d7565b50668e1bc9bf040000600b556063600c556005600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550733f06dc7cbe3620676384270902aeb03222a91385600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200012757600080fd5b506040518060400160405280600981526020017f4c697374656e696e6700000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c544700000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001ac929190620003d7565b508060019080519060200190620001c5929190620003d7565b505050620001e8620001dc6200023460201b60201c565b6200023c60201b60201c565b6200022e6040518060400160405280601a81526020017f697066733a2f2f5f5f4349445f5f2f68696464656e2e6a736f6e0000000000008152506200030260201b60201c565b6200056f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003126200023460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000338620003ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000391576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038890620004ae565b60405180910390fd5b80600a9080519060200190620003a9929190620003d7565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003e590620004e1565b90600052602060002090601f01602090048101928262000409576000855562000455565b82601f106200042457805160ff191683800117855562000455565b8280016001018555821562000455579182015b828111156200045457825182559160200191906001019062000437565b5b50905062000464919062000468565b5090565b5b808211156200048357600081600090555060010162000469565b5090565b600062000496602083620004d0565b9150620004a38262000546565b602082019050919050565b60006020820190508181036000830152620004c98162000487565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004fa57607f821691505b6020821081141562000511576200051062000517565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614587806200057f6000396000f3fe6080604052600436106102255760003560e01c80636352211e11610123578063a45ba8e7116100ab578063e0a808531161006f578063e0a80853146107d4578063e985e9c5146107fd578063efbd73f41461083a578063f2fde38b14610863578063f3b7d7731461088c57610225565b8063a45ba8e7146106ef578063b071401b1461071a578063b88d4fde14610743578063c87b56dd1461076c578063d5abeb01146107a957610225565b80638da5cb5b116100f25780638da5cb5b1461062957806394354fd01461065457806395d89b411461067f578063a0712d68146106aa578063a22cb465146106c657610225565b80636352211e1461056f57806370a08231146105ac578063715018a6146105e95780637ec4a6591461060057610225565b806323b872dd116101b15780634fdd43cb116101755780634fdd43cb1461049a57806351830227146104c35780635503a0e8146104ee5780635c975abb1461051957806362b99ad41461054457610225565b806323b872dd146103cb5780633ccfd60b146103f457806342842e0e1461040b578063438b63001461043457806344a0d68a1461047157610225565b8063095ea7b3116101f8578063095ea7b3146102fa57806313faede61461032357806316ba10e01461034e57806316c38b3c1461037757806318160ddd146103a057610225565b806301ffc9a71461022a5780630484d71b1461026757806306fdde0314610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906130f2565b6108b5565b60405161025e91906137d4565b60405180910390f35b34801561027357600080fd5b5061027c610997565b604051610289919061374b565b60405180910390f35b34801561029e57600080fd5b506102a76109bd565b6040516102b491906137ef565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190613195565b610a4f565b6040516102f1919061374b565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190613085565b610ad4565b005b34801561032f57600080fd5b50610338610bec565b6040516103459190613ab1565b60405180910390f35b34801561035a57600080fd5b506103756004803603810190610370919061314c565b610bf2565b005b34801561038357600080fd5b5061039e600480360381019061039991906130c5565b610c88565b005b3480156103ac57600080fd5b506103b5610d21565b6040516103c29190613ab1565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190612f6f565b610d32565b005b34801561040057600080fd5b50610409610d92565b005b34801561041757600080fd5b50610432600480360381019061042d9190612f6f565b610e8e565b005b34801561044057600080fd5b5061045b60048036038101906104569190612f02565b610eae565b60405161046891906137b2565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613195565b610fb9565b005b3480156104a657600080fd5b506104c160048036038101906104bc919061314c565b61103f565b005b3480156104cf57600080fd5b506104d86110d5565b6040516104e591906137d4565b60405180910390f35b3480156104fa57600080fd5b506105036110e8565b60405161051091906137ef565b60405180910390f35b34801561052557600080fd5b5061052e611176565b60405161053b91906137d4565b60405180910390f35b34801561055057600080fd5b50610559611189565b60405161056691906137ef565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613195565b611217565b6040516105a3919061374b565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190612f02565b6112c9565b6040516105e09190613ab1565b60405180910390f35b3480156105f557600080fd5b506105fe611381565b005b34801561060c57600080fd5b506106276004803603810190610622919061314c565b611409565b005b34801561063557600080fd5b5061063e61149f565b60405161064b919061374b565b60405180910390f35b34801561066057600080fd5b506106696114c9565b6040516106769190613ab1565b60405180910390f35b34801561068b57600080fd5b506106946114cf565b6040516106a191906137ef565b60405180910390f35b6106c460048036038101906106bf9190613195565b611561565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190613045565b611873565b005b3480156106fb57600080fd5b50610704611889565b60405161071191906137ef565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190613195565b611917565b005b34801561074f57600080fd5b5061076a60048036038101906107659190612fc2565b61199d565b005b34801561077857600080fd5b50610793600480360381019061078e9190613195565b6119ff565b6040516107a091906137ef565b60405180910390f35b3480156107b557600080fd5b506107be611b58565b6040516107cb9190613ab1565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f691906130c5565b611b5e565b005b34801561080957600080fd5b50610824600480360381019061081f9190612f2f565b611bf7565b60405161083191906137d4565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c91906131ef565b611c8b565b005b34801561086f57600080fd5b5061088a60048036038101906108859190612f02565b611d70565b005b34801561089857600080fd5b506108b360048036038101906108ae9190612f02565b611e68565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610990575061098f82611f28565b5b9050919050565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600080546109cc90613dba565b80601f01602080910402602001604051908101604052809291908181526020018280546109f890613dba565b8015610a455780601f10610a1a57610100808354040283529160200191610a45565b820191906000526020600020905b815481529060010190602001808311610a2857829003601f168201915b5050505050905090565b6000610a5a82611f92565b610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9090613991565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610adf82611217565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790613a11565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611ffe565b73ffffffffffffffffffffffffffffffffffffffff161480610b9e5750610b9d81610b98611ffe565b611bf7565b5b610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490613911565b60405180910390fd5b610be78383612006565b505050565b600b5481565b610bfa611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610c1861149f565b73ffffffffffffffffffffffffffffffffffffffff1614610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906139b1565b60405180910390fd5b8060099080519060200190610c84929190612d01565b5050565b610c90611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610cae61149f565b73ffffffffffffffffffffffffffffffffffffffff1614610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb906139b1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610d2d60076120bf565b905090565b610d43610d3d611ffe565b826120cd565b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613a51565b60405180910390fd5b610d8d8383836121ab565b505050565b610d9a611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610db861149f565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e05906139b1565b60405180910390fd5b6000610e1861149f565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e3b90613736565b60006040518083038185875af1925050503d8060008114610e78576040519150601f19603f3d011682016040523d82523d6000602084013e610e7d565b606091505b5050905080610e8b57600080fd5b50565b610ea98383836040518060200160405280600081525061199d565b505050565b60606000610ebb836112c9565b905060008167ffffffffffffffff811115610ed957610ed8613f53565b5b604051908082528060200260200182016040528015610f075781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f245750600c548211155b15610fad576000610f3483611217565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f995782848381518110610f7e57610f7d613f24565b5b6020026020010181815250508180610f9590613e1d565b9250505b8280610fa490613e1d565b93505050610f13565b82945050505050919050565b610fc1611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610fdf61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c906139b1565b60405180910390fd5b80600b8190555050565b611047611ffe565b73ffffffffffffffffffffffffffffffffffffffff1661106561149f565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b2906139b1565b60405180910390fd5b80600a90805190602001906110d1929190612d01565b5050565b600e60019054906101000a900460ff1681565b600980546110f590613dba565b80601f016020809104026020016040519081016040528092919081815260200182805461112190613dba565b801561116e5780601f106111435761010080835404028352916020019161116e565b820191906000526020600020905b81548152906001019060200180831161115157829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b6008805461119690613dba565b80601f01602080910402602001604051908101604052809291908181526020018280546111c290613dba565b801561120f5780601f106111e45761010080835404028352916020019161120f565b820191906000526020600020905b8154815290600101906020018083116111f257829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790613951565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613931565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611389611ffe565b73ffffffffffffffffffffffffffffffffffffffff166113a761149f565b73ffffffffffffffffffffffffffffffffffffffff16146113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f4906139b1565b60405180910390fd5b6114076000612412565b565b611411611ffe565b73ffffffffffffffffffffffffffffffffffffffff1661142f61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c906139b1565b60405180910390fd5b806008908051906020019061149b929190612d01565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546114de90613dba565b80601f016020809104026020016040519081016040528092919081815260200182805461150a90613dba565b80156115575780601f1061152c57610100808354040283529160200191611557565b820191906000526020600020905b81548152906001019060200180831161153a57829003601f168201915b5050505050905090565b80600c548161157060076120bf565b61157a9190613bef565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613a31565b60405180910390fd5b600e60009054906101000a900460ff161561160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906139d1565b60405180910390fd5b6000600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161166d919061374b565b60206040518083038186803b15801561168557600080fd5b505afa158015611699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bd91906131c2565b9050600081141561176e5783600b546116d69190613c76565b341015611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90613a91565b60405180910390fd5b60008411801561172a5750600d548411155b611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613891565b60405180910390fd5b611863565b83600061177b9190613c76565b3410156117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b490613a91565b60405180910390fd5b80846117c8336112c9565b6117d29190613bef565b1115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613a71565b60405180910390fd5b6000841180156118235750808411155b611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990613891565b60405180910390fd5b5b61186d33856124d8565b50505050565b61188561187e611ffe565b8383612518565b5050565b600a805461189690613dba565b80601f01602080910402602001604051908101604052809291908181526020018280546118c290613dba565b801561190f5780601f106118e45761010080835404028352916020019161190f565b820191906000526020600020905b8154815290600101906020018083116118f257829003601f168201915b505050505081565b61191f611ffe565b73ffffffffffffffffffffffffffffffffffffffff1661193d61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a906139b1565b60405180910390fd5b80600d8190555050565b6119ae6119a8611ffe565b836120cd565b6119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613a51565b60405180910390fd5b6119f984848484612685565b50505050565b6060611a0a82611f92565b611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906139f1565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611af757600a8054611a7290613dba565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9e90613dba565b8015611aeb5780601f10611ac057610100808354040283529160200191611aeb565b820191906000526020600020905b815481529060010190602001808311611ace57829003601f168201915b50505050509050611b53565b6000611b016126e1565b90506000815111611b215760405180602001604052806000815250611b4f565b80611b2b84612773565b6009604051602001611b3f93929190613705565b6040516020818303038152906040525b9150505b919050565b600c5481565b611b66611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611b8461149f565b73ffffffffffffffffffffffffffffffffffffffff1614611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd1906139b1565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600c5481611c9a60076120bf565b611ca49190613bef565b1115611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90613a31565b60405180910390fd5b611ced611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611d0b61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d58906139b1565b60405180910390fd5b611d6b82846124d8565b505050565b611d78611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611d9661149f565b73ffffffffffffffffffffffffffffffffffffffff1614611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de3906139b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390613831565b60405180910390fd5b611e6581612412565b50565b611e70611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611e8e61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb906139b1565b60405180910390fd5b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661207983611217565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006120d882611f92565b612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e906138f1565b60405180910390fd5b600061212283611217565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061216457506121638185611bf7565b5b806121a257508373ffffffffffffffffffffffffffffffffffffffff1661218a84610a4f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121cb82611217565b73ffffffffffffffffffffffffffffffffffffffff1614612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890613851565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612288906138b1565b60405180910390fd5b61229c8383836128d4565b6122a7600082612006565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f79190613cd0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461234e9190613bef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461240d8383836128d9565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612513576124ed60076128de565b612500836124fb60076120bf565b6128f4565b808061250b90613e1d565b9150506124db565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e906138d1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161267891906137d4565b60405180910390a3505050565b6126908484846121ab565b61269c84848484612912565b6126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d290613811565b60405180910390fd5b50505050565b6060600880546126f090613dba565b80601f016020809104026020016040519081016040528092919081815260200182805461271c90613dba565b80156127695780601f1061273e57610100808354040283529160200191612769565b820191906000526020600020905b81548152906001019060200180831161274c57829003601f168201915b5050505050905090565b606060008214156127bb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128cf565b600082905060005b600082146127ed5780806127d690613e1d565b915050600a826127e69190613c45565b91506127c3565b60008167ffffffffffffffff81111561280957612808613f53565b5b6040519080825280601f01601f19166020018201604052801561283b5781602001600182028036833780820191505090505b5090505b600085146128c8576001826128549190613cd0565b9150600a856128639190613e66565b603061286f9190613bef565b60f81b81838151811061288557612884613f24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128c19190613c45565b945061283f565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61290e828260405180602001604052806000815250612aa9565b5050565b60006129338473ffffffffffffffffffffffffffffffffffffffff16612b04565b15612a9c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261295c611ffe565b8786866040518563ffffffff1660e01b815260040161297e9493929190613766565b602060405180830381600087803b15801561299857600080fd5b505af19250505080156129c957506040513d601f19601f820116820180604052508101906129c6919061311f565b60015b612a4c573d80600081146129f9576040519150601f19603f3d011682016040523d82523d6000602084013e6129fe565b606091505b50600081511415612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b90613811565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aa1565b600190505b949350505050565b612ab38383612b27565b612ac06000848484612912565b612aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af690613811565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e90613971565b60405180910390fd5b612ba081611f92565b15612be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd790613871565b60405180910390fd5b612bec600083836128d4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c3c9190613bef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cfd600083836128d9565b5050565b828054612d0d90613dba565b90600052602060002090601f016020900481019282612d2f5760008555612d76565b82601f10612d4857805160ff1916838001178555612d76565b82800160010185558215612d76579182015b82811115612d75578251825591602001919060010190612d5a565b5b509050612d839190612d87565b5090565b5b80821115612da0576000816000905550600101612d88565b5090565b6000612db7612db284613af1565b613acc565b905082815260208101848484011115612dd357612dd2613f87565b5b612dde848285613d78565b509392505050565b6000612df9612df484613b22565b613acc565b905082815260208101848484011115612e1557612e14613f87565b5b612e20848285613d78565b509392505050565b600081359050612e37816144f5565b92915050565b600081359050612e4c8161450c565b92915050565b600081359050612e6181614523565b92915050565b600081519050612e7681614523565b92915050565b600082601f830112612e9157612e90613f82565b5b8135612ea1848260208601612da4565b91505092915050565b600082601f830112612ebf57612ebe613f82565b5b8135612ecf848260208601612de6565b91505092915050565b600081359050612ee78161453a565b92915050565b600081519050612efc8161453a565b92915050565b600060208284031215612f1857612f17613f91565b5b6000612f2684828501612e28565b91505092915050565b60008060408385031215612f4657612f45613f91565b5b6000612f5485828601612e28565b9250506020612f6585828601612e28565b9150509250929050565b600080600060608486031215612f8857612f87613f91565b5b6000612f9686828701612e28565b9350506020612fa786828701612e28565b9250506040612fb886828701612ed8565b9150509250925092565b60008060008060808587031215612fdc57612fdb613f91565b5b6000612fea87828801612e28565b9450506020612ffb87828801612e28565b935050604061300c87828801612ed8565b925050606085013567ffffffffffffffff81111561302d5761302c613f8c565b5b61303987828801612e7c565b91505092959194509250565b6000806040838503121561305c5761305b613f91565b5b600061306a85828601612e28565b925050602061307b85828601612e3d565b9150509250929050565b6000806040838503121561309c5761309b613f91565b5b60006130aa85828601612e28565b92505060206130bb85828601612ed8565b9150509250929050565b6000602082840312156130db576130da613f91565b5b60006130e984828501612e3d565b91505092915050565b60006020828403121561310857613107613f91565b5b600061311684828501612e52565b91505092915050565b60006020828403121561313557613134613f91565b5b600061314384828501612e67565b91505092915050565b60006020828403121561316257613161613f91565b5b600082013567ffffffffffffffff8111156131805761317f613f8c565b5b61318c84828501612eaa565b91505092915050565b6000602082840312156131ab576131aa613f91565b5b60006131b984828501612ed8565b91505092915050565b6000602082840312156131d8576131d7613f91565b5b60006131e684828501612eed565b91505092915050565b6000806040838503121561320657613205613f91565b5b600061321485828601612ed8565b925050602061322585828601612e28565b9150509250929050565b600061323b83836136e7565b60208301905092915050565b61325081613d04565b82525050565b600061326182613b78565b61326b8185613ba6565b935061327683613b53565b8060005b838110156132a757815161328e888261322f565b975061329983613b99565b92505060018101905061327a565b5085935050505092915050565b6132bd81613d16565b82525050565b60006132ce82613b83565b6132d88185613bb7565b93506132e8818560208601613d87565b6132f181613f96565b840191505092915050565b600061330782613b8e565b6133118185613bd3565b9350613321818560208601613d87565b61332a81613f96565b840191505092915050565b600061334082613b8e565b61334a8185613be4565b935061335a818560208601613d87565b80840191505092915050565b6000815461337381613dba565b61337d8186613be4565b9450600182166000811461339857600181146133a9576133dc565b60ff198316865281860193506133dc565b6133b285613b63565b60005b838110156133d4578154818901526001820191506020810190506133b5565b838801955050505b50505092915050565b60006133f2603283613bd3565b91506133fd82613fa7565b604082019050919050565b6000613415602683613bd3565b915061342082613ff6565b604082019050919050565b6000613438602583613bd3565b915061344382614045565b604082019050919050565b600061345b601c83613bd3565b915061346682614094565b602082019050919050565b600061347e601483613bd3565b9150613489826140bd565b602082019050919050565b60006134a1602483613bd3565b91506134ac826140e6565b604082019050919050565b60006134c4601983613bd3565b91506134cf82614135565b602082019050919050565b60006134e7602c83613bd3565b91506134f28261415e565b604082019050919050565b600061350a603883613bd3565b9150613515826141ad565b604082019050919050565b600061352d602a83613bd3565b9150613538826141fc565b604082019050919050565b6000613550602983613bd3565b915061355b8261424b565b604082019050919050565b6000613573602083613bd3565b915061357e8261429a565b602082019050919050565b6000613596602c83613bd3565b91506135a1826142c3565b604082019050919050565b60006135b9602083613bd3565b91506135c482614312565b602082019050919050565b60006135dc601783613bd3565b91506135e78261433b565b602082019050919050565b60006135ff602f83613bd3565b915061360a82614364565b604082019050919050565b6000613622602183613bd3565b915061362d826143b3565b604082019050919050565b6000613645600083613bc8565b915061365082614402565b600082019050919050565b6000613668601483613bd3565b915061367382614405565b602082019050919050565b600061368b603183613bd3565b91506136968261442e565b604082019050919050565b60006136ae603583613bd3565b91506136b98261447d565b604082019050919050565b60006136d1601383613bd3565b91506136dc826144cc565b602082019050919050565b6136f081613d6e565b82525050565b6136ff81613d6e565b82525050565b60006137118286613335565b915061371d8285613335565b91506137298284613366565b9150819050949350505050565b600061374182613638565b9150819050919050565b60006020820190506137606000830184613247565b92915050565b600060808201905061377b6000830187613247565b6137886020830186613247565b61379560408301856136f6565b81810360608301526137a781846132c3565b905095945050505050565b600060208201905081810360008301526137cc8184613256565b905092915050565b60006020820190506137e960008301846132b4565b92915050565b6000602082019050818103600083015261380981846132fc565b905092915050565b6000602082019050818103600083015261382a816133e5565b9050919050565b6000602082019050818103600083015261384a81613408565b9050919050565b6000602082019050818103600083015261386a8161342b565b9050919050565b6000602082019050818103600083015261388a8161344e565b9050919050565b600060208201905081810360008301526138aa81613471565b9050919050565b600060208201905081810360008301526138ca81613494565b9050919050565b600060208201905081810360008301526138ea816134b7565b9050919050565b6000602082019050818103600083015261390a816134da565b9050919050565b6000602082019050818103600083015261392a816134fd565b9050919050565b6000602082019050818103600083015261394a81613520565b9050919050565b6000602082019050818103600083015261396a81613543565b9050919050565b6000602082019050818103600083015261398a81613566565b9050919050565b600060208201905081810360008301526139aa81613589565b9050919050565b600060208201905081810360008301526139ca816135ac565b9050919050565b600060208201905081810360008301526139ea816135cf565b9050919050565b60006020820190508181036000830152613a0a816135f2565b9050919050565b60006020820190508181036000830152613a2a81613615565b9050919050565b60006020820190508181036000830152613a4a8161365b565b9050919050565b60006020820190508181036000830152613a6a8161367e565b9050919050565b60006020820190508181036000830152613a8a816136a1565b9050919050565b60006020820190508181036000830152613aaa816136c4565b9050919050565b6000602082019050613ac660008301846136f6565b92915050565b6000613ad6613ae7565b9050613ae28282613dec565b919050565b6000604051905090565b600067ffffffffffffffff821115613b0c57613b0b613f53565b5b613b1582613f96565b9050602081019050919050565b600067ffffffffffffffff821115613b3d57613b3c613f53565b5b613b4682613f96565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bfa82613d6e565b9150613c0583613d6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3a57613c39613e97565b5b828201905092915050565b6000613c5082613d6e565b9150613c5b83613d6e565b925082613c6b57613c6a613ec6565b5b828204905092915050565b6000613c8182613d6e565b9150613c8c83613d6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cc557613cc4613e97565b5b828202905092915050565b6000613cdb82613d6e565b9150613ce683613d6e565b925082821015613cf957613cf8613e97565b5b828203905092915050565b6000613d0f82613d4e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613da5578082015181840152602081019050613d8a565b83811115613db4576000848401525b50505050565b60006002820490506001821680613dd257607f821691505b60208210811415613de657613de5613ef5565b5b50919050565b613df582613f96565b810181811067ffffffffffffffff82111715613e1457613e13613f53565b5b80604052505050565b6000613e2882613d6e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e5b57613e5a613e97565b5b600182019050919050565b6000613e7182613d6e565b9150613e7c83613d6e565b925082613e8c57613e8b613ec6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d61782066726565206d696e742065786365656465642c20796f7520646f6e2760008201527f7420686f6c6420616e796d6f726520746f6b656e730000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6144fe81613d04565b811461450957600080fd5b50565b61451581613d16565b811461452057600080fd5b50565b61452c81613d22565b811461453757600080fd5b50565b61454381613d6e565b811461454e57600080fd5b5056fea2646970667358221220d465598fa88348cb0570c4b2857affc1e3066ab2e46266f3c104ce3f6ec29cd964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636352211e11610123578063a45ba8e7116100ab578063e0a808531161006f578063e0a80853146107d4578063e985e9c5146107fd578063efbd73f41461083a578063f2fde38b14610863578063f3b7d7731461088c57610225565b8063a45ba8e7146106ef578063b071401b1461071a578063b88d4fde14610743578063c87b56dd1461076c578063d5abeb01146107a957610225565b80638da5cb5b116100f25780638da5cb5b1461062957806394354fd01461065457806395d89b411461067f578063a0712d68146106aa578063a22cb465146106c657610225565b80636352211e1461056f57806370a08231146105ac578063715018a6146105e95780637ec4a6591461060057610225565b806323b872dd116101b15780634fdd43cb116101755780634fdd43cb1461049a57806351830227146104c35780635503a0e8146104ee5780635c975abb1461051957806362b99ad41461054457610225565b806323b872dd146103cb5780633ccfd60b146103f457806342842e0e1461040b578063438b63001461043457806344a0d68a1461047157610225565b8063095ea7b3116101f8578063095ea7b3146102fa57806313faede61461032357806316ba10e01461034e57806316c38b3c1461037757806318160ddd146103a057610225565b806301ffc9a71461022a5780630484d71b1461026757806306fdde0314610292578063081812fc146102bd575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906130f2565b6108b5565b60405161025e91906137d4565b60405180910390f35b34801561027357600080fd5b5061027c610997565b604051610289919061374b565b60405180910390f35b34801561029e57600080fd5b506102a76109bd565b6040516102b491906137ef565b60405180910390f35b3480156102c957600080fd5b506102e460048036038101906102df9190613195565b610a4f565b6040516102f1919061374b565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190613085565b610ad4565b005b34801561032f57600080fd5b50610338610bec565b6040516103459190613ab1565b60405180910390f35b34801561035a57600080fd5b506103756004803603810190610370919061314c565b610bf2565b005b34801561038357600080fd5b5061039e600480360381019061039991906130c5565b610c88565b005b3480156103ac57600080fd5b506103b5610d21565b6040516103c29190613ab1565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190612f6f565b610d32565b005b34801561040057600080fd5b50610409610d92565b005b34801561041757600080fd5b50610432600480360381019061042d9190612f6f565b610e8e565b005b34801561044057600080fd5b5061045b60048036038101906104569190612f02565b610eae565b60405161046891906137b2565b60405180910390f35b34801561047d57600080fd5b5061049860048036038101906104939190613195565b610fb9565b005b3480156104a657600080fd5b506104c160048036038101906104bc919061314c565b61103f565b005b3480156104cf57600080fd5b506104d86110d5565b6040516104e591906137d4565b60405180910390f35b3480156104fa57600080fd5b506105036110e8565b60405161051091906137ef565b60405180910390f35b34801561052557600080fd5b5061052e611176565b60405161053b91906137d4565b60405180910390f35b34801561055057600080fd5b50610559611189565b60405161056691906137ef565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613195565b611217565b6040516105a3919061374b565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190612f02565b6112c9565b6040516105e09190613ab1565b60405180910390f35b3480156105f557600080fd5b506105fe611381565b005b34801561060c57600080fd5b506106276004803603810190610622919061314c565b611409565b005b34801561063557600080fd5b5061063e61149f565b60405161064b919061374b565b60405180910390f35b34801561066057600080fd5b506106696114c9565b6040516106769190613ab1565b60405180910390f35b34801561068b57600080fd5b506106946114cf565b6040516106a191906137ef565b60405180910390f35b6106c460048036038101906106bf9190613195565b611561565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190613045565b611873565b005b3480156106fb57600080fd5b50610704611889565b60405161071191906137ef565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190613195565b611917565b005b34801561074f57600080fd5b5061076a60048036038101906107659190612fc2565b61199d565b005b34801561077857600080fd5b50610793600480360381019061078e9190613195565b6119ff565b6040516107a091906137ef565b60405180910390f35b3480156107b557600080fd5b506107be611b58565b6040516107cb9190613ab1565b60405180910390f35b3480156107e057600080fd5b506107fb60048036038101906107f691906130c5565b611b5e565b005b34801561080957600080fd5b50610824600480360381019061081f9190612f2f565b611bf7565b60405161083191906137d4565b60405180910390f35b34801561084657600080fd5b50610861600480360381019061085c91906131ef565b611c8b565b005b34801561086f57600080fd5b5061088a60048036038101906108859190612f02565b611d70565b005b34801561089857600080fd5b506108b360048036038101906108ae9190612f02565b611e68565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610990575061098f82611f28565b5b9050919050565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600080546109cc90613dba565b80601f01602080910402602001604051908101604052809291908181526020018280546109f890613dba565b8015610a455780601f10610a1a57610100808354040283529160200191610a45565b820191906000526020600020905b815481529060010190602001808311610a2857829003601f168201915b5050505050905090565b6000610a5a82611f92565b610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9090613991565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610adf82611217565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790613a11565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b6f611ffe565b73ffffffffffffffffffffffffffffffffffffffff161480610b9e5750610b9d81610b98611ffe565b611bf7565b5b610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490613911565b60405180910390fd5b610be78383612006565b505050565b600b5481565b610bfa611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610c1861149f565b73ffffffffffffffffffffffffffffffffffffffff1614610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c65906139b1565b60405180910390fd5b8060099080519060200190610c84929190612d01565b5050565b610c90611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610cae61149f565b73ffffffffffffffffffffffffffffffffffffffff1614610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb906139b1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000610d2d60076120bf565b905090565b610d43610d3d611ffe565b826120cd565b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613a51565b60405180910390fd5b610d8d8383836121ab565b505050565b610d9a611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610db861149f565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e05906139b1565b60405180910390fd5b6000610e1861149f565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e3b90613736565b60006040518083038185875af1925050503d8060008114610e78576040519150601f19603f3d011682016040523d82523d6000602084013e610e7d565b606091505b5050905080610e8b57600080fd5b50565b610ea98383836040518060200160405280600081525061199d565b505050565b60606000610ebb836112c9565b905060008167ffffffffffffffff811115610ed957610ed8613f53565b5b604051908082528060200260200182016040528015610f075781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f245750600c548211155b15610fad576000610f3483611217565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f995782848381518110610f7e57610f7d613f24565b5b6020026020010181815250508180610f9590613e1d565b9250505b8280610fa490613e1d565b93505050610f13565b82945050505050919050565b610fc1611ffe565b73ffffffffffffffffffffffffffffffffffffffff16610fdf61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102c906139b1565b60405180910390fd5b80600b8190555050565b611047611ffe565b73ffffffffffffffffffffffffffffffffffffffff1661106561149f565b73ffffffffffffffffffffffffffffffffffffffff16146110bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b2906139b1565b60405180910390fd5b80600a90805190602001906110d1929190612d01565b5050565b600e60019054906101000a900460ff1681565b600980546110f590613dba565b80601f016020809104026020016040519081016040528092919081815260200182805461112190613dba565b801561116e5780601f106111435761010080835404028352916020019161116e565b820191906000526020600020905b81548152906001019060200180831161115157829003601f168201915b505050505081565b600e60009054906101000a900460ff1681565b6008805461119690613dba565b80601f01602080910402602001604051908101604052809291908181526020018280546111c290613dba565b801561120f5780601f106111e45761010080835404028352916020019161120f565b820191906000526020600020905b8154815290600101906020018083116111f257829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790613951565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190613931565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611389611ffe565b73ffffffffffffffffffffffffffffffffffffffff166113a761149f565b73ffffffffffffffffffffffffffffffffffffffff16146113fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f4906139b1565b60405180910390fd5b6114076000612412565b565b611411611ffe565b73ffffffffffffffffffffffffffffffffffffffff1661142f61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147c906139b1565b60405180910390fd5b806008908051906020019061149b929190612d01565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546114de90613dba565b80601f016020809104026020016040519081016040528092919081815260200182805461150a90613dba565b80156115575780601f1061152c57610100808354040283529160200191611557565b820191906000526020600020905b81548152906001019060200180831161153a57829003601f168201915b5050505050905090565b80600c548161157060076120bf565b61157a9190613bef565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290613a31565b60405180910390fd5b600e60009054906101000a900460ff161561160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906139d1565b60405180910390fd5b6000600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161166d919061374b565b60206040518083038186803b15801561168557600080fd5b505afa158015611699573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116bd91906131c2565b9050600081141561176e5783600b546116d69190613c76565b341015611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90613a91565b60405180910390fd5b60008411801561172a5750600d548411155b611769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176090613891565b60405180910390fd5b611863565b83600061177b9190613c76565b3410156117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b490613a91565b60405180910390fd5b80846117c8336112c9565b6117d29190613bef565b1115611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613a71565b60405180910390fd5b6000841180156118235750808411155b611862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185990613891565b60405180910390fd5b5b61186d33856124d8565b50505050565b61188561187e611ffe565b8383612518565b5050565b600a805461189690613dba565b80601f01602080910402602001604051908101604052809291908181526020018280546118c290613dba565b801561190f5780601f106118e45761010080835404028352916020019161190f565b820191906000526020600020905b8154815290600101906020018083116118f257829003601f168201915b505050505081565b61191f611ffe565b73ffffffffffffffffffffffffffffffffffffffff1661193d61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198a906139b1565b60405180910390fd5b80600d8190555050565b6119ae6119a8611ffe565b836120cd565b6119ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e490613a51565b60405180910390fd5b6119f984848484612685565b50505050565b6060611a0a82611f92565b611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a40906139f1565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611af757600a8054611a7290613dba565b80601f0160208091040260200160405190810160405280929190818152602001828054611a9e90613dba565b8015611aeb5780601f10611ac057610100808354040283529160200191611aeb565b820191906000526020600020905b815481529060010190602001808311611ace57829003601f168201915b50505050509050611b53565b6000611b016126e1565b90506000815111611b215760405180602001604052806000815250611b4f565b80611b2b84612773565b6009604051602001611b3f93929190613705565b6040516020818303038152906040525b9150505b919050565b600c5481565b611b66611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611b8461149f565b73ffffffffffffffffffffffffffffffffffffffff1614611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd1906139b1565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600c5481611c9a60076120bf565b611ca49190613bef565b1115611ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdc90613a31565b60405180910390fd5b611ced611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611d0b61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d58906139b1565b60405180910390fd5b611d6b82846124d8565b505050565b611d78611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611d9661149f565b73ffffffffffffffffffffffffffffffffffffffff1614611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de3906139b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390613831565b60405180910390fd5b611e6581612412565b50565b611e70611ffe565b73ffffffffffffffffffffffffffffffffffffffff16611e8e61149f565b73ffffffffffffffffffffffffffffffffffffffff1614611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb906139b1565b60405180910390fd5b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661207983611217565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006120d882611f92565b612117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210e906138f1565b60405180910390fd5b600061212283611217565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061216457506121638185611bf7565b5b806121a257508373ffffffffffffffffffffffffffffffffffffffff1661218a84610a4f565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121cb82611217565b73ffffffffffffffffffffffffffffffffffffffff1614612221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221890613851565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612288906138b1565b60405180910390fd5b61229c8383836128d4565b6122a7600082612006565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f79190613cd0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461234e9190613bef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461240d8383836128d9565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612513576124ed60076128de565b612500836124fb60076120bf565b6128f4565b808061250b90613e1d565b9150506124db565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e906138d1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161267891906137d4565b60405180910390a3505050565b6126908484846121ab565b61269c84848484612912565b6126db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d290613811565b60405180910390fd5b50505050565b6060600880546126f090613dba565b80601f016020809104026020016040519081016040528092919081815260200182805461271c90613dba565b80156127695780601f1061273e57610100808354040283529160200191612769565b820191906000526020600020905b81548152906001019060200180831161274c57829003601f168201915b5050505050905090565b606060008214156127bb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128cf565b600082905060005b600082146127ed5780806127d690613e1d565b915050600a826127e69190613c45565b91506127c3565b60008167ffffffffffffffff81111561280957612808613f53565b5b6040519080825280601f01601f19166020018201604052801561283b5781602001600182028036833780820191505090505b5090505b600085146128c8576001826128549190613cd0565b9150600a856128639190613e66565b603061286f9190613bef565b60f81b81838151811061288557612884613f24565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128c19190613c45565b945061283f565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b61290e828260405180602001604052806000815250612aa9565b5050565b60006129338473ffffffffffffffffffffffffffffffffffffffff16612b04565b15612a9c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261295c611ffe565b8786866040518563ffffffff1660e01b815260040161297e9493929190613766565b602060405180830381600087803b15801561299857600080fd5b505af19250505080156129c957506040513d601f19601f820116820180604052508101906129c6919061311f565b60015b612a4c573d80600081146129f9576040519150601f19603f3d011682016040523d82523d6000602084013e6129fe565b606091505b50600081511415612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b90613811565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aa1565b600190505b949350505050565b612ab38383612b27565b612ac06000848484612912565b612aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af690613811565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e90613971565b60405180910390fd5b612ba081611f92565b15612be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd790613871565b60405180910390fd5b612bec600083836128d4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c3c9190613bef565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612cfd600083836128d9565b5050565b828054612d0d90613dba565b90600052602060002090601f016020900481019282612d2f5760008555612d76565b82601f10612d4857805160ff1916838001178555612d76565b82800160010185558215612d76579182015b82811115612d75578251825591602001919060010190612d5a565b5b509050612d839190612d87565b5090565b5b80821115612da0576000816000905550600101612d88565b5090565b6000612db7612db284613af1565b613acc565b905082815260208101848484011115612dd357612dd2613f87565b5b612dde848285613d78565b509392505050565b6000612df9612df484613b22565b613acc565b905082815260208101848484011115612e1557612e14613f87565b5b612e20848285613d78565b509392505050565b600081359050612e37816144f5565b92915050565b600081359050612e4c8161450c565b92915050565b600081359050612e6181614523565b92915050565b600081519050612e7681614523565b92915050565b600082601f830112612e9157612e90613f82565b5b8135612ea1848260208601612da4565b91505092915050565b600082601f830112612ebf57612ebe613f82565b5b8135612ecf848260208601612de6565b91505092915050565b600081359050612ee78161453a565b92915050565b600081519050612efc8161453a565b92915050565b600060208284031215612f1857612f17613f91565b5b6000612f2684828501612e28565b91505092915050565b60008060408385031215612f4657612f45613f91565b5b6000612f5485828601612e28565b9250506020612f6585828601612e28565b9150509250929050565b600080600060608486031215612f8857612f87613f91565b5b6000612f9686828701612e28565b9350506020612fa786828701612e28565b9250506040612fb886828701612ed8565b9150509250925092565b60008060008060808587031215612fdc57612fdb613f91565b5b6000612fea87828801612e28565b9450506020612ffb87828801612e28565b935050604061300c87828801612ed8565b925050606085013567ffffffffffffffff81111561302d5761302c613f8c565b5b61303987828801612e7c565b91505092959194509250565b6000806040838503121561305c5761305b613f91565b5b600061306a85828601612e28565b925050602061307b85828601612e3d565b9150509250929050565b6000806040838503121561309c5761309b613f91565b5b60006130aa85828601612e28565b92505060206130bb85828601612ed8565b9150509250929050565b6000602082840312156130db576130da613f91565b5b60006130e984828501612e3d565b91505092915050565b60006020828403121561310857613107613f91565b5b600061311684828501612e52565b91505092915050565b60006020828403121561313557613134613f91565b5b600061314384828501612e67565b91505092915050565b60006020828403121561316257613161613f91565b5b600082013567ffffffffffffffff8111156131805761317f613f8c565b5b61318c84828501612eaa565b91505092915050565b6000602082840312156131ab576131aa613f91565b5b60006131b984828501612ed8565b91505092915050565b6000602082840312156131d8576131d7613f91565b5b60006131e684828501612eed565b91505092915050565b6000806040838503121561320657613205613f91565b5b600061321485828601612ed8565b925050602061322585828601612e28565b9150509250929050565b600061323b83836136e7565b60208301905092915050565b61325081613d04565b82525050565b600061326182613b78565b61326b8185613ba6565b935061327683613b53565b8060005b838110156132a757815161328e888261322f565b975061329983613b99565b92505060018101905061327a565b5085935050505092915050565b6132bd81613d16565b82525050565b60006132ce82613b83565b6132d88185613bb7565b93506132e8818560208601613d87565b6132f181613f96565b840191505092915050565b600061330782613b8e565b6133118185613bd3565b9350613321818560208601613d87565b61332a81613f96565b840191505092915050565b600061334082613b8e565b61334a8185613be4565b935061335a818560208601613d87565b80840191505092915050565b6000815461337381613dba565b61337d8186613be4565b9450600182166000811461339857600181146133a9576133dc565b60ff198316865281860193506133dc565b6133b285613b63565b60005b838110156133d4578154818901526001820191506020810190506133b5565b838801955050505b50505092915050565b60006133f2603283613bd3565b91506133fd82613fa7565b604082019050919050565b6000613415602683613bd3565b915061342082613ff6565b604082019050919050565b6000613438602583613bd3565b915061344382614045565b604082019050919050565b600061345b601c83613bd3565b915061346682614094565b602082019050919050565b600061347e601483613bd3565b9150613489826140bd565b602082019050919050565b60006134a1602483613bd3565b91506134ac826140e6565b604082019050919050565b60006134c4601983613bd3565b91506134cf82614135565b602082019050919050565b60006134e7602c83613bd3565b91506134f28261415e565b604082019050919050565b600061350a603883613bd3565b9150613515826141ad565b604082019050919050565b600061352d602a83613bd3565b9150613538826141fc565b604082019050919050565b6000613550602983613bd3565b915061355b8261424b565b604082019050919050565b6000613573602083613bd3565b915061357e8261429a565b602082019050919050565b6000613596602c83613bd3565b91506135a1826142c3565b604082019050919050565b60006135b9602083613bd3565b91506135c482614312565b602082019050919050565b60006135dc601783613bd3565b91506135e78261433b565b602082019050919050565b60006135ff602f83613bd3565b915061360a82614364565b604082019050919050565b6000613622602183613bd3565b915061362d826143b3565b604082019050919050565b6000613645600083613bc8565b915061365082614402565b600082019050919050565b6000613668601483613bd3565b915061367382614405565b602082019050919050565b600061368b603183613bd3565b91506136968261442e565b604082019050919050565b60006136ae603583613bd3565b91506136b98261447d565b604082019050919050565b60006136d1601383613bd3565b91506136dc826144cc565b602082019050919050565b6136f081613d6e565b82525050565b6136ff81613d6e565b82525050565b60006137118286613335565b915061371d8285613335565b91506137298284613366565b9150819050949350505050565b600061374182613638565b9150819050919050565b60006020820190506137606000830184613247565b92915050565b600060808201905061377b6000830187613247565b6137886020830186613247565b61379560408301856136f6565b81810360608301526137a781846132c3565b905095945050505050565b600060208201905081810360008301526137cc8184613256565b905092915050565b60006020820190506137e960008301846132b4565b92915050565b6000602082019050818103600083015261380981846132fc565b905092915050565b6000602082019050818103600083015261382a816133e5565b9050919050565b6000602082019050818103600083015261384a81613408565b9050919050565b6000602082019050818103600083015261386a8161342b565b9050919050565b6000602082019050818103600083015261388a8161344e565b9050919050565b600060208201905081810360008301526138aa81613471565b9050919050565b600060208201905081810360008301526138ca81613494565b9050919050565b600060208201905081810360008301526138ea816134b7565b9050919050565b6000602082019050818103600083015261390a816134da565b9050919050565b6000602082019050818103600083015261392a816134fd565b9050919050565b6000602082019050818103600083015261394a81613520565b9050919050565b6000602082019050818103600083015261396a81613543565b9050919050565b6000602082019050818103600083015261398a81613566565b9050919050565b600060208201905081810360008301526139aa81613589565b9050919050565b600060208201905081810360008301526139ca816135ac565b9050919050565b600060208201905081810360008301526139ea816135cf565b9050919050565b60006020820190508181036000830152613a0a816135f2565b9050919050565b60006020820190508181036000830152613a2a81613615565b9050919050565b60006020820190508181036000830152613a4a8161365b565b9050919050565b60006020820190508181036000830152613a6a8161367e565b9050919050565b60006020820190508181036000830152613a8a816136a1565b9050919050565b60006020820190508181036000830152613aaa816136c4565b9050919050565b6000602082019050613ac660008301846136f6565b92915050565b6000613ad6613ae7565b9050613ae28282613dec565b919050565b6000604051905090565b600067ffffffffffffffff821115613b0c57613b0b613f53565b5b613b1582613f96565b9050602081019050919050565b600067ffffffffffffffff821115613b3d57613b3c613f53565b5b613b4682613f96565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bfa82613d6e565b9150613c0583613d6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3a57613c39613e97565b5b828201905092915050565b6000613c5082613d6e565b9150613c5b83613d6e565b925082613c6b57613c6a613ec6565b5b828204905092915050565b6000613c8182613d6e565b9150613c8c83613d6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cc557613cc4613e97565b5b828202905092915050565b6000613cdb82613d6e565b9150613ce683613d6e565b925082821015613cf957613cf8613e97565b5b828203905092915050565b6000613d0f82613d4e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613da5578082015181840152602081019050613d8a565b83811115613db4576000848401525b50505050565b60006002820490506001821680613dd257607f821691505b60208210811415613de657613de5613ef5565b5b50919050565b613df582613f96565b810181811067ffffffffffffffff82111715613e1457613e13613f53565b5b80604052505050565b6000613e2882613d6e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e5b57613e5a613e97565b5b600182019050919050565b6000613e7182613d6e565b9150613e7c83613d6e565b925082613e8c57613e8b613ec6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d61782066726565206d696e742065786365656465642c20796f7520646f6e2760008201527f7420686f6c6420616e796d6f726520746f6b656e730000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6144fe81613d04565b811461450957600080fd5b50565b61451581613d16565b811461452057600080fd5b50565b61452c81613d22565b811461453757600080fd5b50565b61454381613d6e565b811461454e57600080fd5b5056fea2646970667358221220d465598fa88348cb0570c4b2857affc1e3066ab2e46266f3c104ce3f6ec29cd964736f6c63430008070033

Deployed Bytecode Sourcemap

39252:4563:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26055:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39729:78;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27000:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28560:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28083:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39524:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42838:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42944:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40072:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29310:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43157:335;;;;;;;;;;;;;:::i;:::-;;29720:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41150:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42378:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42594:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39669:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39446:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39639:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39413:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26694:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26424:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6487:103;;;;;;;;;;;;;:::i;:::-;;42732:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5836:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39595:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27169:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40167:814;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28853:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39484:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42458:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29976:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41791:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39561:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42291:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29079:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40989:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6745:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43027:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26055:305;26157:4;26209:25;26194:40;;;:11;:40;;;;:105;;;;26266:33;26251:48;;;:11;:48;;;;26194:105;:158;;;;26316:36;26340:11;26316:23;:36::i;:::-;26194:158;26174:178;;26055:305;;;:::o;39729:78::-;;;;;;;;;;;;;:::o;27000:100::-;27054:13;27087:5;27080:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27000:100;:::o;28560:221::-;28636:7;28664:16;28672:7;28664;:16::i;:::-;28656:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28749:15;:24;28765:7;28749:24;;;;;;;;;;;;;;;;;;;;;28742:31;;28560:221;;;:::o;28083:411::-;28164:13;28180:23;28195:7;28180:14;:23::i;:::-;28164:39;;28228:5;28222:11;;:2;:11;;;;28214:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28322:5;28306:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28331:37;28348:5;28355:12;:10;:12::i;:::-;28331:16;:37::i;:::-;28306:62;28284:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28465:21;28474:2;28478:7;28465:8;:21::i;:::-;28153:341;28083:411;;:::o;39524:32::-;;;;:::o;42838:100::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42922:10:::1;42910:9;:22;;;;;;;;;;;;:::i;:::-;;42838:100:::0;:::o;42944:77::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43009:6:::1;43000;;:15;;;;;;;;;;;;;;;;;;42944:77:::0;:::o;40072:89::-;40116:7;40139:16;:6;:14;:16::i;:::-;40132:23;;40072:89;:::o;29310:339::-;29505:41;29524:12;:10;:12::i;:::-;29538:7;29505:18;:41::i;:::-;29497:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29613:28;29623:4;29629:2;29633:7;29613:9;:28::i;:::-;29310:339;;;:::o;43157:335::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43314:7:::1;43335;:5;:7::i;:::-;43327:21;;43356;43327:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43313:69;;;43397:2;43389:11;;;::::0;::::1;;43194:298;43157:335::o:0;29720:185::-;29858:39;29875:4;29881:2;29885:7;29858:39;;;;;;;;;;;;:16;:39::i;:::-;29720:185;;;:::o;41150:635::-;41225:16;41253:23;41279:17;41289:6;41279:9;:17::i;:::-;41253:43;;41303:30;41350:15;41336:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41303:63;;41373:22;41398:1;41373:26;;41406:23;41442:309;41467:15;41449;:33;:64;;;;;41504:9;;41486:14;:27;;41449:64;41442:309;;;41524:25;41552:23;41560:14;41552:7;:23::i;:::-;41524:51;;41611:6;41590:27;;:17;:27;;;41586:131;;;41663:14;41630:13;41644:15;41630:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41690:17;;;;;:::i;:::-;;;;41586:131;41727:16;;;;;:::i;:::-;;;;41515:236;41442:309;;;41766:13;41759:20;;;;;;41150:635;;;:::o;42378:74::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42441:5:::1;42434:4;:12;;;;42378:74:::0;:::o;42594:132::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42702:18:::1;42682:17;:38;;;;;;;;;;;;:::i;:::-;;42594:132:::0;:::o;39669:28::-;;;;;;;;;;;;;:::o;39446:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39639:25::-;;;;;;;;;;;;;:::o;39413:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26694:239::-;26766:7;26786:13;26802:7;:16;26810:7;26802:16;;;;;;;;;;;;;;;;;;;;;26786:32;;26854:1;26837:19;;:5;:19;;;;26829:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26920:5;26913:12;;;26694:239;;;:::o;26424:208::-;26496:7;26541:1;26524:19;;:5;:19;;;;26516:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26608:9;:16;26618:5;26608:16;;;;;;;;;;;;;;;;26601:23;;26424:208;;;:::o;6487:103::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6552:30:::1;6579:1;6552:18;:30::i;:::-;6487:103::o:0;42732:100::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42816:10:::1;42804:9;:22;;;;;;;;;;;;:::i;:::-;;42732:100:::0;:::o;5836:87::-;5882:7;5909:6;;;;;;;;;;;5902:13;;5836:87;:::o;39595:37::-;;;;:::o;27169:104::-;27225:13;27258:7;27251:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27169:104;:::o;40167:814::-;40232:11;40018:9;;40003:11;39984:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39976:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40261:6:::1;;;;;;;;;;;40260:7;40252:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40304:18;40333;;;;;;;;;;;40304:48;;40359:25;40387:10;:20;;;40408:10;40387:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40359:60;;40451:1;40430:17;:22;40427:506;;;40491:11;40484:4;;:18;;;;:::i;:::-;40471:9;:31;;40463:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40557:1;40543:11;:15;:52;;;;;40577:18;;40562:11;:33;;40543:52;40535:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40427:506;;;40670:11;40666:1;:15;;;;:::i;:::-;40653:9;:28;;40645:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40759:17;40744:11;40720:21;40730:10;40720:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;40712:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;40863:1;40849:11;:15;:51;;;;;40883:17;40868:11;:32;;40849:51;40841:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;40427:506;40941:34;40951:10;40963:11;40941:9;:34::i;:::-;40245:736;;40167:814:::0;;:::o;28853:155::-;28948:52;28967:12;:10;:12::i;:::-;28981:8;28991;28948:18;:52::i;:::-;28853:155;;:::o;39484:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42458:130::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42563:19:::1;42542:18;:40;;;;42458:130:::0;:::o;29976:328::-;30151:41;30170:12;:10;:12::i;:::-;30184:7;30151:18;:41::i;:::-;30143:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30257:39;30271:4;30277:2;30281:7;30290:5;30257:13;:39::i;:::-;29976:328;;;;:::o;41791:494::-;41890:13;41931:17;41939:8;41931:7;:17::i;:::-;41915:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;42038:5;42026:17;;:8;;;;;;;;;;;:17;;;42022:64;;;42061:17;42054:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42022:64;42094:28;42125:10;:8;:10::i;:::-;42094:41;;42180:1;42155:14;42149:28;:32;:130;;;;;;;;;;;;;;;;;42217:14;42233:19;:8;:17;:19::i;:::-;42254:9;42200:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42149:130;42142:137;;;41791:494;;;;:::o;39561:29::-;;;;:::o;42291:81::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42360:6:::1;42349:8;;:17;;;;;;;;;;;;;;;;;;42291:81:::0;:::o;29079:164::-;29176:4;29200:18;:25;29219:5;29200:25;;;;;;;;;;;;;;;:35;29226:8;29200:35;;;;;;;;;;;;;;;;;;;;;;;;;29193:42;;29079:164;;;;:::o;40989:155::-;41075:11;40018:9;;40003:11;39984:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39976:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;6067:12:::1;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41105:33:::2;41115:9;41126:11;41105:9;:33::i;:::-;40989:155:::0;;;:::o;6745:201::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6854:1:::1;6834:22;;:8;:22;;;;6826:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6910:28;6929:8;6910:18;:28::i;:::-;6745:201:::0;:::o;43027:124::-;6067:12;:10;:12::i;:::-;6056:23;;:7;:5;:7::i;:::-;:23;;;6048:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43129:16:::1;43108:18;;:37;;;;;;;;;;;;;;;;;;43027:124:::0;:::o;18643:157::-;18728:4;18767:25;18752:40;;;:11;:40;;;;18745:47;;18643:157;;;:::o;31814:127::-;31879:4;31931:1;31903:30;;:7;:16;31911:7;31903:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31896:37;;31814:127;;;:::o;4560:98::-;4613:7;4640:10;4633:17;;4560:98;:::o;35960:174::-;36062:2;36035:15;:24;36051:7;36035:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36118:7;36114:2;36080:46;;36089:23;36104:7;36089:14;:23::i;:::-;36080:46;;;;;;;;;;;;35960:174;;:::o;1164:114::-;1229:7;1256;:14;;;1249:21;;1164:114;;;:::o;32108:348::-;32201:4;32226:16;32234:7;32226;:16::i;:::-;32218:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32302:13;32318:23;32333:7;32318:14;:23::i;:::-;32302:39;;32371:5;32360:16;;:7;:16;;;:52;;;;32380:32;32397:5;32404:7;32380:16;:32::i;:::-;32360:52;:87;;;;32440:7;32416:31;;:20;32428:7;32416:11;:20::i;:::-;:31;;;32360:87;32352:96;;;32108:348;;;;:::o;35217:625::-;35376:4;35349:31;;:23;35364:7;35349:14;:23::i;:::-;:31;;;35341:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35455:1;35441:16;;:2;:16;;;;35433:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35511:39;35532:4;35538:2;35542:7;35511:20;:39::i;:::-;35615:29;35632:1;35636:7;35615:8;:29::i;:::-;35676:1;35657:9;:15;35667:4;35657:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35705:1;35688:9;:13;35698:2;35688:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35736:2;35717:7;:16;35725:7;35717:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35775:7;35771:2;35756:27;;35765:4;35756:27;;;;;;;;;;;;35796:38;35816:4;35822:2;35826:7;35796:19;:38::i;:::-;35217:625;;;:::o;7106:191::-;7180:16;7199:6;;;;;;;;;;;7180:25;;7225:8;7216:6;;:17;;;;;;;;;;;;;;;;;;7280:8;7249:40;;7270:8;7249:40;;;;;;;;;;;;7169:128;7106:191;:::o;43498:204::-;43578:9;43573:124;43597:11;43593:1;:15;43573:124;;;43624:18;:6;:16;:18::i;:::-;43651:38;43661:9;43672:16;:6;:14;:16::i;:::-;43651:9;:38::i;:::-;43610:3;;;;;:::i;:::-;;;;43573:124;;;;43498:204;;:::o;36276:315::-;36431:8;36422:17;;:5;:17;;;;36414:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36518:8;36480:18;:25;36499:5;36480:25;;;;;;;;;;;;;;;:35;36506:8;36480:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36564:8;36542:41;;36557:5;36542:41;;;36574:8;36542:41;;;;;;:::i;:::-;;;;;;;;36276:315;;;:::o;31186:::-;31343:28;31353:4;31359:2;31363:7;31343:9;:28::i;:::-;31390:48;31413:4;31419:2;31423:7;31432:5;31390:22;:48::i;:::-;31382:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;31186:315;;;;:::o;43708:104::-;43768:13;43797:9;43790:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43708:104;:::o;2122:723::-;2178:13;2408:1;2399:5;:10;2395:53;;;2426:10;;;;;;;;;;;;;;;;;;;;;2395:53;2458:12;2473:5;2458:20;;2489:14;2514:78;2529:1;2521:4;:9;2514:78;;2547:8;;;;;:::i;:::-;;;;2578:2;2570:10;;;;;:::i;:::-;;;2514:78;;;2602:19;2634:6;2624:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2602:39;;2652:154;2668:1;2659:5;:10;2652:154;;2696:1;2686:11;;;;;:::i;:::-;;;2763:2;2755:5;:10;;;;:::i;:::-;2742:2;:24;;;;:::i;:::-;2729:39;;2712:6;2719;2712:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2792:2;2783:11;;;;;:::i;:::-;;;2652:154;;;2830:6;2816:21;;;;;2122:723;;;;:::o;38527:126::-;;;;:::o;39038:125::-;;;;:::o;1286:127::-;1393:1;1375:7;:14;;;:19;;;;;;;;;;;1286:127;:::o;32798:110::-;32874:26;32884:2;32888:7;32874:26;;;;;;;;;;;;:9;:26::i;:::-;32798:110;;:::o;37156:799::-;37311:4;37332:15;:2;:13;;;:15::i;:::-;37328:620;;;37384:2;37368:36;;;37405:12;:10;:12::i;:::-;37419:4;37425:7;37434:5;37368:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37364:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37627:1;37610:6;:13;:18;37606:272;;;37653:60;;;;;;;;;;:::i;:::-;;;;;;;;37606:272;37828:6;37822:13;37813:6;37809:2;37805:15;37798:38;37364:529;37501:41;;;37491:51;;;:6;:51;;;;37484:58;;;;;37328:620;37932:4;37925:11;;37156:799;;;;;;;:::o;33135:321::-;33265:18;33271:2;33275:7;33265:5;:18::i;:::-;33316:54;33347:1;33351:2;33355:7;33364:5;33316:22;:54::i;:::-;33294:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33135:321;;;:::o;8537:326::-;8597:4;8854:1;8832:7;:19;;;:23;8825:30;;8537:326;;;:::o;33792:439::-;33886:1;33872:16;;:2;:16;;;;33864:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33945:16;33953:7;33945;:16::i;:::-;33944:17;33936:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34007:45;34036:1;34040:2;34044:7;34007:20;:45::i;:::-;34082:1;34065:9;:13;34075:2;34065:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34113:2;34094:7;:16;34102:7;34094:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34158:7;34154:2;34133:33;;34150:1;34133:33;;;;;;;;;;;;34179:44;34207:1;34211:2;34215:7;34179:19;:44::i;:::-;33792:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:143::-;2334:5;2365:6;2359:13;2350:22;;2381:33;2408:5;2381:33;:::i;:::-;2277:143;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:474::-;2829:6;2837;2886:2;2874:9;2865:7;2861:23;2857:32;2854:119;;;2892:79;;:::i;:::-;2854:119;3012:1;3037:53;3082:7;3073:6;3062:9;3058:22;3037:53;:::i;:::-;3027:63;;2983:117;3139:2;3165:53;3210:7;3201:6;3190:9;3186:22;3165:53;:::i;:::-;3155:63;;3110:118;2761:474;;;;;:::o;3241:619::-;3318:6;3326;3334;3383:2;3371:9;3362:7;3358:23;3354:32;3351:119;;;3389:79;;:::i;:::-;3351:119;3509:1;3534:53;3579:7;3570:6;3559:9;3555:22;3534:53;:::i;:::-;3524:63;;3480:117;3636:2;3662:53;3707:7;3698:6;3687:9;3683:22;3662:53;:::i;:::-;3652:63;;3607:118;3764:2;3790:53;3835:7;3826:6;3815:9;3811:22;3790:53;:::i;:::-;3780:63;;3735:118;3241:619;;;;;:::o;3866:943::-;3961:6;3969;3977;3985;4034:3;4022:9;4013:7;4009:23;4005:33;4002:120;;;4041:79;;:::i;:::-;4002:120;4161:1;4186:53;4231:7;4222:6;4211:9;4207:22;4186:53;:::i;:::-;4176:63;;4132:117;4288:2;4314:53;4359:7;4350:6;4339:9;4335:22;4314:53;:::i;:::-;4304:63;;4259:118;4416:2;4442:53;4487:7;4478:6;4467:9;4463:22;4442:53;:::i;:::-;4432:63;;4387:118;4572:2;4561:9;4557:18;4544:32;4603:18;4595:6;4592:30;4589:117;;;4625:79;;:::i;:::-;4589:117;4730:62;4784:7;4775:6;4764:9;4760:22;4730:62;:::i;:::-;4720:72;;4515:287;3866:943;;;;;;;:::o;4815:468::-;4880:6;4888;4937:2;4925:9;4916:7;4912:23;4908:32;4905:119;;;4943:79;;:::i;:::-;4905:119;5063:1;5088:53;5133:7;5124:6;5113:9;5109:22;5088:53;:::i;:::-;5078:63;;5034:117;5190:2;5216:50;5258:7;5249:6;5238:9;5234:22;5216:50;:::i;:::-;5206:60;;5161:115;4815:468;;;;;:::o;5289:474::-;5357:6;5365;5414:2;5402:9;5393:7;5389:23;5385:32;5382:119;;;5420:79;;:::i;:::-;5382:119;5540:1;5565:53;5610:7;5601:6;5590:9;5586:22;5565:53;:::i;:::-;5555:63;;5511:117;5667:2;5693:53;5738:7;5729:6;5718:9;5714:22;5693:53;:::i;:::-;5683:63;;5638:118;5289:474;;;;;:::o;5769:323::-;5825:6;5874:2;5862:9;5853:7;5849:23;5845:32;5842:119;;;5880:79;;:::i;:::-;5842:119;6000:1;6025:50;6067:7;6058:6;6047:9;6043:22;6025:50;:::i;:::-;6015:60;;5971:114;5769:323;;;;:::o;6098:327::-;6156:6;6205:2;6193:9;6184:7;6180:23;6176:32;6173:119;;;6211:79;;:::i;:::-;6173:119;6331:1;6356:52;6400:7;6391:6;6380:9;6376:22;6356:52;:::i;:::-;6346:62;;6302:116;6098:327;;;;:::o;6431:349::-;6500:6;6549:2;6537:9;6528:7;6524:23;6520:32;6517:119;;;6555:79;;:::i;:::-;6517:119;6675:1;6700:63;6755:7;6746:6;6735:9;6731:22;6700:63;:::i;:::-;6690:73;;6646:127;6431:349;;;;:::o;6786:509::-;6855:6;6904:2;6892:9;6883:7;6879:23;6875:32;6872:119;;;6910:79;;:::i;:::-;6872:119;7058:1;7047:9;7043:17;7030:31;7088:18;7080:6;7077:30;7074:117;;;7110:79;;:::i;:::-;7074:117;7215:63;7270:7;7261:6;7250:9;7246:22;7215:63;:::i;:::-;7205:73;;7001:287;6786:509;;;;:::o;7301:329::-;7360:6;7409:2;7397:9;7388:7;7384:23;7380:32;7377:119;;;7415:79;;:::i;:::-;7377:119;7535:1;7560:53;7605:7;7596:6;7585:9;7581:22;7560:53;:::i;:::-;7550:63;;7506:117;7301:329;;;;:::o;7636:351::-;7706:6;7755:2;7743:9;7734:7;7730:23;7726:32;7723:119;;;7761:79;;:::i;:::-;7723:119;7881:1;7906:64;7962:7;7953:6;7942:9;7938:22;7906:64;:::i;:::-;7896:74;;7852:128;7636:351;;;;:::o;7993:474::-;8061:6;8069;8118:2;8106:9;8097:7;8093:23;8089:32;8086:119;;;8124:79;;:::i;:::-;8086:119;8244:1;8269:53;8314:7;8305:6;8294:9;8290:22;8269:53;:::i;:::-;8259:63;;8215:117;8371:2;8397:53;8442:7;8433:6;8422:9;8418:22;8397:53;:::i;:::-;8387:63;;8342:118;7993:474;;;;;:::o;8473:179::-;8542:10;8563:46;8605:3;8597:6;8563:46;:::i;:::-;8641:4;8636:3;8632:14;8618:28;;8473:179;;;;:::o;8658:118::-;8745:24;8763:5;8745:24;:::i;:::-;8740:3;8733:37;8658:118;;:::o;8812:732::-;8931:3;8960:54;9008:5;8960:54;:::i;:::-;9030:86;9109:6;9104:3;9030:86;:::i;:::-;9023:93;;9140:56;9190:5;9140:56;:::i;:::-;9219:7;9250:1;9235:284;9260:6;9257:1;9254:13;9235:284;;;9336:6;9330:13;9363:63;9422:3;9407:13;9363:63;:::i;:::-;9356:70;;9449:60;9502:6;9449:60;:::i;:::-;9439:70;;9295:224;9282:1;9279;9275:9;9270:14;;9235:284;;;9239:14;9535:3;9528:10;;8936:608;;;8812:732;;;;:::o;9550:109::-;9631:21;9646:5;9631:21;:::i;:::-;9626:3;9619:34;9550:109;;:::o;9665:360::-;9751:3;9779:38;9811:5;9779:38;:::i;:::-;9833:70;9896:6;9891:3;9833:70;:::i;:::-;9826:77;;9912:52;9957:6;9952:3;9945:4;9938:5;9934:16;9912:52;:::i;:::-;9989:29;10011:6;9989:29;:::i;:::-;9984:3;9980:39;9973:46;;9755:270;9665:360;;;;:::o;10031:364::-;10119:3;10147:39;10180:5;10147:39;:::i;:::-;10202:71;10266:6;10261:3;10202:71;:::i;:::-;10195:78;;10282:52;10327:6;10322:3;10315:4;10308:5;10304:16;10282:52;:::i;:::-;10359:29;10381:6;10359:29;:::i;:::-;10354:3;10350:39;10343:46;;10123:272;10031:364;;;;:::o;10401:377::-;10507:3;10535:39;10568:5;10535:39;:::i;:::-;10590:89;10672:6;10667:3;10590:89;:::i;:::-;10583:96;;10688:52;10733:6;10728:3;10721:4;10714:5;10710:16;10688:52;:::i;:::-;10765:6;10760:3;10756:16;10749:23;;10511:267;10401:377;;;;:::o;10808:845::-;10911:3;10948:5;10942:12;10977:36;11003:9;10977:36;:::i;:::-;11029:89;11111:6;11106:3;11029:89;:::i;:::-;11022:96;;11149:1;11138:9;11134:17;11165:1;11160:137;;;;11311:1;11306:341;;;;11127:520;;11160:137;11244:4;11240:9;11229;11225:25;11220:3;11213:38;11280:6;11275:3;11271:16;11264:23;;11160:137;;11306:341;11373:38;11405:5;11373:38;:::i;:::-;11433:1;11447:154;11461:6;11458:1;11455:13;11447:154;;;11535:7;11529:14;11525:1;11520:3;11516:11;11509:35;11585:1;11576:7;11572:15;11561:26;;11483:4;11480:1;11476:12;11471:17;;11447:154;;;11630:6;11625:3;11621:16;11614:23;;11313:334;;11127:520;;10915:738;;10808:845;;;;:::o;11659:366::-;11801:3;11822:67;11886:2;11881:3;11822:67;:::i;:::-;11815:74;;11898:93;11987:3;11898:93;:::i;:::-;12016:2;12011:3;12007:12;12000:19;;11659:366;;;:::o;12031:::-;12173:3;12194:67;12258:2;12253:3;12194:67;:::i;:::-;12187:74;;12270:93;12359:3;12270:93;:::i;:::-;12388:2;12383:3;12379:12;12372:19;;12031:366;;;:::o;12403:::-;12545:3;12566:67;12630:2;12625:3;12566:67;:::i;:::-;12559:74;;12642:93;12731:3;12642:93;:::i;:::-;12760:2;12755:3;12751:12;12744:19;;12403:366;;;:::o;12775:::-;12917:3;12938:67;13002:2;12997:3;12938:67;:::i;:::-;12931:74;;13014:93;13103:3;13014:93;:::i;:::-;13132:2;13127:3;13123:12;13116:19;;12775:366;;;:::o;13147:::-;13289:3;13310:67;13374:2;13369:3;13310:67;:::i;:::-;13303:74;;13386:93;13475:3;13386:93;:::i;:::-;13504:2;13499:3;13495:12;13488:19;;13147:366;;;:::o;13519:::-;13661:3;13682:67;13746:2;13741:3;13682:67;:::i;:::-;13675:74;;13758:93;13847:3;13758:93;:::i;:::-;13876:2;13871:3;13867:12;13860:19;;13519:366;;;:::o;13891:::-;14033:3;14054:67;14118:2;14113:3;14054:67;:::i;:::-;14047:74;;14130:93;14219:3;14130:93;:::i;:::-;14248:2;14243:3;14239:12;14232:19;;13891:366;;;:::o;14263:::-;14405:3;14426:67;14490:2;14485:3;14426:67;:::i;:::-;14419:74;;14502:93;14591:3;14502:93;:::i;:::-;14620:2;14615:3;14611:12;14604:19;;14263:366;;;:::o;14635:::-;14777:3;14798:67;14862:2;14857:3;14798:67;:::i;:::-;14791:74;;14874:93;14963:3;14874:93;:::i;:::-;14992:2;14987:3;14983:12;14976:19;;14635:366;;;:::o;15007:::-;15149:3;15170:67;15234:2;15229:3;15170:67;:::i;:::-;15163:74;;15246:93;15335:3;15246:93;:::i;:::-;15364:2;15359:3;15355:12;15348:19;;15007:366;;;:::o;15379:::-;15521:3;15542:67;15606:2;15601:3;15542:67;:::i;:::-;15535:74;;15618:93;15707:3;15618:93;:::i;:::-;15736:2;15731:3;15727:12;15720:19;;15379:366;;;:::o;15751:::-;15893:3;15914:67;15978:2;15973:3;15914:67;:::i;:::-;15907:74;;15990:93;16079:3;15990:93;:::i;:::-;16108:2;16103:3;16099:12;16092:19;;15751:366;;;:::o;16123:::-;16265:3;16286:67;16350:2;16345:3;16286:67;:::i;:::-;16279:74;;16362:93;16451:3;16362:93;:::i;:::-;16480:2;16475:3;16471:12;16464:19;;16123:366;;;:::o;16495:::-;16637:3;16658:67;16722:2;16717:3;16658:67;:::i;:::-;16651:74;;16734:93;16823:3;16734:93;:::i;:::-;16852:2;16847:3;16843:12;16836:19;;16495:366;;;:::o;16867:::-;17009:3;17030:67;17094:2;17089:3;17030:67;:::i;:::-;17023:74;;17106:93;17195:3;17106:93;:::i;:::-;17224:2;17219:3;17215:12;17208:19;;16867:366;;;:::o;17239:::-;17381:3;17402:67;17466:2;17461:3;17402:67;:::i;:::-;17395:74;;17478:93;17567:3;17478:93;:::i;:::-;17596:2;17591:3;17587:12;17580:19;;17239:366;;;:::o;17611:::-;17753:3;17774:67;17838:2;17833:3;17774:67;:::i;:::-;17767:74;;17850:93;17939:3;17850:93;:::i;:::-;17968:2;17963:3;17959:12;17952:19;;17611:366;;;:::o;17983:398::-;18142:3;18163:83;18244:1;18239:3;18163:83;:::i;:::-;18156:90;;18255:93;18344:3;18255:93;:::i;:::-;18373:1;18368:3;18364:11;18357:18;;17983:398;;;:::o;18387:366::-;18529:3;18550:67;18614:2;18609:3;18550:67;:::i;:::-;18543:74;;18626:93;18715:3;18626:93;:::i;:::-;18744:2;18739:3;18735:12;18728:19;;18387:366;;;:::o;18759:::-;18901:3;18922:67;18986:2;18981:3;18922:67;:::i;:::-;18915:74;;18998:93;19087:3;18998:93;:::i;:::-;19116:2;19111:3;19107:12;19100:19;;18759:366;;;:::o;19131:::-;19273:3;19294:67;19358:2;19353:3;19294:67;:::i;:::-;19287:74;;19370:93;19459:3;19370:93;:::i;:::-;19488:2;19483:3;19479:12;19472:19;;19131:366;;;:::o;19503:::-;19645:3;19666:67;19730:2;19725:3;19666:67;:::i;:::-;19659:74;;19742:93;19831:3;19742:93;:::i;:::-;19860:2;19855:3;19851:12;19844:19;;19503:366;;;:::o;19875:108::-;19952:24;19970:5;19952:24;:::i;:::-;19947:3;19940:37;19875:108;;:::o;19989:118::-;20076:24;20094:5;20076:24;:::i;:::-;20071:3;20064:37;19989:118;;:::o;20113:589::-;20338:3;20360:95;20451:3;20442:6;20360:95;:::i;:::-;20353:102;;20472:95;20563:3;20554:6;20472:95;:::i;:::-;20465:102;;20584:92;20672:3;20663:6;20584:92;:::i;:::-;20577:99;;20693:3;20686:10;;20113:589;;;;;;:::o;20708:379::-;20892:3;20914:147;21057:3;20914:147;:::i;:::-;20907:154;;21078:3;21071:10;;20708:379;;;:::o;21093:222::-;21186:4;21224:2;21213:9;21209:18;21201:26;;21237:71;21305:1;21294:9;21290:17;21281:6;21237:71;:::i;:::-;21093:222;;;;:::o;21321:640::-;21516:4;21554:3;21543:9;21539:19;21531:27;;21568:71;21636:1;21625:9;21621:17;21612:6;21568:71;:::i;:::-;21649:72;21717:2;21706:9;21702:18;21693:6;21649:72;:::i;:::-;21731;21799:2;21788:9;21784:18;21775:6;21731:72;:::i;:::-;21850:9;21844:4;21840:20;21835:2;21824:9;21820:18;21813:48;21878:76;21949:4;21940:6;21878:76;:::i;:::-;21870:84;;21321:640;;;;;;;:::o;21967:373::-;22110:4;22148:2;22137:9;22133:18;22125:26;;22197:9;22191:4;22187:20;22183:1;22172:9;22168:17;22161:47;22225:108;22328:4;22319:6;22225:108;:::i;:::-;22217:116;;21967:373;;;;:::o;22346:210::-;22433:4;22471:2;22460:9;22456:18;22448:26;;22484:65;22546:1;22535:9;22531:17;22522:6;22484:65;:::i;:::-;22346:210;;;;:::o;22562:313::-;22675:4;22713:2;22702:9;22698:18;22690:26;;22762:9;22756:4;22752:20;22748:1;22737:9;22733:17;22726:47;22790:78;22863:4;22854:6;22790:78;:::i;:::-;22782:86;;22562:313;;;;:::o;22881:419::-;23047:4;23085:2;23074:9;23070:18;23062:26;;23134:9;23128:4;23124:20;23120:1;23109:9;23105:17;23098:47;23162:131;23288:4;23162:131;:::i;:::-;23154:139;;22881:419;;;:::o;23306:::-;23472:4;23510:2;23499:9;23495:18;23487:26;;23559:9;23553:4;23549:20;23545:1;23534:9;23530:17;23523:47;23587:131;23713:4;23587:131;:::i;:::-;23579:139;;23306:419;;;:::o;23731:::-;23897:4;23935:2;23924:9;23920:18;23912:26;;23984:9;23978:4;23974:20;23970:1;23959:9;23955:17;23948:47;24012:131;24138:4;24012:131;:::i;:::-;24004:139;;23731:419;;;:::o;24156:::-;24322:4;24360:2;24349:9;24345:18;24337:26;;24409:9;24403:4;24399:20;24395:1;24384:9;24380:17;24373:47;24437:131;24563:4;24437:131;:::i;:::-;24429:139;;24156:419;;;:::o;24581:::-;24747:4;24785:2;24774:9;24770:18;24762:26;;24834:9;24828:4;24824:20;24820:1;24809:9;24805:17;24798:47;24862:131;24988:4;24862:131;:::i;:::-;24854:139;;24581:419;;;:::o;25006:::-;25172:4;25210:2;25199:9;25195:18;25187:26;;25259:9;25253:4;25249:20;25245:1;25234:9;25230:17;25223:47;25287:131;25413:4;25287:131;:::i;:::-;25279:139;;25006:419;;;:::o;25431:::-;25597:4;25635:2;25624:9;25620:18;25612:26;;25684:9;25678:4;25674:20;25670:1;25659:9;25655:17;25648:47;25712:131;25838:4;25712:131;:::i;:::-;25704:139;;25431:419;;;:::o;25856:::-;26022:4;26060:2;26049:9;26045:18;26037:26;;26109:9;26103:4;26099:20;26095:1;26084:9;26080:17;26073:47;26137:131;26263:4;26137:131;:::i;:::-;26129:139;;25856:419;;;:::o;26281:::-;26447:4;26485:2;26474:9;26470:18;26462:26;;26534:9;26528:4;26524:20;26520:1;26509:9;26505:17;26498:47;26562:131;26688:4;26562:131;:::i;:::-;26554:139;;26281:419;;;:::o;26706:::-;26872:4;26910:2;26899:9;26895:18;26887:26;;26959:9;26953:4;26949:20;26945:1;26934:9;26930:17;26923:47;26987:131;27113:4;26987:131;:::i;:::-;26979:139;;26706:419;;;:::o;27131:::-;27297:4;27335:2;27324:9;27320:18;27312:26;;27384:9;27378:4;27374:20;27370:1;27359:9;27355:17;27348:47;27412:131;27538:4;27412:131;:::i;:::-;27404:139;;27131:419;;;:::o;27556:::-;27722:4;27760:2;27749:9;27745:18;27737:26;;27809:9;27803:4;27799:20;27795:1;27784:9;27780:17;27773:47;27837:131;27963:4;27837:131;:::i;:::-;27829:139;;27556:419;;;:::o;27981:::-;28147:4;28185:2;28174:9;28170:18;28162:26;;28234:9;28228:4;28224:20;28220:1;28209:9;28205:17;28198:47;28262:131;28388:4;28262:131;:::i;:::-;28254:139;;27981:419;;;:::o;28406:::-;28572:4;28610:2;28599:9;28595:18;28587:26;;28659:9;28653:4;28649:20;28645:1;28634:9;28630:17;28623:47;28687:131;28813:4;28687:131;:::i;:::-;28679:139;;28406:419;;;:::o;28831:::-;28997:4;29035:2;29024:9;29020:18;29012:26;;29084:9;29078:4;29074:20;29070:1;29059:9;29055:17;29048:47;29112:131;29238:4;29112:131;:::i;:::-;29104:139;;28831:419;;;:::o;29256:::-;29422:4;29460:2;29449:9;29445:18;29437:26;;29509:9;29503:4;29499:20;29495:1;29484:9;29480:17;29473:47;29537:131;29663:4;29537:131;:::i;:::-;29529:139;;29256:419;;;:::o;29681:::-;29847:4;29885:2;29874:9;29870:18;29862:26;;29934:9;29928:4;29924:20;29920:1;29909:9;29905:17;29898:47;29962:131;30088:4;29962:131;:::i;:::-;29954:139;;29681:419;;;:::o;30106:::-;30272:4;30310:2;30299:9;30295:18;30287:26;;30359:9;30353:4;30349:20;30345:1;30334:9;30330:17;30323:47;30387:131;30513:4;30387:131;:::i;:::-;30379:139;;30106:419;;;:::o;30531:::-;30697:4;30735:2;30724:9;30720:18;30712:26;;30784:9;30778:4;30774:20;30770:1;30759:9;30755:17;30748:47;30812:131;30938:4;30812:131;:::i;:::-;30804:139;;30531:419;;;:::o;30956:::-;31122:4;31160:2;31149:9;31145:18;31137:26;;31209:9;31203:4;31199:20;31195:1;31184:9;31180:17;31173:47;31237:131;31363:4;31237:131;:::i;:::-;31229:139;;30956:419;;;:::o;31381:::-;31547:4;31585:2;31574:9;31570:18;31562:26;;31634:9;31628:4;31624:20;31620:1;31609:9;31605:17;31598:47;31662:131;31788:4;31662:131;:::i;:::-;31654:139;;31381:419;;;:::o;31806:222::-;31899:4;31937:2;31926:9;31922:18;31914:26;;31950:71;32018:1;32007:9;32003:17;31994:6;31950:71;:::i;:::-;31806:222;;;;:::o;32034:129::-;32068:6;32095:20;;:::i;:::-;32085:30;;32124:33;32152:4;32144:6;32124:33;:::i;:::-;32034:129;;;:::o;32169:75::-;32202:6;32235:2;32229:9;32219:19;;32169:75;:::o;32250:307::-;32311:4;32401:18;32393:6;32390:30;32387:56;;;32423:18;;:::i;:::-;32387:56;32461:29;32483:6;32461:29;:::i;:::-;32453:37;;32545:4;32539;32535:15;32527:23;;32250:307;;;:::o;32563:308::-;32625:4;32715:18;32707:6;32704:30;32701:56;;;32737:18;;:::i;:::-;32701:56;32775:29;32797:6;32775:29;:::i;:::-;32767:37;;32859:4;32853;32849:15;32841:23;;32563:308;;;:::o;32877:132::-;32944:4;32967:3;32959:11;;32997:4;32992:3;32988:14;32980:22;;32877:132;;;:::o;33015:141::-;33064:4;33087:3;33079:11;;33110:3;33107:1;33100:14;33144:4;33141:1;33131:18;33123:26;;33015:141;;;:::o;33162:114::-;33229:6;33263:5;33257:12;33247:22;;33162:114;;;:::o;33282:98::-;33333:6;33367:5;33361:12;33351:22;;33282:98;;;:::o;33386:99::-;33438:6;33472:5;33466:12;33456:22;;33386:99;;;:::o;33491:113::-;33561:4;33593;33588:3;33584:14;33576:22;;33491:113;;;:::o;33610:184::-;33709:11;33743:6;33738:3;33731:19;33783:4;33778:3;33774:14;33759:29;;33610:184;;;;:::o;33800:168::-;33883:11;33917:6;33912:3;33905:19;33957:4;33952:3;33948:14;33933:29;;33800:168;;;;:::o;33974:147::-;34075:11;34112:3;34097:18;;33974:147;;;;:::o;34127:169::-;34211:11;34245:6;34240:3;34233:19;34285:4;34280:3;34276:14;34261:29;;34127:169;;;;:::o;34302:148::-;34404:11;34441:3;34426:18;;34302:148;;;;:::o;34456:305::-;34496:3;34515:20;34533:1;34515:20;:::i;:::-;34510:25;;34549:20;34567:1;34549:20;:::i;:::-;34544:25;;34703:1;34635:66;34631:74;34628:1;34625:81;34622:107;;;34709:18;;:::i;:::-;34622:107;34753:1;34750;34746:9;34739:16;;34456:305;;;;:::o;34767:185::-;34807:1;34824:20;34842:1;34824:20;:::i;:::-;34819:25;;34858:20;34876:1;34858:20;:::i;:::-;34853:25;;34897:1;34887:35;;34902:18;;:::i;:::-;34887:35;34944:1;34941;34937:9;34932:14;;34767:185;;;;:::o;34958:348::-;34998:7;35021:20;35039:1;35021:20;:::i;:::-;35016:25;;35055:20;35073:1;35055:20;:::i;:::-;35050:25;;35243:1;35175:66;35171:74;35168:1;35165:81;35160:1;35153:9;35146:17;35142:105;35139:131;;;35250:18;;:::i;:::-;35139:131;35298:1;35295;35291:9;35280:20;;34958:348;;;;:::o;35312:191::-;35352:4;35372:20;35390:1;35372:20;:::i;:::-;35367:25;;35406:20;35424:1;35406:20;:::i;:::-;35401:25;;35445:1;35442;35439:8;35436:34;;;35450:18;;:::i;:::-;35436:34;35495:1;35492;35488:9;35480:17;;35312:191;;;;:::o;35509:96::-;35546:7;35575:24;35593:5;35575:24;:::i;:::-;35564:35;;35509:96;;;:::o;35611:90::-;35645:7;35688:5;35681:13;35674:21;35663:32;;35611:90;;;:::o;35707:149::-;35743:7;35783:66;35776:5;35772:78;35761:89;;35707:149;;;:::o;35862:126::-;35899:7;35939:42;35932:5;35928:54;35917:65;;35862:126;;;:::o;35994:77::-;36031:7;36060:5;36049:16;;35994:77;;;:::o;36077:154::-;36161:6;36156:3;36151;36138:30;36223:1;36214:6;36209:3;36205:16;36198:27;36077:154;;;:::o;36237:307::-;36305:1;36315:113;36329:6;36326:1;36323:13;36315:113;;;36414:1;36409:3;36405:11;36399:18;36395:1;36390:3;36386:11;36379:39;36351:2;36348:1;36344:10;36339:15;;36315:113;;;36446:6;36443:1;36440:13;36437:101;;;36526:1;36517:6;36512:3;36508:16;36501:27;36437:101;36286:258;36237:307;;;:::o;36550:320::-;36594:6;36631:1;36625:4;36621:12;36611:22;;36678:1;36672:4;36668:12;36699:18;36689:81;;36755:4;36747:6;36743:17;36733:27;;36689:81;36817:2;36809:6;36806:14;36786:18;36783:38;36780:84;;;36836:18;;:::i;:::-;36780:84;36601:269;36550:320;;;:::o;36876:281::-;36959:27;36981:4;36959:27;:::i;:::-;36951:6;36947:40;37089:6;37077:10;37074:22;37053:18;37041:10;37038:34;37035:62;37032:88;;;37100:18;;:::i;:::-;37032:88;37140:10;37136:2;37129:22;36919:238;36876:281;;:::o;37163:233::-;37202:3;37225:24;37243:5;37225:24;:::i;:::-;37216:33;;37271:66;37264:5;37261:77;37258:103;;;37341:18;;:::i;:::-;37258:103;37388:1;37381:5;37377:13;37370:20;;37163:233;;;:::o;37402:176::-;37434:1;37451:20;37469:1;37451:20;:::i;:::-;37446:25;;37485:20;37503:1;37485:20;:::i;:::-;37480:25;;37524:1;37514:35;;37529:18;;:::i;:::-;37514:35;37570:1;37567;37563:9;37558:14;;37402:176;;;;:::o;37584:180::-;37632:77;37629:1;37622:88;37729:4;37726:1;37719:15;37753:4;37750:1;37743:15;37770:180;37818:77;37815:1;37808:88;37915:4;37912:1;37905:15;37939:4;37936:1;37929:15;37956:180;38004:77;38001:1;37994:88;38101:4;38098:1;38091:15;38125:4;38122:1;38115:15;38142:180;38190:77;38187:1;38180:88;38287:4;38284:1;38277:15;38311:4;38308:1;38301:15;38328:180;38376:77;38373:1;38366:88;38473:4;38470:1;38463:15;38497:4;38494:1;38487:15;38514:117;38623:1;38620;38613:12;38637:117;38746:1;38743;38736:12;38760:117;38869:1;38866;38859:12;38883:117;38992:1;38989;38982:12;39006:102;39047:6;39098:2;39094:7;39089:2;39082:5;39078:14;39074:28;39064:38;;39006:102;;;:::o;39114:237::-;39254:34;39250:1;39242:6;39238:14;39231:58;39323:20;39318:2;39310:6;39306:15;39299:45;39114:237;:::o;39357:225::-;39497:34;39493:1;39485:6;39481:14;39474:58;39566:8;39561:2;39553:6;39549:15;39542:33;39357:225;:::o;39588:224::-;39728:34;39724:1;39716:6;39712:14;39705:58;39797:7;39792:2;39784:6;39780:15;39773:32;39588:224;:::o;39818:178::-;39958:30;39954:1;39946:6;39942:14;39935:54;39818:178;:::o;40002:170::-;40142:22;40138:1;40130:6;40126:14;40119:46;40002:170;:::o;40178:223::-;40318:34;40314:1;40306:6;40302:14;40295:58;40387:6;40382:2;40374:6;40370:15;40363:31;40178:223;:::o;40407:175::-;40547:27;40543:1;40535:6;40531:14;40524:51;40407:175;:::o;40588:231::-;40728:34;40724:1;40716:6;40712:14;40705:58;40797:14;40792:2;40784:6;40780:15;40773:39;40588:231;:::o;40825:243::-;40965:34;40961:1;40953:6;40949:14;40942:58;41034:26;41029:2;41021:6;41017:15;41010:51;40825:243;:::o;41074:229::-;41214:34;41210:1;41202:6;41198:14;41191:58;41283:12;41278:2;41270:6;41266:15;41259:37;41074:229;:::o;41309:228::-;41449:34;41445:1;41437:6;41433:14;41426:58;41518:11;41513:2;41505:6;41501:15;41494:36;41309:228;:::o;41543:182::-;41683:34;41679:1;41671:6;41667:14;41660:58;41543:182;:::o;41731:231::-;41871:34;41867:1;41859:6;41855:14;41848:58;41940:14;41935:2;41927:6;41923:15;41916:39;41731:231;:::o;41968:182::-;42108:34;42104:1;42096:6;42092:14;42085:58;41968:182;:::o;42156:173::-;42296:25;42292:1;42284:6;42280:14;42273:49;42156:173;:::o;42335:234::-;42475:34;42471:1;42463:6;42459:14;42452:58;42544:17;42539:2;42531:6;42527:15;42520:42;42335:234;:::o;42575:220::-;42715:34;42711:1;42703:6;42699:14;42692:58;42784:3;42779:2;42771:6;42767:15;42760:28;42575:220;:::o;42801:114::-;;:::o;42921:170::-;43061:22;43057:1;43049:6;43045:14;43038:46;42921:170;:::o;43097:236::-;43237:34;43233:1;43225:6;43221:14;43214:58;43306:19;43301:2;43293:6;43289:15;43282:44;43097:236;:::o;43339:240::-;43479:34;43475:1;43467:6;43463:14;43456:58;43548:23;43543:2;43535:6;43531:15;43524:48;43339:240;:::o;43585:169::-;43725:21;43721:1;43713:6;43709:14;43702:45;43585:169;:::o;43760:122::-;43833:24;43851:5;43833:24;:::i;:::-;43826:5;43823:35;43813:63;;43872:1;43869;43862:12;43813:63;43760:122;:::o;43888:116::-;43958:21;43973:5;43958:21;:::i;:::-;43951:5;43948:32;43938:60;;43994:1;43991;43984:12;43938:60;43888:116;:::o;44010:120::-;44082:23;44099:5;44082:23;:::i;:::-;44075:5;44072:34;44062:62;;44120:1;44117;44110:12;44062:62;44010:120;:::o;44136:122::-;44209:24;44227:5;44209:24;:::i;:::-;44202:5;44199:35;44189:63;;44248:1;44245;44238:12;44189:63;44136:122;:::o

Swarm Source

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