ETH Price: $2,670.18 (+1.25%)
Gas: 0.89 Gwei

Token

Metaflexer (MTFLXR)
 

Overview

Max Total Supply

3,333 MTFLXR

Holders

711

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 MTFLXR
0xdafe9399ad9f641bcd386959052d649df3dbba4f
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:
Metaflexer

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-26
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.9;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 v4.4.1 (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 `IERC721.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 v4.4.1 (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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// 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: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 overriden 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 = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/AzukiNext.sol



pragma solidity >=0.8.9 <0.9.0;




contract Metaflexer is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  string public uriSuffix = '.json';
  string public hiddenMetadataUri;

  address public t1=0xfB92b565BbE89e6bd0A15fE24Fb4CA43BC023973;
  address public t2=0x8bcC6329cA83c3104829847eF96720948D9Fad7E;
  address public t3=0xd1DB75786B5581bAf2974a949247fbf41D1dAa99;
  
  uint256 public cost;
  uint256 public maxSupply; 
  uint256 public maxMintAmount;
  uint256 public saleStatus;

  bool public revealed;
  bool public upgradeEnabled;

  address public signerAddress;

  mapping(uint256 => address) public collectionIDaddress; 
  mapping(uint256 => uint256) public tokenIDbaseID;
  mapping(uint256 => string)  public baseIDbaseURI;


  constructor() ERC721A("Metaflexer", "MTFLXR") {
    cost = 0.08 ether;
    maxSupply = 10000;
    maxMintAmount = 5;  
    signerAddress = 0xDFd3eB6Cb999D4fB2c5a19dE889208216BCc06A4;  
    setHiddenMetadataUri("https://ipfs.filebase.io/ipfs/QmQBjenMLZKrccwkaf4rGVgGjqJY3U2hNkqA7pgSZB8tKC");
    _safeMint(_msgSender(), 1);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(tx.origin == msg.sender, "The caller is another contract");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmount, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function whitelistMint(uint256 _mintAmount, bytes memory sig) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(saleStatus==1, "The whitelist sale is not enabled!");
    require(verify(sig, _msgSender()), "Sorry, but you are not in WL");
    require(_numberMinted(_msgSender()) + _mintAmount <= maxMintAmount,"Exceeded max available to purchase");
    _safeMint(_msgSender(), _mintAmount);
  }

  function publicMint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(saleStatus==2, "Public mint disabled");
    require(_numberMinted(_msgSender()) + _mintAmount <= maxMintAmount,"exceeds max per address");
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

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

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

        ownedTokenIndex++;
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }


  function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }


  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;
    }
    uint256 tokenBase = tokenIDbaseID[_tokenId];
    return  string(abi.encodePacked(baseIDbaseURI[tokenBase], _tokenId.toString(), uriSuffix));
        
  }



function getMintPrice() public view returns (uint256) {
        return cost;    
}


//*******************ADMIN AREA********************

  function setSignerAddress(address newSigner) public onlyOwner {
      signerAddress = newSigner;
  }

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

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

  function setMaxMintAmount(uint256 _maxMintAmount) public onlyOwner {
    maxMintAmount = _maxMintAmount;
  }

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

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


    function setSaleStatus(uint256 _status) public onlyOwner {
    saleStatus = _status;
  }

    function DynamicSupply(uint256 _newSupply) public onlyOwner {
        require(_newSupply < maxSupply, "Max supply 10 000");
        require(_newSupply > totalSupply(), "New supply must be higher than total supply");
        maxSupply = _newSupply;
    }

    function setUpgradeEnabled(bool _upgradeEnabled) public onlyOwner {
        upgradeEnabled = _upgradeEnabled;
    }

  function withdraw() public onlyOwner nonReentrant {

    (bool hs, ) = payable(t1).call{value: address(this).balance * 10 / 100}('');
    require(hs);

    (bool vs, ) = payable(t2).call{value: address(this).balance * 50 / 100}('');
    require(vs);

    (bool os, ) = payable(t3).call{value: address(this).balance}('');
    require(os);
  }

  function _baseURI() internal view virtual override returns (string memory) {
    uint256 tokenBase = tokenIDbaseID[0];
    return  string(abi.encodePacked(baseIDbaseURI[tokenBase]));
  }


//*****************************SIGNATURE*********************************

function getMessageHash(address _message) public pure returns(bytes32) 
{ 
    return keccak256(abi.encodePacked(_message)); 
} 
 
function getMessageHashEth(bytes32 _sender) public pure returns(bytes32) 
{ 
    bytes memory prefix = "\x19Ethereum Signed Message:\n32"; 
    return keccak256(abi.encodePacked(prefix,_sender)); 
} 
 
function verify(bytes memory _signature, address sender) public view returns(bool) 
{ 
    bytes32 messageHas = getMessageHash(sender); 
    bytes32 messageHashEth = getMessageHashEth(messageHas);     
    return recoverSigner(messageHashEth, _signature) == signerAddress; 
 
} 
 
function recoverSigner(bytes32 _messageHash, bytes memory _signature) public pure returns (address) 
{ 
    (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature); 
    return ecrecover(_messageHash, v ,r, s); 
} 
 
function splitSignature(bytes memory _sig) public pure returns (bytes32 r, bytes32 s, uint8 v) 
{ 
    require(_sig.length == 65, "invalid signature length"); 
     
    assembly { 
        r := mload(add(_sig, 32)) 
        s := mload(add(_sig, 64)) 
        v := byte(0, mload(add(_sig, 96))) 
    } 
} 

function upgrade(uint256 _tokenID, uint256 _collectionID) public {
    require(upgradeEnabled == true, "Upgrade is not enabled yet");
    require(ownerOf(_tokenID) == msg.sender, "You are not the owner of NFT");
    uint256 tokenOwns = IERC721(collectionIDaddress[_collectionID]).balanceOf(msg.sender); 
    require(tokenOwns > 0, 'Only owner...');
    tokenIDbaseID[_tokenID] = _collectionID;
}

function setCollectionID(uint256 _collectionID, address _contractAddress, string memory _baseURL) public onlyOwner {
   collectionIDaddress[_collectionID] = _contractAddress;
   baseIDbaseURI[_collectionID] = _baseURL;
}


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"uint256","name":"_newSupply","type":"uint256"}],"name":"DynamicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"baseIDbaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collectionIDaddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_message","type":"address"}],"name":"getMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_sender","type":"bytes32"}],"name":"getMessageHashEth","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMintAmount","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"},{"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_messageHash","type":"bytes32"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"recoverSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"pure","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":[],"name":"saleStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_collectionID","type":"uint256"},{"internalType":"address","name":"_contractAddress","type":"address"},{"internalType":"string","name":"_baseURL","type":"string"}],"name":"setCollectionID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_upgradeEnabled","type":"bool"}],"name":"setUpgradeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"splitSignature","outputs":[{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIDbaseID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_tokenID","type":"uint256"},{"internalType":"uint256","name":"_collectionID","type":"uint256"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upgradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"address","name":"sender","type":"address"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000a7d565b5073fb92b565bbe89e6bd0a15fe24fb4ca43bc023973600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738bcc6329ca83c3104829847ef96720948d9fad7e600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d1db75786b5581baf2974a949247fbf41d1daa99600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200015e57600080fd5b506040518060400160405280600a81526020017f4d657461666c65786572000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4d54464c585200000000000000000000000000000000000000000000000000008152508160029080519060200190620001e392919062000a7d565b508060039080519060200190620001fc92919062000a7d565b506200020d6200030460201b60201c565b600081905550505062000235620002296200030d60201b60201c565b6200031560201b60201c565b600160098190555067011c37937e080000600f81905550612710601081905550600560118190555073dfd3eb6cb999d4fb2c5a19de889208216bcc06a4601360026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002dc6040518060800160405280604c81526020016200691e604c9139620003db60201b60201c565b620002fe620002f06200030d60201b60201c565b60016200048660201b60201c565b62000e01565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003eb6200030d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000411620004ac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200046a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004619062000b8e565b60405180910390fd5b80600b90805190602001906200048292919062000a7d565b5050565b620004a8828260405180602001604052806000815250620004d660201b60201c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620004eb8383836001620004f060201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156200055e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156200059a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620005af6000868387620008ec60201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620007875750620007868773ffffffffffffffffffffffffffffffffffffffff16620008f260201b62002ecf1760201c565b5b156200085a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200080560008884806001019550886200090560201b60201c565b6200083c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156200078e5782600054146200085457600080fd5b620008c7565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156200085b575b816000819055505050620008e5600086838762000a7760201b60201c565b5050505050565b50505050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620009336200030d60201b60201c565b8786866040518563ffffffff1660e01b815260040162000957949392919062000cb4565b602060405180830381600087803b1580156200097257600080fd5b505af1925050508015620009a657506040513d601f19601f82011682018060405250810190620009a3919062000d6a565b60015b62000a24573d8060008114620009d9576040519150601f19603f3d011682016040523d82523d6000602084013e620009de565b606091505b5060008151141562000a1c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b82805462000a8b9062000dcb565b90600052602060002090601f01602090048101928262000aaf576000855562000afb565b82601f1062000aca57805160ff191683800117855562000afb565b8280016001018555821562000afb579182015b8281111562000afa57825182559160200191906001019062000add565b5b50905062000b0a919062000b0e565b5090565b5b8082111562000b2957600081600090555060010162000b0f565b5090565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000b7660208362000b2d565b915062000b838262000b3e565b602082019050919050565b6000602082019050818103600083015262000ba98162000b67565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bdd8262000bb0565b9050919050565b62000bef8162000bd0565b82525050565b6000819050919050565b62000c0a8162000bf5565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000c4c57808201518184015260208101905062000c2f565b8381111562000c5c576000848401525b50505050565b6000601f19601f8301169050919050565b600062000c808262000c10565b62000c8c818562000c1b565b935062000c9e81856020860162000c2c565b62000ca98162000c62565b840191505092915050565b600060808201905062000ccb600083018762000be4565b62000cda602083018662000be4565b62000ce9604083018562000bff565b818103606083015262000cfd818462000c73565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d448162000d0d565b811462000d5057600080fd5b50565b60008151905062000d648162000d39565b92915050565b60006020828403121562000d835762000d8262000d08565b5b600062000d938482850162000d53565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000de457607f821691505b6020821081141562000dfb5762000dfa62000d9c565b5b50919050565b615b0d8062000e116000396000f3fe6080604052600436106103355760003560e01c806370a08231116101ab578063a7f93ebd116100f7578063e0a8085311610095578063f29f15af1161006f578063f29f15af14610c4a578063f2fde38b14610c73578063f9020e3314610c9c578063fb5343f314610cc757610335565b8063e0a8085314610bbb578063e985e9c514610be4578063efbd73f414610c2157610335565b8063bbf4bdb0116100d1578063bbf4bdb014610aeb578063c87b56dd14610b28578063cfad78b114610b65578063d5abeb0114610b9057610335565b8063a7f93ebd14610a6c578063b88d4fde14610a97578063baf2f86814610ac057610335565b806395d89b41116101645780639e852f751161013e5780639e852f75146109bd578063a22cb465146109d9578063a45ba8e714610a02578063a7bb580314610a2d57610335565b806395d89b411461092c57806397aba7f9146109575780639d140fec1461099457610335565b806370a082311461081c578063715018a61461085957806372291c87146108705780638cf0e21e146108ad5780638da5cb5b146108d8578063932f00d71461090357610335565b8063239c70ae1161028557806344a0d68a1161022357806351830227116101fd578063518302271461075e5780635503a0e8146107895780635b7633d0146107b45780636352211e146107df57610335565b806344a0d68a146106e3578063451450ec1461070c5780634fdd43cb1461073557610335565b80633ccfd60b1161025f5780633ccfd60b146106295780633d3ac1b51461064057806342842e0e1461067d578063438b6300146106a657610335565b8063239c70ae146105b957806323b872dd146105e45780632db115441461060d57610335565b8063095ea7b3116102f257806316ba10e0116102cc57806316ba10e0146104ff57806318160ddd146105285780631f5ac1b2146105535780631f7ccc1c1461059057610335565b8063095ea7b31461046e57806311923e751461049757806313faede6146104d457610335565b806301ffc9a71461033a578063046dc16614610377578063048646f8146103a057806306fdde03146103dd578063081812fc14610408578063088a4ed014610445575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190614190565b610cf2565b60405161036e91906141d8565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190614251565b610dd4565b005b3480156103ac57600080fd5b506103c760048036038101906103c291906142b4565b610e94565b6040516103d491906142f0565b60405180910390f35b3480156103e957600080fd5b506103f2610eac565b6040516103ff91906143a4565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906142b4565b610f3e565b60405161043c91906143d5565b60405180910390f35b34801561045157600080fd5b5061046c600480360381019061046791906142b4565b610fba565b005b34801561047a57600080fd5b50610495600480360381019061049091906143f0565b611040565b005b3480156104a357600080fd5b506104be60048036038101906104b99190614466565b61114b565b6040516104cb91906144a2565b60405180910390f35b3480156104e057600080fd5b506104e96111b7565b6040516104f691906142f0565b60405180910390f35b34801561050b57600080fd5b50610526600480360381019061052191906145f2565b6111bd565b005b34801561053457600080fd5b5061053d611253565b60405161054a91906142f0565b60405180910390f35b34801561055f57600080fd5b5061057a60048036038101906105759190614251565b61126a565b60405161058791906144a2565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b2919061463b565b61129a565b005b3480156105c557600080fd5b506105ce611395565b6040516105db91906142f0565b60405180910390f35b3480156105f057600080fd5b5061060b600480360381019061060691906146aa565b61139b565b005b610627600480360381019061062291906142b4565b6113ab565b005b34801561063557600080fd5b5061063e6115cd565b005b34801561064c57600080fd5b506106676004803603810190610662919061479e565b61189c565b60405161067491906141d8565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f91906146aa565b61191b565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190614251565b61193b565b6040516106da91906148b8565b60405180910390f35b3480156106ef57600080fd5b5061070a600480360381019061070591906142b4565b611a4b565b005b34801561071857600080fd5b50610733600480360381019061072e91906148da565b611ad1565b005b34801561074157600080fd5b5061075c600480360381019061075791906145f2565b611cbd565b005b34801561076a57600080fd5b50610773611d53565b60405161078091906141d8565b60405180910390f35b34801561079557600080fd5b5061079e611d66565b6040516107ab91906143a4565b60405180910390f35b3480156107c057600080fd5b506107c9611df4565b6040516107d691906143d5565b60405180910390f35b3480156107eb57600080fd5b50610806600480360381019061080191906142b4565b611e1a565b60405161081391906143d5565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190614251565b611e30565b60405161085091906142f0565b60405180910390f35b34801561086557600080fd5b5061086e611f00565b005b34801561087c57600080fd5b50610897600480360381019061089291906142b4565b611f88565b6040516108a491906143d5565b60405180910390f35b3480156108b957600080fd5b506108c2611fbb565b6040516108cf91906141d8565b60405180910390f35b3480156108e457600080fd5b506108ed611fce565b6040516108fa91906143d5565b60405180910390f35b34801561090f57600080fd5b5061092a600480360381019061092591906142b4565b611ff8565b005b34801561093857600080fd5b5061094161210b565b60405161094e91906143a4565b60405180910390f35b34801561096357600080fd5b5061097e6004803603810190610979919061491a565b61219d565b60405161098b91906143d5565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b691906149a2565b61220c565b005b6109d760048036038101906109d291906149cf565b6122a5565b005b3480156109e557600080fd5b50610a0060048036038101906109fb9190614a2b565b612518565b005b348015610a0e57600080fd5b50610a17612690565b604051610a2491906143a4565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f9190614a6b565b61271e565b604051610a6393929190614ad0565b60405180910390f35b348015610a7857600080fd5b50610a81612786565b604051610a8e91906142f0565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab99190614b07565b612790565b005b348015610acc57600080fd5b50610ad561280c565b604051610ae291906143d5565b60405180910390f35b348015610af757600080fd5b50610b126004803603810190610b0d91906142b4565b612832565b604051610b1f91906143a4565b60405180910390f35b348015610b3457600080fd5b50610b4f6004803603810190610b4a91906142b4565b6128d2565b604051610b5c91906143a4565b60405180910390f35b348015610b7157600080fd5b50610b7a612a2a565b604051610b8791906143d5565b60405180910390f35b348015610b9c57600080fd5b50610ba5612a50565b604051610bb291906142f0565b60405180910390f35b348015610bc757600080fd5b50610be26004803603810190610bdd91906149a2565b612a56565b005b348015610bf057600080fd5b50610c0b6004803603810190610c069190614b8a565b612aef565b604051610c1891906141d8565b60405180910390f35b348015610c2d57600080fd5b50610c486004803603810190610c439190614bca565b612b83565b005b348015610c5657600080fd5b50610c716004803603810190610c6c91906142b4565b612d25565b005b348015610c7f57600080fd5b50610c9a6004803603810190610c959190614251565b612dab565b005b348015610ca857600080fd5b50610cb1612ea3565b604051610cbe91906142f0565b60405180910390f35b348015610cd357600080fd5b50610cdc612ea9565b604051610ce991906143d5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610dbd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610dcd5750610dcc82612ee2565b5b9050919050565b610ddc612f4c565b73ffffffffffffffffffffffffffffffffffffffff16610dfa611fce565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790614c56565b60405180910390fd5b80601360026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915090505481565b606060028054610ebb90614ca5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee790614ca5565b8015610f345780601f10610f0957610100808354040283529160200191610f34565b820191906000526020600020905b815481529060010190602001808311610f1757829003601f168201915b5050505050905090565b6000610f4982612f54565b610f7f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610fc2612f4c565b73ffffffffffffffffffffffffffffffffffffffff16610fe0611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d90614c56565b60405180910390fd5b8060118190555050565b600061104b82611e1a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110b3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166110d2612f4c565b73ffffffffffffffffffffffffffffffffffffffff16141580156111045750611102816110fd612f4c565b612aef565b155b1561113b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611146838383612fa2565b505050565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a33320000000081525090508083604051602001611199929190614d3f565b60405160208183030381529060405280519060200120915050919050565b600f5481565b6111c5612f4c565b73ffffffffffffffffffffffffffffffffffffffff166111e3611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123090614c56565b60405180910390fd5b80600a908051906020019061124f92919061403e565b5050565b600061125d613054565b6001546000540303905090565b60008160405160200161127d9190614daf565b604051602081830303815290604052805190602001209050919050565b6112a2612f4c565b73ffffffffffffffffffffffffffffffffffffffff166112c0611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90614c56565b60405180910390fd5b816014600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060166000858152602001908152602001600020908051906020019061138f92919061403e565b50505050565b60115481565b6113a683838361305d565b505050565b803373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190614e16565b60405180910390fd5b60008111801561142c57506011548111155b61146b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146290614e82565b60405180910390fd5b60105481611477611253565b6114819190614ed1565b11156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990614f73565b60405180910390fd5b8180600f546114d19190614f93565b341015611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90615039565b60405180910390fd5b600260125414611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f906150a5565b60405180910390fd5b6011548361156c611567612f4c565b61354e565b6115769190614ed1565b11156115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90615111565b60405180910390fd5b6115c86115c2612f4c565b8461361e565b505050565b6115d5612f4c565b73ffffffffffffffffffffffffffffffffffffffff166115f3611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090614c56565b60405180910390fd5b6002600954141561168f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116869061517d565b60405180910390fd5b60026009819055506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166064600a476116e19190614f93565b6116eb91906151cc565b6040516116f790615223565b60006040518083038185875af1925050503d8060008114611734576040519150601f19603f3d011682016040523d82523d6000602084013e611739565b606091505b505090508061174757600080fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646032476117919190614f93565b61179b91906151cc565b6040516117a790615223565b60006040518083038185875af1925050503d80600081146117e4576040519150601f19603f3d011682016040523d82523d6000602084013e6117e9565b606091505b50509050806117f757600080fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161183f90615223565b60006040518083038185875af1925050503d806000811461187c576040519150601f19603f3d011682016040523d82523d6000602084013e611881565b606091505b505090508061188f57600080fd5b5050506001600981905550565b6000806118a88361126a565b905060006118b58261114b565b9050601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118fa828761219d565b73ffffffffffffffffffffffffffffffffffffffff16149250505092915050565b61193683838360405180602001604052806000815250612790565b505050565b6060600061194883611e30565b905060008167ffffffffffffffff811115611966576119656144c7565b5b6040519080825280602002602001820160405280156119945781602001602082028036833780820191505090505b50905060006119a1613054565b905060005b83811080156119b6575060105482105b15611a3f5760006119c683611e1a565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a2b5782848381518110611a1057611a0f615238565b5b6020026020010181815250508180611a2790615267565b9250505b8280611a3690615267565b935050506119a6565b82945050505050919050565b611a53612f4c565b73ffffffffffffffffffffffffffffffffffffffff16611a71611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90614c56565b60405180910390fd5b80600f8190555050565b60011515601360019054906101000a900460ff16151514611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e906152fc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16611b4783611e1a565b73ffffffffffffffffffffffffffffffffffffffff1614611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490615368565b60405180910390fd5b60006014600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611c0b91906143d5565b60206040518083038186803b158015611c2357600080fd5b505afa158015611c37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5b919061539d565b905060008111611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790615416565b60405180910390fd5b816015600085815260200190815260200160002081905550505050565b611cc5612f4c565b73ffffffffffffffffffffffffffffffffffffffff16611ce3611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090614c56565b60405180910390fd5b80600b9080519060200190611d4f92919061403e565b5050565b601360009054906101000a900460ff1681565b600a8054611d7390614ca5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9f90614ca5565b8015611dec5780601f10611dc157610100808354040283529160200191611dec565b820191906000526020600020905b815481529060010190602001808311611dcf57829003601f168201915b505050505081565b601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611e258261363c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e98576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611f08612f4c565b73ffffffffffffffffffffffffffffffffffffffff16611f26611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7390614c56565b60405180910390fd5b611f8660006138cb565b565b60146020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360019054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612000612f4c565b73ffffffffffffffffffffffffffffffffffffffff1661201e611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90614c56565b60405180910390fd5b60105481106120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90615482565b60405180910390fd5b6120c0611253565b8111612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f890615514565b60405180910390fd5b8060108190555050565b60606003805461211a90614ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461214690614ca5565b80156121935780601f1061216857610100808354040283529160200191612193565b820191906000526020600020905b81548152906001019060200180831161217657829003601f168201915b5050505050905090565b6000806000806121ac8561271e565b925092509250600186828585604051600081526020016040526040516121d59493929190615534565b6020604051602081039080840390855afa1580156121f7573d6000803e3d6000fd5b50505060206040510351935050505092915050565b612214612f4c565b73ffffffffffffffffffffffffffffffffffffffff16612232611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f90614c56565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b813373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90614e16565b60405180910390fd5b60008111801561232657506011548111155b612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90614e82565b60405180910390fd5b60105481612371611253565b61237b9190614ed1565b11156123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b390614f73565b60405180910390fd5b8280600f546123cb9190614f93565b34101561240d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240490615039565b60405180910390fd5b600160125414612452576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612449906155eb565b60405180910390fd5b6124638361245e612f4c565b61189c565b6124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249990615657565b60405180910390fd5b601154846124b66124b1612f4c565b61354e565b6124c09190614ed1565b1115612501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f8906156e9565b60405180910390fd5b61251261250c612f4c565b8561361e565b50505050565b612520612f4c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612585576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612592612f4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661263f612f4c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161268491906141d8565b60405180910390a35050565b600b805461269d90614ca5565b80601f01602080910402602001604051908101604052809291908181526020018280546126c990614ca5565b80156127165780601f106126eb57610100808354040283529160200191612716565b820191906000526020600020905b8154815290600101906020018083116126f957829003601f168201915b505050505081565b60008060006041845114612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90615755565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b6000600f54905090565b61279b84848461305d565b6127ba8373ffffffffffffffffffffffffffffffffffffffff16612ecf565b80156127cf57506127cd84848484613991565b155b15612806576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6016602052806000526040600020600091509050805461285190614ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461287d90614ca5565b80156128ca5780601f1061289f576101008083540402835291602001916128ca565b820191906000526020600020905b8154815290600101906020018083116128ad57829003601f168201915b505050505081565b60606128dd82612f54565b61291c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612913906157e7565b60405180910390fd5b60001515601360009054906101000a900460ff16151514156129ca57600b805461294590614ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461297190614ca5565b80156129be5780601f10612993576101008083540402835291602001916129be565b820191906000526020600020905b8154815290600101906020018083116129a157829003601f168201915b50505050509050612a25565b600060156000848152602001908152602001600020549050601660008281526020019081526020016000206129fe84613af1565b600a604051602001612a12939291906158d7565b6040516020818303038152906040529150505b919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b612a5e612f4c565b73ffffffffffffffffffffffffffffffffffffffff16612a7c611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac990614c56565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b813373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be990614e16565b60405180910390fd5b600081118015612c0457506011548111155b612c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3a90614e82565b60405180910390fd5b60105481612c4f611253565b612c599190614ed1565b1115612c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9190614f73565b60405180910390fd5b612ca2612f4c565b73ffffffffffffffffffffffffffffffffffffffff16612cc0611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0d90614c56565b60405180910390fd5b612d20828461361e565b505050565b612d2d612f4c565b73ffffffffffffffffffffffffffffffffffffffff16612d4b611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9890614c56565b60405180910390fd5b8060128190555050565b612db3612f4c565b73ffffffffffffffffffffffffffffffffffffffff16612dd1611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1e90614c56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8e9061597a565b60405180910390fd5b612ea0816138cb565b50565b60125481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612f5f613054565b11158015612f6e575060005482105b8015612f9b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006130688261363c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661308f612f4c565b73ffffffffffffffffffffffffffffffffffffffff1614806130c257506130c182600001516130bc612f4c565b612aef565b5b8061310757506130d0612f4c565b73ffffffffffffffffffffffffffffffffffffffff166130ef84610f3e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613140576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146131a9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613210576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61321d8585856001613c52565b61322d6000848460000151612fa2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156134de576000548110156134dd5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135478585856001613c58565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135b6576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b613638828260405180602001604052806000815250613c5e565b5050565b6136446140c4565b600082905080613652613054565b11158015613661575060005481105b15613894576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161389257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146137765780925050506138c6565b5b60011561389157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461388c5780925050506138c6565b613777565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139b7612f4c565b8786866040518563ffffffff1660e01b81526004016139d994939291906159e4565b602060405180830381600087803b1580156139f357600080fd5b505af1925050508015613a2457506040513d601f19601f82011682018060405250810190613a219190615a45565b60015b613a9e573d8060008114613a54576040519150601f19603f3d011682016040523d82523d6000602084013e613a59565b606091505b50600081511415613a96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613b39576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c4d565b600082905060005b60008214613b6b578080613b5490615267565b915050600a82613b6491906151cc565b9150613b41565b60008167ffffffffffffffff811115613b8757613b866144c7565b5b6040519080825280601f01601f191660200182016040528015613bb95781602001600182028036833780820191505090505b5090505b60008514613c4657600182613bd29190615a72565b9150600a85613be19190615aa6565b6030613bed9190614ed1565b60f81b818381518110613c0357613c02615238565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613c3f91906151cc565b9450613bbd565b8093505050505b919050565b50505050565b50505050565b613c6b8383836001613c70565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613cdd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613d18576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613d256000868387613c52565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613eef5750613eee8773ffffffffffffffffffffffffffffffffffffffff16612ecf565b5b15613fb5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613f646000888480600101955088613991565b613f9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613ef5578260005414613fb057600080fd5b614021565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613fb6575b8160008190555050506140376000868387613c58565b5050505050565b82805461404a90614ca5565b90600052602060002090601f01602090048101928261406c57600085556140b3565b82601f1061408557805160ff19168380011785556140b3565b828001600101855582156140b3579182015b828111156140b2578251825591602001919060010190614097565b5b5090506140c09190614107565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115614120576000816000905550600101614108565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61416d81614138565b811461417857600080fd5b50565b60008135905061418a81614164565b92915050565b6000602082840312156141a6576141a561412e565b5b60006141b48482850161417b565b91505092915050565b60008115159050919050565b6141d2816141bd565b82525050565b60006020820190506141ed60008301846141c9565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061421e826141f3565b9050919050565b61422e81614213565b811461423957600080fd5b50565b60008135905061424b81614225565b92915050565b6000602082840312156142675761426661412e565b5b60006142758482850161423c565b91505092915050565b6000819050919050565b6142918161427e565b811461429c57600080fd5b50565b6000813590506142ae81614288565b92915050565b6000602082840312156142ca576142c961412e565b5b60006142d88482850161429f565b91505092915050565b6142ea8161427e565b82525050565b600060208201905061430560008301846142e1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561434557808201518184015260208101905061432a565b83811115614354576000848401525b50505050565b6000601f19601f8301169050919050565b60006143768261430b565b6143808185614316565b9350614390818560208601614327565b6143998161435a565b840191505092915050565b600060208201905081810360008301526143be818461436b565b905092915050565b6143cf81614213565b82525050565b60006020820190506143ea60008301846143c6565b92915050565b600080604083850312156144075761440661412e565b5b60006144158582860161423c565b92505060206144268582860161429f565b9150509250929050565b6000819050919050565b61444381614430565b811461444e57600080fd5b50565b6000813590506144608161443a565b92915050565b60006020828403121561447c5761447b61412e565b5b600061448a84828501614451565b91505092915050565b61449c81614430565b82525050565b60006020820190506144b76000830184614493565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6144ff8261435a565b810181811067ffffffffffffffff8211171561451e5761451d6144c7565b5b80604052505050565b6000614531614124565b905061453d82826144f6565b919050565b600067ffffffffffffffff82111561455d5761455c6144c7565b5b6145668261435a565b9050602081019050919050565b82818337600083830152505050565b600061459561459084614542565b614527565b9050828152602081018484840111156145b1576145b06144c2565b5b6145bc848285614573565b509392505050565b600082601f8301126145d9576145d86144bd565b5b81356145e9848260208601614582565b91505092915050565b6000602082840312156146085761460761412e565b5b600082013567ffffffffffffffff81111561462657614625614133565b5b614632848285016145c4565b91505092915050565b6000806000606084860312156146545761465361412e565b5b60006146628682870161429f565b93505060206146738682870161423c565b925050604084013567ffffffffffffffff81111561469457614693614133565b5b6146a0868287016145c4565b9150509250925092565b6000806000606084860312156146c3576146c261412e565b5b60006146d18682870161423c565b93505060206146e28682870161423c565b92505060406146f38682870161429f565b9150509250925092565b600067ffffffffffffffff821115614718576147176144c7565b5b6147218261435a565b9050602081019050919050565b600061474161473c846146fd565b614527565b90508281526020810184848401111561475d5761475c6144c2565b5b614768848285614573565b509392505050565b600082601f830112614785576147846144bd565b5b813561479584826020860161472e565b91505092915050565b600080604083850312156147b5576147b461412e565b5b600083013567ffffffffffffffff8111156147d3576147d2614133565b5b6147df85828601614770565b92505060206147f08582860161423c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61482f8161427e565b82525050565b60006148418383614826565b60208301905092915050565b6000602082019050919050565b6000614865826147fa565b61486f8185614805565b935061487a83614816565b8060005b838110156148ab5781516148928882614835565b975061489d8361484d565b92505060018101905061487e565b5085935050505092915050565b600060208201905081810360008301526148d2818461485a565b905092915050565b600080604083850312156148f1576148f061412e565b5b60006148ff8582860161429f565b92505060206149108582860161429f565b9150509250929050565b600080604083850312156149315761493061412e565b5b600061493f85828601614451565b925050602083013567ffffffffffffffff8111156149605761495f614133565b5b61496c85828601614770565b9150509250929050565b61497f816141bd565b811461498a57600080fd5b50565b60008135905061499c81614976565b92915050565b6000602082840312156149b8576149b761412e565b5b60006149c68482850161498d565b91505092915050565b600080604083850312156149e6576149e561412e565b5b60006149f48582860161429f565b925050602083013567ffffffffffffffff811115614a1557614a14614133565b5b614a2185828601614770565b9150509250929050565b60008060408385031215614a4257614a4161412e565b5b6000614a508582860161423c565b9250506020614a618582860161498d565b9150509250929050565b600060208284031215614a8157614a8061412e565b5b600082013567ffffffffffffffff811115614a9f57614a9e614133565b5b614aab84828501614770565b91505092915050565b600060ff82169050919050565b614aca81614ab4565b82525050565b6000606082019050614ae56000830186614493565b614af26020830185614493565b614aff6040830184614ac1565b949350505050565b60008060008060808587031215614b2157614b2061412e565b5b6000614b2f8782880161423c565b9450506020614b408782880161423c565b9350506040614b518782880161429f565b925050606085013567ffffffffffffffff811115614b7257614b71614133565b5b614b7e87828801614770565b91505092959194509250565b60008060408385031215614ba157614ba061412e565b5b6000614baf8582860161423c565b9250506020614bc08582860161423c565b9150509250929050565b60008060408385031215614be157614be061412e565b5b6000614bef8582860161429f565b9250506020614c008582860161423c565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c40602083614316565b9150614c4b82614c0a565b602082019050919050565b60006020820190508181036000830152614c6f81614c33565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cbd57607f821691505b60208210811415614cd157614cd0614c76565b5b50919050565b600081519050919050565b600081905092915050565b6000614cf882614cd7565b614d028185614ce2565b9350614d12818560208601614327565b80840191505092915050565b6000819050919050565b614d39614d3482614430565b614d1e565b82525050565b6000614d4b8285614ced565b9150614d578284614d28565b6020820191508190509392505050565b60008160601b9050919050565b6000614d7f82614d67565b9050919050565b6000614d9182614d74565b9050919050565b614da9614da482614213565b614d86565b82525050565b6000614dbb8284614d98565b60148201915081905092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614e00601e83614316565b9150614e0b82614dca565b602082019050919050565b60006020820190508181036000830152614e2f81614df3565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614e6c601483614316565b9150614e7782614e36565b602082019050919050565b60006020820190508181036000830152614e9b81614e5f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614edc8261427e565b9150614ee78361427e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f1c57614f1b614ea2565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614f5d601483614316565b9150614f6882614f27565b602082019050919050565b60006020820190508181036000830152614f8c81614f50565b9050919050565b6000614f9e8261427e565b9150614fa98361427e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fe257614fe1614ea2565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000615023601383614316565b915061502e82614fed565b602082019050919050565b6000602082019050818103600083015261505281615016565b9050919050565b7f5075626c6963206d696e742064697361626c6564000000000000000000000000600082015250565b600061508f601483614316565b915061509a82615059565b602082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b7f65786365656473206d6178207065722061646472657373000000000000000000600082015250565b60006150fb601783614316565b9150615106826150c5565b602082019050919050565b6000602082019050818103600083015261512a816150ee565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000615167601f83614316565b915061517282615131565b602082019050919050565b600060208201905081810360008301526151968161515a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151d78261427e565b91506151e28361427e565b9250826151f2576151f161519d565b5b828204905092915050565b50565b600061520d600083614ce2565b9150615218826151fd565b600082019050919050565b600061522e82615200565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006152728261427e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152a5576152a4614ea2565b5b600182019050919050565b7f55706772616465206973206e6f7420656e61626c656420796574000000000000600082015250565b60006152e6601a83614316565b91506152f1826152b0565b602082019050919050565b60006020820190508181036000830152615315816152d9565b9050919050565b7f596f7520617265206e6f7420746865206f776e6572206f66204e465400000000600082015250565b6000615352601c83614316565b915061535d8261531c565b602082019050919050565b6000602082019050818103600083015261538181615345565b9050919050565b60008151905061539781614288565b92915050565b6000602082840312156153b3576153b261412e565b5b60006153c184828501615388565b91505092915050565b7f4f6e6c79206f776e65722e2e2e00000000000000000000000000000000000000600082015250565b6000615400600d83614316565b915061540b826153ca565b602082019050919050565b6000602082019050818103600083015261542f816153f3565b9050919050565b7f4d617820737570706c7920313020303030000000000000000000000000000000600082015250565b600061546c601183614316565b915061547782615436565b602082019050919050565b6000602082019050818103600083015261549b8161545f565b9050919050565b7f4e657720737570706c79206d75737420626520686967686572207468616e207460008201527f6f74616c20737570706c79000000000000000000000000000000000000000000602082015250565b60006154fe602b83614316565b9150615509826154a2565b604082019050919050565b6000602082019050818103600083015261552d816154f1565b9050919050565b60006080820190506155496000830187614493565b6155566020830186614ac1565b6155636040830185614493565b6155706060830184614493565b95945050505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b60006155d5602283614316565b91506155e082615579565b604082019050919050565b60006020820190508181036000830152615604816155c8565b9050919050565b7f536f7272792c2062757420796f7520617265206e6f7420696e20574c00000000600082015250565b6000615641601c83614316565b915061564c8261560b565b602082019050919050565b6000602082019050818103600083015261567081615634565b9050919050565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b60006156d3602283614316565b91506156de82615677565b604082019050919050565b60006020820190508181036000830152615702816156c6565b9050919050565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b600061573f601883614316565b915061574a82615709565b602082019050919050565b6000602082019050818103600083015261576e81615732565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006157d1602f83614316565b91506157dc82615775565b604082019050919050565b60006020820190508181036000830152615800816157c4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461583481614ca5565b61583e8186615807565b94506001821660008114615859576001811461586a5761589d565b60ff1983168652818601935061589d565b61587385615812565b60005b8381101561589557815481890152600182019150602081019050615876565b838801955050505b50505092915050565b60006158b18261430b565b6158bb8185615807565b93506158cb818560208601614327565b80840191505092915050565b60006158e38286615827565b91506158ef82856158a6565b91506158fb8284615827565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615964602683614316565b915061596f82615908565b604082019050919050565b6000602082019050818103600083015261599381615957565b9050919050565b600082825260208201905092915050565b60006159b682614cd7565b6159c0818561599a565b93506159d0818560208601614327565b6159d98161435a565b840191505092915050565b60006080820190506159f960008301876143c6565b615a0660208301866143c6565b615a1360408301856142e1565b8181036060830152615a2581846159ab565b905095945050505050565b600081519050615a3f81614164565b92915050565b600060208284031215615a5b57615a5a61412e565b5b6000615a6984828501615a30565b91505092915050565b6000615a7d8261427e565b9150615a888361427e565b925082821015615a9b57615a9a614ea2565b5b828203905092915050565b6000615ab18261427e565b9150615abc8361427e565b925082615acc57615acb61519d565b5b82820690509291505056fea26469706673582212207a91793c016ca28b64e57bc1c0a08cee2f34fc4775ff49f813d24b4f3f7f9b3d64736f6c6343000809003368747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d51426a656e4d4c5a4b726363776b61663472475667476a714a59335532684e6b7141377067535a4238744b43

Deployed Bytecode

0x6080604052600436106103355760003560e01c806370a08231116101ab578063a7f93ebd116100f7578063e0a8085311610095578063f29f15af1161006f578063f29f15af14610c4a578063f2fde38b14610c73578063f9020e3314610c9c578063fb5343f314610cc757610335565b8063e0a8085314610bbb578063e985e9c514610be4578063efbd73f414610c2157610335565b8063bbf4bdb0116100d1578063bbf4bdb014610aeb578063c87b56dd14610b28578063cfad78b114610b65578063d5abeb0114610b9057610335565b8063a7f93ebd14610a6c578063b88d4fde14610a97578063baf2f86814610ac057610335565b806395d89b41116101645780639e852f751161013e5780639e852f75146109bd578063a22cb465146109d9578063a45ba8e714610a02578063a7bb580314610a2d57610335565b806395d89b411461092c57806397aba7f9146109575780639d140fec1461099457610335565b806370a082311461081c578063715018a61461085957806372291c87146108705780638cf0e21e146108ad5780638da5cb5b146108d8578063932f00d71461090357610335565b8063239c70ae1161028557806344a0d68a1161022357806351830227116101fd578063518302271461075e5780635503a0e8146107895780635b7633d0146107b45780636352211e146107df57610335565b806344a0d68a146106e3578063451450ec1461070c5780634fdd43cb1461073557610335565b80633ccfd60b1161025f5780633ccfd60b146106295780633d3ac1b51461064057806342842e0e1461067d578063438b6300146106a657610335565b8063239c70ae146105b957806323b872dd146105e45780632db115441461060d57610335565b8063095ea7b3116102f257806316ba10e0116102cc57806316ba10e0146104ff57806318160ddd146105285780631f5ac1b2146105535780631f7ccc1c1461059057610335565b8063095ea7b31461046e57806311923e751461049757806313faede6146104d457610335565b806301ffc9a71461033a578063046dc16614610377578063048646f8146103a057806306fdde03146103dd578063081812fc14610408578063088a4ed014610445575b600080fd5b34801561034657600080fd5b50610361600480360381019061035c9190614190565b610cf2565b60405161036e91906141d8565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190614251565b610dd4565b005b3480156103ac57600080fd5b506103c760048036038101906103c291906142b4565b610e94565b6040516103d491906142f0565b60405180910390f35b3480156103e957600080fd5b506103f2610eac565b6040516103ff91906143a4565b60405180910390f35b34801561041457600080fd5b5061042f600480360381019061042a91906142b4565b610f3e565b60405161043c91906143d5565b60405180910390f35b34801561045157600080fd5b5061046c600480360381019061046791906142b4565b610fba565b005b34801561047a57600080fd5b50610495600480360381019061049091906143f0565b611040565b005b3480156104a357600080fd5b506104be60048036038101906104b99190614466565b61114b565b6040516104cb91906144a2565b60405180910390f35b3480156104e057600080fd5b506104e96111b7565b6040516104f691906142f0565b60405180910390f35b34801561050b57600080fd5b50610526600480360381019061052191906145f2565b6111bd565b005b34801561053457600080fd5b5061053d611253565b60405161054a91906142f0565b60405180910390f35b34801561055f57600080fd5b5061057a60048036038101906105759190614251565b61126a565b60405161058791906144a2565b60405180910390f35b34801561059c57600080fd5b506105b760048036038101906105b2919061463b565b61129a565b005b3480156105c557600080fd5b506105ce611395565b6040516105db91906142f0565b60405180910390f35b3480156105f057600080fd5b5061060b600480360381019061060691906146aa565b61139b565b005b610627600480360381019061062291906142b4565b6113ab565b005b34801561063557600080fd5b5061063e6115cd565b005b34801561064c57600080fd5b506106676004803603810190610662919061479e565b61189c565b60405161067491906141d8565b60405180910390f35b34801561068957600080fd5b506106a4600480360381019061069f91906146aa565b61191b565b005b3480156106b257600080fd5b506106cd60048036038101906106c89190614251565b61193b565b6040516106da91906148b8565b60405180910390f35b3480156106ef57600080fd5b5061070a600480360381019061070591906142b4565b611a4b565b005b34801561071857600080fd5b50610733600480360381019061072e91906148da565b611ad1565b005b34801561074157600080fd5b5061075c600480360381019061075791906145f2565b611cbd565b005b34801561076a57600080fd5b50610773611d53565b60405161078091906141d8565b60405180910390f35b34801561079557600080fd5b5061079e611d66565b6040516107ab91906143a4565b60405180910390f35b3480156107c057600080fd5b506107c9611df4565b6040516107d691906143d5565b60405180910390f35b3480156107eb57600080fd5b50610806600480360381019061080191906142b4565b611e1a565b60405161081391906143d5565b60405180910390f35b34801561082857600080fd5b50610843600480360381019061083e9190614251565b611e30565b60405161085091906142f0565b60405180910390f35b34801561086557600080fd5b5061086e611f00565b005b34801561087c57600080fd5b50610897600480360381019061089291906142b4565b611f88565b6040516108a491906143d5565b60405180910390f35b3480156108b957600080fd5b506108c2611fbb565b6040516108cf91906141d8565b60405180910390f35b3480156108e457600080fd5b506108ed611fce565b6040516108fa91906143d5565b60405180910390f35b34801561090f57600080fd5b5061092a600480360381019061092591906142b4565b611ff8565b005b34801561093857600080fd5b5061094161210b565b60405161094e91906143a4565b60405180910390f35b34801561096357600080fd5b5061097e6004803603810190610979919061491a565b61219d565b60405161098b91906143d5565b60405180910390f35b3480156109a057600080fd5b506109bb60048036038101906109b691906149a2565b61220c565b005b6109d760048036038101906109d291906149cf565b6122a5565b005b3480156109e557600080fd5b50610a0060048036038101906109fb9190614a2b565b612518565b005b348015610a0e57600080fd5b50610a17612690565b604051610a2491906143a4565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f9190614a6b565b61271e565b604051610a6393929190614ad0565b60405180910390f35b348015610a7857600080fd5b50610a81612786565b604051610a8e91906142f0565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab99190614b07565b612790565b005b348015610acc57600080fd5b50610ad561280c565b604051610ae291906143d5565b60405180910390f35b348015610af757600080fd5b50610b126004803603810190610b0d91906142b4565b612832565b604051610b1f91906143a4565b60405180910390f35b348015610b3457600080fd5b50610b4f6004803603810190610b4a91906142b4565b6128d2565b604051610b5c91906143a4565b60405180910390f35b348015610b7157600080fd5b50610b7a612a2a565b604051610b8791906143d5565b60405180910390f35b348015610b9c57600080fd5b50610ba5612a50565b604051610bb291906142f0565b60405180910390f35b348015610bc757600080fd5b50610be26004803603810190610bdd91906149a2565b612a56565b005b348015610bf057600080fd5b50610c0b6004803603810190610c069190614b8a565b612aef565b604051610c1891906141d8565b60405180910390f35b348015610c2d57600080fd5b50610c486004803603810190610c439190614bca565b612b83565b005b348015610c5657600080fd5b50610c716004803603810190610c6c91906142b4565b612d25565b005b348015610c7f57600080fd5b50610c9a6004803603810190610c959190614251565b612dab565b005b348015610ca857600080fd5b50610cb1612ea3565b604051610cbe91906142f0565b60405180910390f35b348015610cd357600080fd5b50610cdc612ea9565b604051610ce991906143d5565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610dbd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610dcd5750610dcc82612ee2565b5b9050919050565b610ddc612f4c565b73ffffffffffffffffffffffffffffffffffffffff16610dfa611fce565b73ffffffffffffffffffffffffffffffffffffffff1614610e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4790614c56565b60405180910390fd5b80601360026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60156020528060005260406000206000915090505481565b606060028054610ebb90614ca5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee790614ca5565b8015610f345780601f10610f0957610100808354040283529160200191610f34565b820191906000526020600020905b815481529060010190602001808311610f1757829003601f168201915b5050505050905090565b6000610f4982612f54565b610f7f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610fc2612f4c565b73ffffffffffffffffffffffffffffffffffffffff16610fe0611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102d90614c56565b60405180910390fd5b8060118190555050565b600061104b82611e1a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110b3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166110d2612f4c565b73ffffffffffffffffffffffffffffffffffffffff16141580156111045750611102816110fd612f4c565b612aef565b155b1561113b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611146838383612fa2565b505050565b6000806040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a33320000000081525090508083604051602001611199929190614d3f565b60405160208183030381529060405280519060200120915050919050565b600f5481565b6111c5612f4c565b73ffffffffffffffffffffffffffffffffffffffff166111e3611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123090614c56565b60405180910390fd5b80600a908051906020019061124f92919061403e565b5050565b600061125d613054565b6001546000540303905090565b60008160405160200161127d9190614daf565b604051602081830303815290604052805190602001209050919050565b6112a2612f4c565b73ffffffffffffffffffffffffffffffffffffffff166112c0611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90614c56565b60405180910390fd5b816014600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060166000858152602001908152602001600020908051906020019061138f92919061403e565b50505050565b60115481565b6113a683838361305d565b505050565b803373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190614e16565b60405180910390fd5b60008111801561142c57506011548111155b61146b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146290614e82565b60405180910390fd5b60105481611477611253565b6114819190614ed1565b11156114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990614f73565b60405180910390fd5b8180600f546114d19190614f93565b341015611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a90615039565b60405180910390fd5b600260125414611558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154f906150a5565b60405180910390fd5b6011548361156c611567612f4c565b61354e565b6115769190614ed1565b11156115b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ae90615111565b60405180910390fd5b6115c86115c2612f4c565b8461361e565b505050565b6115d5612f4c565b73ffffffffffffffffffffffffffffffffffffffff166115f3611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090614c56565b60405180910390fd5b6002600954141561168f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116869061517d565b60405180910390fd5b60026009819055506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166064600a476116e19190614f93565b6116eb91906151cc565b6040516116f790615223565b60006040518083038185875af1925050503d8060008114611734576040519150601f19603f3d011682016040523d82523d6000602084013e611739565b606091505b505090508061174757600080fd5b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646032476117919190614f93565b61179b91906151cc565b6040516117a790615223565b60006040518083038185875af1925050503d80600081146117e4576040519150601f19603f3d011682016040523d82523d6000602084013e6117e9565b606091505b50509050806117f757600080fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161183f90615223565b60006040518083038185875af1925050503d806000811461187c576040519150601f19603f3d011682016040523d82523d6000602084013e611881565b606091505b505090508061188f57600080fd5b5050506001600981905550565b6000806118a88361126a565b905060006118b58261114b565b9050601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118fa828761219d565b73ffffffffffffffffffffffffffffffffffffffff16149250505092915050565b61193683838360405180602001604052806000815250612790565b505050565b6060600061194883611e30565b905060008167ffffffffffffffff811115611966576119656144c7565b5b6040519080825280602002602001820160405280156119945781602001602082028036833780820191505090505b50905060006119a1613054565b905060005b83811080156119b6575060105482105b15611a3f5760006119c683611e1a565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a2b5782848381518110611a1057611a0f615238565b5b6020026020010181815250508180611a2790615267565b9250505b8280611a3690615267565b935050506119a6565b82945050505050919050565b611a53612f4c565b73ffffffffffffffffffffffffffffffffffffffff16611a71611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90614c56565b60405180910390fd5b80600f8190555050565b60011515601360019054906101000a900460ff16151514611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e906152fc565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16611b4783611e1a565b73ffffffffffffffffffffffffffffffffffffffff1614611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490615368565b60405180910390fd5b60006014600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401611c0b91906143d5565b60206040518083038186803b158015611c2357600080fd5b505afa158015611c37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5b919061539d565b905060008111611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790615416565b60405180910390fd5b816015600085815260200190815260200160002081905550505050565b611cc5612f4c565b73ffffffffffffffffffffffffffffffffffffffff16611ce3611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090614c56565b60405180910390fd5b80600b9080519060200190611d4f92919061403e565b5050565b601360009054906101000a900460ff1681565b600a8054611d7390614ca5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9f90614ca5565b8015611dec5780601f10611dc157610100808354040283529160200191611dec565b820191906000526020600020905b815481529060010190602001808311611dcf57829003601f168201915b505050505081565b601360029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611e258261363c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e98576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611f08612f4c565b73ffffffffffffffffffffffffffffffffffffffff16611f26611fce565b73ffffffffffffffffffffffffffffffffffffffff1614611f7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7390614c56565b60405180910390fd5b611f8660006138cb565b565b60146020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360019054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612000612f4c565b73ffffffffffffffffffffffffffffffffffffffff1661201e611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206b90614c56565b60405180910390fd5b60105481106120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af90615482565b60405180910390fd5b6120c0611253565b8111612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f890615514565b60405180910390fd5b8060108190555050565b60606003805461211a90614ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461214690614ca5565b80156121935780601f1061216857610100808354040283529160200191612193565b820191906000526020600020905b81548152906001019060200180831161217657829003601f168201915b5050505050905090565b6000806000806121ac8561271e565b925092509250600186828585604051600081526020016040526040516121d59493929190615534565b6020604051602081039080840390855afa1580156121f7573d6000803e3d6000fd5b50505060206040510351935050505092915050565b612214612f4c565b73ffffffffffffffffffffffffffffffffffffffff16612232611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612288576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227f90614c56565b60405180910390fd5b80601360016101000a81548160ff02191690831515021790555050565b813373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90614e16565b60405180910390fd5b60008111801561232657506011548111155b612365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235c90614e82565b60405180910390fd5b60105481612371611253565b61237b9190614ed1565b11156123bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b390614f73565b60405180910390fd5b8280600f546123cb9190614f93565b34101561240d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240490615039565b60405180910390fd5b600160125414612452576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612449906155eb565b60405180910390fd5b6124638361245e612f4c565b61189c565b6124a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249990615657565b60405180910390fd5b601154846124b66124b1612f4c565b61354e565b6124c09190614ed1565b1115612501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f8906156e9565b60405180910390fd5b61251261250c612f4c565b8561361e565b50505050565b612520612f4c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612585576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612592612f4c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661263f612f4c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161268491906141d8565b60405180910390a35050565b600b805461269d90614ca5565b80601f01602080910402602001604051908101604052809291908181526020018280546126c990614ca5565b80156127165780601f106126eb57610100808354040283529160200191612716565b820191906000526020600020905b8154815290600101906020018083116126f957829003601f168201915b505050505081565b60008060006041845114612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275e90615755565b60405180910390fd5b6020840151925060408401519150606084015160001a90509193909250565b6000600f54905090565b61279b84848461305d565b6127ba8373ffffffffffffffffffffffffffffffffffffffff16612ecf565b80156127cf57506127cd84848484613991565b155b15612806576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6016602052806000526040600020600091509050805461285190614ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461287d90614ca5565b80156128ca5780601f1061289f576101008083540402835291602001916128ca565b820191906000526020600020905b8154815290600101906020018083116128ad57829003601f168201915b505050505081565b60606128dd82612f54565b61291c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612913906157e7565b60405180910390fd5b60001515601360009054906101000a900460ff16151514156129ca57600b805461294590614ca5565b80601f016020809104026020016040519081016040528092919081815260200182805461297190614ca5565b80156129be5780601f10612993576101008083540402835291602001916129be565b820191906000526020600020905b8154815290600101906020018083116129a157829003601f168201915b50505050509050612a25565b600060156000848152602001908152602001600020549050601660008281526020019081526020016000206129fe84613af1565b600a604051602001612a12939291906158d7565b6040516020818303038152906040529150505b919050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b612a5e612f4c565b73ffffffffffffffffffffffffffffffffffffffff16612a7c611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac990614c56565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b813373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be990614e16565b60405180910390fd5b600081118015612c0457506011548111155b612c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3a90614e82565b60405180910390fd5b60105481612c4f611253565b612c599190614ed1565b1115612c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9190614f73565b60405180910390fd5b612ca2612f4c565b73ffffffffffffffffffffffffffffffffffffffff16612cc0611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0d90614c56565b60405180910390fd5b612d20828461361e565b505050565b612d2d612f4c565b73ffffffffffffffffffffffffffffffffffffffff16612d4b611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9890614c56565b60405180910390fd5b8060128190555050565b612db3612f4c565b73ffffffffffffffffffffffffffffffffffffffff16612dd1611fce565b73ffffffffffffffffffffffffffffffffffffffff1614612e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1e90614c56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8e9061597a565b60405180910390fd5b612ea0816138cb565b50565b60125481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612f5f613054565b11158015612f6e575060005482105b8015612f9b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006130688261363c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661308f612f4c565b73ffffffffffffffffffffffffffffffffffffffff1614806130c257506130c182600001516130bc612f4c565b612aef565b5b8061310757506130d0612f4c565b73ffffffffffffffffffffffffffffffffffffffff166130ef84610f3e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613140576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146131a9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613210576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61321d8585856001613c52565b61322d6000848460000151612fa2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156134de576000548110156134dd5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135478585856001613c58565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135b6576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b613638828260405180602001604052806000815250613c5e565b5050565b6136446140c4565b600082905080613652613054565b11158015613661575060005481105b15613894576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161389257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146137765780925050506138c6565b5b60011561389157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461388c5780925050506138c6565b613777565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139b7612f4c565b8786866040518563ffffffff1660e01b81526004016139d994939291906159e4565b602060405180830381600087803b1580156139f357600080fd5b505af1925050508015613a2457506040513d601f19601f82011682018060405250810190613a219190615a45565b60015b613a9e573d8060008114613a54576040519150601f19603f3d011682016040523d82523d6000602084013e613a59565b606091505b50600081511415613a96576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613b39576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c4d565b600082905060005b60008214613b6b578080613b5490615267565b915050600a82613b6491906151cc565b9150613b41565b60008167ffffffffffffffff811115613b8757613b866144c7565b5b6040519080825280601f01601f191660200182016040528015613bb95781602001600182028036833780820191505090505b5090505b60008514613c4657600182613bd29190615a72565b9150600a85613be19190615aa6565b6030613bed9190614ed1565b60f81b818381518110613c0357613c02615238565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613c3f91906151cc565b9450613bbd565b8093505050505b919050565b50505050565b50505050565b613c6b8383836001613c70565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613cdd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613d18576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613d256000868387613c52565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613eef5750613eee8773ffffffffffffffffffffffffffffffffffffffff16612ecf565b5b15613fb5575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613f646000888480600101955088613991565b613f9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613ef5578260005414613fb057600080fd5b614021565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613fb6575b8160008190555050506140376000868387613c58565b5050505050565b82805461404a90614ca5565b90600052602060002090601f01602090048101928261406c57600085556140b3565b82601f1061408557805160ff19168380011785556140b3565b828001600101855582156140b3579182015b828111156140b2578251825591602001919060010190614097565b5b5090506140c09190614107565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115614120576000816000905550600101614108565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61416d81614138565b811461417857600080fd5b50565b60008135905061418a81614164565b92915050565b6000602082840312156141a6576141a561412e565b5b60006141b48482850161417b565b91505092915050565b60008115159050919050565b6141d2816141bd565b82525050565b60006020820190506141ed60008301846141c9565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061421e826141f3565b9050919050565b61422e81614213565b811461423957600080fd5b50565b60008135905061424b81614225565b92915050565b6000602082840312156142675761426661412e565b5b60006142758482850161423c565b91505092915050565b6000819050919050565b6142918161427e565b811461429c57600080fd5b50565b6000813590506142ae81614288565b92915050565b6000602082840312156142ca576142c961412e565b5b60006142d88482850161429f565b91505092915050565b6142ea8161427e565b82525050565b600060208201905061430560008301846142e1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561434557808201518184015260208101905061432a565b83811115614354576000848401525b50505050565b6000601f19601f8301169050919050565b60006143768261430b565b6143808185614316565b9350614390818560208601614327565b6143998161435a565b840191505092915050565b600060208201905081810360008301526143be818461436b565b905092915050565b6143cf81614213565b82525050565b60006020820190506143ea60008301846143c6565b92915050565b600080604083850312156144075761440661412e565b5b60006144158582860161423c565b92505060206144268582860161429f565b9150509250929050565b6000819050919050565b61444381614430565b811461444e57600080fd5b50565b6000813590506144608161443a565b92915050565b60006020828403121561447c5761447b61412e565b5b600061448a84828501614451565b91505092915050565b61449c81614430565b82525050565b60006020820190506144b76000830184614493565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6144ff8261435a565b810181811067ffffffffffffffff8211171561451e5761451d6144c7565b5b80604052505050565b6000614531614124565b905061453d82826144f6565b919050565b600067ffffffffffffffff82111561455d5761455c6144c7565b5b6145668261435a565b9050602081019050919050565b82818337600083830152505050565b600061459561459084614542565b614527565b9050828152602081018484840111156145b1576145b06144c2565b5b6145bc848285614573565b509392505050565b600082601f8301126145d9576145d86144bd565b5b81356145e9848260208601614582565b91505092915050565b6000602082840312156146085761460761412e565b5b600082013567ffffffffffffffff81111561462657614625614133565b5b614632848285016145c4565b91505092915050565b6000806000606084860312156146545761465361412e565b5b60006146628682870161429f565b93505060206146738682870161423c565b925050604084013567ffffffffffffffff81111561469457614693614133565b5b6146a0868287016145c4565b9150509250925092565b6000806000606084860312156146c3576146c261412e565b5b60006146d18682870161423c565b93505060206146e28682870161423c565b92505060406146f38682870161429f565b9150509250925092565b600067ffffffffffffffff821115614718576147176144c7565b5b6147218261435a565b9050602081019050919050565b600061474161473c846146fd565b614527565b90508281526020810184848401111561475d5761475c6144c2565b5b614768848285614573565b509392505050565b600082601f830112614785576147846144bd565b5b813561479584826020860161472e565b91505092915050565b600080604083850312156147b5576147b461412e565b5b600083013567ffffffffffffffff8111156147d3576147d2614133565b5b6147df85828601614770565b92505060206147f08582860161423c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61482f8161427e565b82525050565b60006148418383614826565b60208301905092915050565b6000602082019050919050565b6000614865826147fa565b61486f8185614805565b935061487a83614816565b8060005b838110156148ab5781516148928882614835565b975061489d8361484d565b92505060018101905061487e565b5085935050505092915050565b600060208201905081810360008301526148d2818461485a565b905092915050565b600080604083850312156148f1576148f061412e565b5b60006148ff8582860161429f565b92505060206149108582860161429f565b9150509250929050565b600080604083850312156149315761493061412e565b5b600061493f85828601614451565b925050602083013567ffffffffffffffff8111156149605761495f614133565b5b61496c85828601614770565b9150509250929050565b61497f816141bd565b811461498a57600080fd5b50565b60008135905061499c81614976565b92915050565b6000602082840312156149b8576149b761412e565b5b60006149c68482850161498d565b91505092915050565b600080604083850312156149e6576149e561412e565b5b60006149f48582860161429f565b925050602083013567ffffffffffffffff811115614a1557614a14614133565b5b614a2185828601614770565b9150509250929050565b60008060408385031215614a4257614a4161412e565b5b6000614a508582860161423c565b9250506020614a618582860161498d565b9150509250929050565b600060208284031215614a8157614a8061412e565b5b600082013567ffffffffffffffff811115614a9f57614a9e614133565b5b614aab84828501614770565b91505092915050565b600060ff82169050919050565b614aca81614ab4565b82525050565b6000606082019050614ae56000830186614493565b614af26020830185614493565b614aff6040830184614ac1565b949350505050565b60008060008060808587031215614b2157614b2061412e565b5b6000614b2f8782880161423c565b9450506020614b408782880161423c565b9350506040614b518782880161429f565b925050606085013567ffffffffffffffff811115614b7257614b71614133565b5b614b7e87828801614770565b91505092959194509250565b60008060408385031215614ba157614ba061412e565b5b6000614baf8582860161423c565b9250506020614bc08582860161423c565b9150509250929050565b60008060408385031215614be157614be061412e565b5b6000614bef8582860161429f565b9250506020614c008582860161423c565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c40602083614316565b9150614c4b82614c0a565b602082019050919050565b60006020820190508181036000830152614c6f81614c33565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680614cbd57607f821691505b60208210811415614cd157614cd0614c76565b5b50919050565b600081519050919050565b600081905092915050565b6000614cf882614cd7565b614d028185614ce2565b9350614d12818560208601614327565b80840191505092915050565b6000819050919050565b614d39614d3482614430565b614d1e565b82525050565b6000614d4b8285614ced565b9150614d578284614d28565b6020820191508190509392505050565b60008160601b9050919050565b6000614d7f82614d67565b9050919050565b6000614d9182614d74565b9050919050565b614da9614da482614213565b614d86565b82525050565b6000614dbb8284614d98565b60148201915081905092915050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614e00601e83614316565b9150614e0b82614dca565b602082019050919050565b60006020820190508181036000830152614e2f81614df3565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614e6c601483614316565b9150614e7782614e36565b602082019050919050565b60006020820190508181036000830152614e9b81614e5f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614edc8261427e565b9150614ee78361427e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f1c57614f1b614ea2565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614f5d601483614316565b9150614f6882614f27565b602082019050919050565b60006020820190508181036000830152614f8c81614f50565b9050919050565b6000614f9e8261427e565b9150614fa98361427e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fe257614fe1614ea2565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000615023601383614316565b915061502e82614fed565b602082019050919050565b6000602082019050818103600083015261505281615016565b9050919050565b7f5075626c6963206d696e742064697361626c6564000000000000000000000000600082015250565b600061508f601483614316565b915061509a82615059565b602082019050919050565b600060208201905081810360008301526150be81615082565b9050919050565b7f65786365656473206d6178207065722061646472657373000000000000000000600082015250565b60006150fb601783614316565b9150615106826150c5565b602082019050919050565b6000602082019050818103600083015261512a816150ee565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000615167601f83614316565b915061517282615131565b602082019050919050565b600060208201905081810360008301526151968161515a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006151d78261427e565b91506151e28361427e565b9250826151f2576151f161519d565b5b828204905092915050565b50565b600061520d600083614ce2565b9150615218826151fd565b600082019050919050565b600061522e82615200565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006152728261427e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152a5576152a4614ea2565b5b600182019050919050565b7f55706772616465206973206e6f7420656e61626c656420796574000000000000600082015250565b60006152e6601a83614316565b91506152f1826152b0565b602082019050919050565b60006020820190508181036000830152615315816152d9565b9050919050565b7f596f7520617265206e6f7420746865206f776e6572206f66204e465400000000600082015250565b6000615352601c83614316565b915061535d8261531c565b602082019050919050565b6000602082019050818103600083015261538181615345565b9050919050565b60008151905061539781614288565b92915050565b6000602082840312156153b3576153b261412e565b5b60006153c184828501615388565b91505092915050565b7f4f6e6c79206f776e65722e2e2e00000000000000000000000000000000000000600082015250565b6000615400600d83614316565b915061540b826153ca565b602082019050919050565b6000602082019050818103600083015261542f816153f3565b9050919050565b7f4d617820737570706c7920313020303030000000000000000000000000000000600082015250565b600061546c601183614316565b915061547782615436565b602082019050919050565b6000602082019050818103600083015261549b8161545f565b9050919050565b7f4e657720737570706c79206d75737420626520686967686572207468616e207460008201527f6f74616c20737570706c79000000000000000000000000000000000000000000602082015250565b60006154fe602b83614316565b9150615509826154a2565b604082019050919050565b6000602082019050818103600083015261552d816154f1565b9050919050565b60006080820190506155496000830187614493565b6155566020830186614ac1565b6155636040830185614493565b6155706060830184614493565b95945050505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b60006155d5602283614316565b91506155e082615579565b604082019050919050565b60006020820190508181036000830152615604816155c8565b9050919050565b7f536f7272792c2062757420796f7520617265206e6f7420696e20574c00000000600082015250565b6000615641601c83614316565b915061564c8261560b565b602082019050919050565b6000602082019050818103600083015261567081615634565b9050919050565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b60006156d3602283614316565b91506156de82615677565b604082019050919050565b60006020820190508181036000830152615702816156c6565b9050919050565b7f696e76616c6964207369676e6174757265206c656e6774680000000000000000600082015250565b600061573f601883614316565b915061574a82615709565b602082019050919050565b6000602082019050818103600083015261576e81615732565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006157d1602f83614316565b91506157dc82615775565b604082019050919050565b60006020820190508181036000830152615800816157c4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461583481614ca5565b61583e8186615807565b94506001821660008114615859576001811461586a5761589d565b60ff1983168652818601935061589d565b61587385615812565b60005b8381101561589557815481890152600182019150602081019050615876565b838801955050505b50505092915050565b60006158b18261430b565b6158bb8185615807565b93506158cb818560208601614327565b80840191505092915050565b60006158e38286615827565b91506158ef82856158a6565b91506158fb8284615827565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615964602683614316565b915061596f82615908565b604082019050919050565b6000602082019050818103600083015261599381615957565b9050919050565b600082825260208201905092915050565b60006159b682614cd7565b6159c0818561599a565b93506159d0818560208601614327565b6159d98161435a565b840191505092915050565b60006080820190506159f960008301876143c6565b615a0660208301866143c6565b615a1360408301856142e1565b8181036060830152615a2581846159ab565b905095945050505050565b600081519050615a3f81614164565b92915050565b600060208284031215615a5b57615a5a61412e565b5b6000615a6984828501615a30565b91505092915050565b6000615a7d8261427e565b9150615a888361427e565b925082821015615a9b57615a9a614ea2565b5b828203905092915050565b6000615ab18261427e565b9150615abc8361427e565b925082615acc57615acb61519d565b5b82820690509291505056fea26469706673582212207a91793c016ca28b64e57bc1c0a08cee2f34fc4775ff49f813d24b4f3f7f9b3d64736f6c63430008090033

Deployed Bytecode Sourcemap

48262:7341:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30704:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52035:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48905:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34089:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35600:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52310:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35155:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53925:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48633:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52564:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29953:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53789:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55373:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48687:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36465:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50243:319;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53160:351;;;;;;;;;;;;;:::i;:::-;;54133:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36706:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50731:626;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52230:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54968:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52426:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48752:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48358:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48810:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33898:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31073:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7522:103;;;;;;;;;;;;;:::i;:::-;;48845:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48777:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6871:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52772:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34258:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54422:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53037:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49799:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35876:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48396:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54650:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;51888:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36962:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48499:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48958:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51474:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48564:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48657:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52143:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36234:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50570:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52674:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7780:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48720:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48434:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30704:305;30806:4;30858:25;30843:40;;;:11;:40;;;;:105;;;;30915:33;30900:48;;;:11;:48;;;;30843:105;:158;;;;30965:36;30989:11;30965:23;:36::i;:::-;30843:158;30823:178;;30704:305;;;:::o;52035:102::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52122:9:::1;52106:13;;:25;;;;;;;;;;;;;;;;;;52035:102:::0;:::o;48905:48::-;;;;;;;;;;;;;;;;;:::o;34089:100::-;34143:13;34176:5;34169:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34089:100;:::o;35600:204::-;35668:7;35693:16;35701:7;35693;:16::i;:::-;35688:64;;35718:34;;;;;;;;;;;;;;35688:64;35772:15;:24;35788:7;35772:24;;;;;;;;;;;;;;;;;;;;;35765:31;;35600:204;;;:::o;52310:110::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52400:14:::1;52384:13;:30;;;;52310:110:::0;:::o;35155:379::-;35236:13;35252:24;35268:7;35252:15;:24::i;:::-;35236:40;;35297:5;35291:11;;:2;:11;;;35287:48;;;35311:24;;;;;;;;;;;;;;35287:48;35368:5;35352:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;35378:37;35395:5;35402:12;:10;:12::i;:::-;35378:16;:37::i;:::-;35377:38;35352:63;35348:138;;;35439:35;;;;;;;;;;;;;;35348:138;35498:28;35507:2;35511:7;35520:5;35498:8;:28::i;:::-;35225:309;35155:379;;:::o;53925:202::-;53989:7;54008:19;:56;;;;;;;;;;;;;;;;;;;54106:6;54113:7;54089:32;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54079:43;;;;;;54072:50;;;53925:202;;;:::o;48633:19::-;;;;:::o;52564:100::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52648:10:::1;52636:9;:22;;;;;;;;;;;;:::i;:::-;;52564:100:::0;:::o;29953:303::-;29997:7;30222:15;:13;:15::i;:::-;30207:12;;30191:13;;:28;:46;30184:53;;29953:303;:::o;53789:130::-;53851:7;53904:8;53887:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;53877:37;;;;;;53870:44;;53789:130;;;:::o;55373:223::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55531:16:::1;55494:19;:34;55514:13;55494:34;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55584:8;55553:13;:28;55567:13;55553:28;;;;;;;;;;;:39;;;;;;;;;;;;:::i;:::-;;55373:223:::0;;;:::o;48687:28::-;;;;:::o;36465:170::-;36599:28;36609:4;36615:2;36619:7;36599:9;:28::i;:::-;36465:170;;;:::o;50243:319::-;50314:11;49427:10;49414:23;;:9;:23;;;49406:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49501:1;49487:11;:15;:47;;;;;49521:13;;49506:11;:28;;49487:47;49479:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49605:9;;49590:11;49574:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49566:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50347:11:::1;49744;49737:4;;:18;;;;:::i;:::-;49724:9;:31;;49716:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50387:1:::2;50375:10;;:13;50367:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;50473:13;;50458:11;50428:27;50442:12;:10;:12::i;:::-;50428:13;:27::i;:::-;:41;;;;:::i;:::-;:58;;50420:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;50520:36;50530:12;:10;:12::i;:::-;50544:11;50520:9;:36::i;:::-;49646:1:::1;50243:319:::0;;:::o;53160:351::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1:::1;2443:7;;:19;;2435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;;;;53220:7:::2;53241:2;;;;;;;;;;;53233:16;;53286:3;53281:2;53257:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;53233:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53219:75;;;53309:2;53301:11;;;::::0;::::2;;53322:7;53343:2;;;;;;;;;;;53335:16;;53388:3;53383:2;53359:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;53335:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53321:75;;;53411:2;53403:11;;;::::0;::::2;;53424:7;53445:2;;;;;;;;;;;53437:16;;53461:21;53437:50;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53423:64;;;53502:2;53494:11;;;::::0;::::2;;53210:301;;;1801:1:::1;2755:7;:22;;;;53160:351::o:0;54133:283::-;54210:4;54226:18;54247:22;54262:6;54247:14;:22::i;:::-;54226:43;;54277:22;54302:29;54320:10;54302:17;:29::i;:::-;54277:54;;54395:13;;;;;;;;;;;54350:58;;:41;54364:14;54380:10;54350:13;:41::i;:::-;:58;;;54343:65;;;;54133:283;;;;:::o;36706:185::-;36844:39;36861:4;36867:2;36871:7;36844:39;;;;;;;;;;;;:16;:39::i;:::-;36706:185;;;:::o;50731:626::-;50791:16;50816:23;50842:17;50852:6;50842:9;:17::i;:::-;50816:43;;50866:30;50913:15;50899:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50866:63;;50936:22;50961:15;:13;:15::i;:::-;50936:40;;50983:23;51019:306;51044:15;51026;:33;:63;;;;;51080:9;;51063:14;:26;51026:63;51019:306;;;51100:25;51128:23;51136:14;51128:7;:23::i;:::-;51100:51;;51187:6;51166:27;;:17;:27;;;51162:131;;;51239:14;51206:13;51220:15;51206:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;51266:17;;;;;:::i;:::-;;;;51162:131;51301:16;;;;;:::i;:::-;;;;51091:234;51019:306;;;51338:13;51331:20;;;;;;50731:626;;;:::o;52230:74::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52293:5:::1;52286:4;:12;;;;52230:74:::0;:::o;54968:401::-;55066:4;55048:22;;:14;;;;;;;;;;;:22;;;55040:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;55137:10;55116:31;;:17;55124:8;55116:7;:17::i;:::-;:31;;;55108:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;55187:17;55215:19;:34;55235:13;55215:34;;;;;;;;;;;;;;;;;;;;;55207:53;;;55261:10;55207:65;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55187:85;;55300:1;55288:9;:13;55280:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;55352:13;55326;:23;55340:8;55326:23;;;;;;;;;;;:39;;;;55033:336;54968:401;;:::o;52426:132::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52534:18:::1;52514:17;:38;;;;;;;;;;;;:::i;:::-;;52426:132:::0;:::o;48752:20::-;;;;;;;;;;;;;:::o;48358:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48810:28::-;;;;;;;;;;;;;:::o;33898:124::-;33962:7;33989:20;34001:7;33989:11;:20::i;:::-;:25;;;33982:32;;33898:124;;;:::o;31073:206::-;31137:7;31178:1;31161:19;;:5;:19;;;31157:60;;;31189:28;;;;;;;;;;;;;;31157:60;31243:12;:19;31256:5;31243:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;31235:36;;31228:43;;31073:206;;;:::o;7522:103::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7587:30:::1;7614:1;7587:18;:30::i;:::-;7522:103::o:0;48845:54::-;;;;;;;;;;;;;;;;;;;;;;:::o;48777:26::-;;;;;;;;;;;;;:::o;6871:87::-;6917:7;6944:6;;;;;;;;;;;6937:13;;6871:87;:::o;52772:257::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52864:9:::1;;52851:10;:22;52843:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;52927:13;:11;:13::i;:::-;52914:10;:26;52906:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;53011:10;52999:9;:22;;;;52772:257:::0;:::o;34258:104::-;34314:13;34347:7;34340:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34258:104;:::o;54422:222::-;54513:7;54533:9;54544;54555:7;54566:26;54581:10;54566:14;:26::i;:::-;54532:60;;;;;;54607:32;54617:12;54631:1;54634;54637;54607:32;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54600:39;;;;;54422:222;;;;:::o;53037:117::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53131:15:::1;53114:14;;:32;;;;;;;;;;;;;;;;;;53037:117:::0;:::o;49799:438::-;49891:11;49427:10;49414:23;;:9;:23;;;49406:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49501:1;49487:11;:15;:47;;;;;49521:13;;49506:11;:28;;49487:47;49479:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49605:9;;49590:11;49574:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49566:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49924:11:::1;49744;49737:4;;:18;;;;:::i;:::-;49724:9;:31;;49716:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49964:1:::2;49952:10;;:13;49944:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;50019:25;50026:3;50031:12;:10;:12::i;:::-;50019:6;:25::i;:::-;50011:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50137:13;;50122:11;50092:27;50106:12;:10;:12::i;:::-;50092:13;:27::i;:::-;:41;;;;:::i;:::-;:58;;50084:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;50195:36;50205:12;:10;:12::i;:::-;50219:11;50195:9;:36::i;:::-;49646:1:::1;49799:438:::0;;;:::o;35876:287::-;35987:12;:10;:12::i;:::-;35975:24;;:8;:24;;;35971:54;;;36008:17;;;;;;;;;;;;;;35971:54;36083:8;36038:18;:32;36057:12;:10;:12::i;:::-;36038:32;;;;;;;;;;;;;;;:42;36071:8;36038:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;36136:8;36107:48;;36122:12;:10;:12::i;:::-;36107:48;;;36146:8;36107:48;;;;;;:::i;:::-;;;;;;;;35876:287;;:::o;48396:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54650:313::-;54714:9;54725;54736:7;54778:2;54763:4;:11;:17;54755:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;54866:2;54860:4;54856:13;54850:20;54845:25;;54902:2;54896:4;54892:13;54886:20;54881:25;;54946:2;54940:4;54936:13;54930:20;54927:1;54922:29;54917:34;;54650:313;;;;;:::o;51888:84::-;51933:7;51960:4;;51953:11;;51888:84;:::o;36962:369::-;37129:28;37139:4;37145:2;37149:7;37129:9;:28::i;:::-;37172:15;:2;:13;;;:15::i;:::-;:76;;;;;37192:56;37223:4;37229:2;37233:7;37242:5;37192:30;:56::i;:::-;37191:57;37172:76;37168:156;;;37272:40;;;;;;;;;;;;;;37168:156;36962:369;;;;:::o;48499:60::-;;;;;;;;;;;;;:::o;48958:48::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51474:406::-;51548:13;51578:17;51586:8;51578:7;:17::i;:::-;51570:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;51670:5;51658:17;;:8;;;;;;;;;;;:17;;;51654:64;;;51693:17;51686:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51654:64;51724:17;51744:13;:23;51758:8;51744:23;;;;;;;;;;;;51724:43;;51806:13;:24;51820:9;51806:24;;;;;;;;;;;51832:19;:8;:17;:19::i;:::-;51853:9;51789:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51774:90;;;51474:406;;;;:::o;48564:60::-;;;;;;;;;;;;;:::o;48657:24::-;;;;:::o;52143:81::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52212:6:::1;52201:8;;:17;;;;;;;;;;;;;;;;;;52143:81:::0;:::o;36234:164::-;36331:4;36355:18;:25;36374:5;36355:25;;;;;;;;;;;;;;;:35;36381:8;36355:35;;;;;;;;;;;;;;;;;;;;;;;;;36348:42;;36234:164;;;;:::o;50570:155::-;50656:11;49427:10;49414:23;;:9;:23;;;49406:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49501:1;49487:11;:15;:47;;;;;49521:13;;49506:11;:28;;49487:47;49479:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49605:9;;49590:11;49574:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;49566:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7102:12:::1;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50686:33:::2;50696:9;50707:11;50686:9;:33::i;:::-;50570:155:::0;;;:::o;52674:90::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52751:7:::1;52738:10;:20;;;;52674:90:::0;:::o;7780:201::-;7102:12;:10;:12::i;:::-;7091:23;;:7;:5;:7::i;:::-;:23;;;7083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7889:1:::1;7869:22;;:8;:22;;;;7861:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:28;7964:8;7945:18;:28::i;:::-;7780:201:::0;:::o;48720:25::-;;;;:::o;48434:60::-;;;;;;;;;;;;;:::o;9159:387::-;9219:4;9427:12;9494:7;9482:20;9474:28;;9537:1;9530:4;:8;9523:15;;;9159:387;;;:::o;19303:157::-;19388:4;19427:25;19412:40;;;:11;:40;;;;19405:47;;19303:157;;;:::o;5595:98::-;5648:7;5675:10;5668:17;;5595:98;:::o;37586:187::-;37643:4;37686:7;37667:15;:13;:15::i;:::-;:26;;:53;;;;;37707:13;;37697:7;:23;37667:53;:98;;;;;37738:11;:20;37750:7;37738:20;;;;;;;;;;;:27;;;;;;;;;;;;37737:28;37667:98;37660:105;;37586:187;;;:::o;45197:196::-;45339:2;45312:15;:24;45328:7;45312:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45377:7;45373:2;45357:28;;45366:5;45357:28;;;;;;;;;;;;45197:196;;;:::o;51365:101::-;51430:7;51457:1;51450:8;;51365:101;:::o;40699:2112::-;40814:35;40852:20;40864:7;40852:11;:20::i;:::-;40814:58;;40885:22;40927:13;:18;;;40911:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40962:50;40979:13;:18;;;40999:12;:10;:12::i;:::-;40962:16;:50::i;:::-;40911:101;:154;;;;41053:12;:10;:12::i;:::-;41029:36;;:20;41041:7;41029:11;:20::i;:::-;:36;;;40911:154;40885:181;;41084:17;41079:66;;41110:35;;;;;;;;;;;;;;41079:66;41182:4;41160:26;;:13;:18;;;:26;;;41156:67;;41195:28;;;;;;;;;;;;;;41156:67;41252:1;41238:16;;:2;:16;;;41234:52;;;41263:23;;;;;;;;;;;;;;41234:52;41299:43;41321:4;41327:2;41331:7;41340:1;41299:21;:43::i;:::-;41407:49;41424:1;41428:7;41437:13;:18;;;41407:8;:49::i;:::-;41782:1;41752:12;:18;41765:4;41752:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41826:1;41798:12;:16;41811:2;41798:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41872:2;41844:11;:20;41856:7;41844:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41934:15;41889:11;:20;41901:7;41889:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;42202:19;42234:1;42224:7;:11;42202:33;;42295:1;42254:43;;:11;:24;42266:11;42254:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42250:445;;;42479:13;;42465:11;:27;42461:219;;;42549:13;:18;;;42517:11;:24;42529:11;42517:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42632:13;:28;;;42590:11;:24;42602:11;42590:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42461:219;42250:445;41727:979;42742:7;42738:2;42723:27;;42732:4;42723:27;;;;;;;;;;;;42761:42;42782:4;42788:2;42792:7;42801:1;42761:20;:42::i;:::-;40803:2008;;40699:2112;;;:::o;31361:207::-;31422:7;31463:1;31446:19;;:5;:19;;;31442:59;;;31474:27;;;;;;;;;;;;;;31442:59;31527:12;:19;31540:5;31527:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;31519:41;;31512:48;;31361:207;;;:::o;37781:104::-;37850:27;37860:2;37864:8;37850:27;;;;;;;;;;;;:9;:27::i;:::-;37781:104;;:::o;32728:1108::-;32789:21;;:::i;:::-;32823:12;32838:7;32823:22;;32906:4;32887:15;:13;:15::i;:::-;:23;;:47;;;;;32921:13;;32914:4;:20;32887:47;32883:886;;;32955:31;32989:11;:17;33001:4;32989:17;;;;;;;;;;;32955:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33030:9;:16;;;33025:729;;33101:1;33075:28;;:9;:14;;;:28;;;33071:101;;33139:9;33132:16;;;;;;33071:101;33474:261;33481:4;33474:261;;;33514:6;;;;;;;;33559:11;:17;33571:4;33559:17;;;;;;;;;;;33547:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33633:1;33607:28;;:9;:14;;;:28;;;33603:109;;33675:9;33668:16;;;;;;33603:109;33474:261;;;33025:729;32936:833;32883:886;33797:31;;;;;;;;;;;;;;32728:1108;;;;:::o;8141:191::-;8215:16;8234:6;;;;;;;;;;;8215:25;;8260:8;8251:6;;:17;;;;;;;;;;;;;;;;;;8315:8;8284:40;;8305:8;8284:40;;;;;;;;;;;;8204:128;8141:191;:::o;45885:667::-;46048:4;46085:2;46069:36;;;46106:12;:10;:12::i;:::-;46120:4;46126:7;46135:5;46069:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46065:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46320:1;46303:6;:13;:18;46299:235;;;46349:40;;;;;;;;;;;;;;46299:235;46492:6;46486:13;46477:6;46473:2;46469:15;46462:38;46065:480;46198:45;;;46188:55;;;:6;:55;;;;46181:62;;;45885:667;;;;;;:::o;3157:723::-;3213:13;3443:1;3434:5;:10;3430:53;;;3461:10;;;;;;;;;;;;;;;;;;;;;3430:53;3493:12;3508:5;3493:20;;3524:14;3549:78;3564:1;3556:4;:9;3549:78;;3582:8;;;;;:::i;:::-;;;;3613:2;3605:10;;;;;:::i;:::-;;;3549:78;;;3637:19;3669:6;3659:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3637:39;;3687:154;3703:1;3694:5;:10;3687:154;;3731:1;3721:11;;;;;:::i;:::-;;;3798:2;3790:5;:10;;;;:::i;:::-;3777:2;:24;;;;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3827:2;3818:11;;;;;:::i;:::-;;;3687:154;;;3865:6;3851:21;;;;;3157:723;;;;:::o;47200:159::-;;;;;:::o;48018:158::-;;;;;:::o;38248:163::-;38371:32;38377:2;38381:8;38391:5;38398:4;38371:5;:32::i;:::-;38248:163;;;:::o;38670:1775::-;38809:20;38832:13;;38809:36;;38874:1;38860:16;;:2;:16;;;38856:48;;;38885:19;;;;;;;;;;;;;;38856:48;38931:1;38919:8;:13;38915:44;;;38941:18;;;;;;;;;;;;;;38915:44;38972:61;39002:1;39006:2;39010:12;39024:8;38972:21;:61::i;:::-;39345:8;39310:12;:16;39323:2;39310:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39409:8;39369:12;:16;39382:2;39369:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39468:2;39435:11;:25;39447:12;39435:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;39535:15;39485:11;:25;39497:12;39485:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;39568:20;39591:12;39568:35;;39618:11;39647:8;39632:12;:23;39618:37;;39676:4;:23;;;;;39684:15;:2;:13;;;:15::i;:::-;39676:23;39672:641;;;39720:314;39776:12;39772:2;39751:38;;39768:1;39751:38;;;;;;;;;;;;39817:69;39856:1;39860:2;39864:14;;;;;;39880:5;39817:30;:69::i;:::-;39812:174;;39922:40;;;;;;;;;;;;;;39812:174;40029:3;40013:12;:19;;39720:314;;40115:12;40098:13;;:29;40094:43;;40129:8;;;40094:43;39672:641;;;40178:120;40234:14;;;;;;40230:2;40209:40;;40226:1;40209:40;;;;;;;;;;;;40293:3;40277:12;:19;;40178:120;;39672:641;40343:12;40327:13;:28;;;;39285:1082;;40377:60;40406:1;40410:2;40414:12;40428:8;40377:20;:60::i;:::-;38798:1647;38670:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:126::-;1555:7;1595:42;1588:5;1584:54;1573:65;;1518:126;;;:::o;1650:96::-;1687:7;1716:24;1734:5;1716:24;:::i;:::-;1705:35;;1650:96;;;:::o;1752:122::-;1825:24;1843:5;1825:24;:::i;:::-;1818:5;1815:35;1805:63;;1864:1;1861;1854:12;1805:63;1752:122;:::o;1880:139::-;1926:5;1964:6;1951:20;1942:29;;1980:33;2007:5;1980:33;:::i;:::-;1880:139;;;;:::o;2025:329::-;2084:6;2133:2;2121:9;2112:7;2108:23;2104:32;2101:119;;;2139:79;;:::i;:::-;2101:119;2259:1;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2230:117;2025:329;;;;:::o;2360:77::-;2397:7;2426:5;2415:16;;2360:77;;;:::o;2443:122::-;2516:24;2534:5;2516:24;:::i;:::-;2509:5;2506:35;2496:63;;2555:1;2552;2545:12;2496:63;2443:122;:::o;2571:139::-;2617:5;2655:6;2642:20;2633:29;;2671:33;2698:5;2671:33;:::i;:::-;2571:139;;;;:::o;2716:329::-;2775:6;2824:2;2812:9;2803:7;2799:23;2795:32;2792:119;;;2830:79;;:::i;:::-;2792:119;2950:1;2975:53;3020:7;3011:6;3000:9;2996:22;2975:53;:::i;:::-;2965:63;;2921:117;2716:329;;;;:::o;3051:118::-;3138:24;3156:5;3138:24;:::i;:::-;3133:3;3126:37;3051:118;;:::o;3175:222::-;3268:4;3306:2;3295:9;3291:18;3283:26;;3319:71;3387:1;3376:9;3372:17;3363:6;3319:71;:::i;:::-;3175:222;;;;:::o;3403:99::-;3455:6;3489:5;3483:12;3473:22;;3403:99;;;:::o;3508:169::-;3592:11;3626:6;3621:3;3614:19;3666:4;3661:3;3657:14;3642:29;;3508:169;;;;:::o;3683:307::-;3751:1;3761:113;3775:6;3772:1;3769:13;3761:113;;;3860:1;3855:3;3851:11;3845:18;3841:1;3836:3;3832:11;3825:39;3797:2;3794:1;3790:10;3785:15;;3761:113;;;3892:6;3889:1;3886:13;3883:101;;;3972:1;3963:6;3958:3;3954:16;3947:27;3883:101;3732:258;3683:307;;;:::o;3996:102::-;4037:6;4088:2;4084:7;4079:2;4072:5;4068:14;4064:28;4054:38;;3996:102;;;:::o;4104:364::-;4192:3;4220:39;4253:5;4220:39;:::i;:::-;4275:71;4339:6;4334:3;4275:71;:::i;:::-;4268:78;;4355:52;4400:6;4395:3;4388:4;4381:5;4377:16;4355:52;:::i;:::-;4432:29;4454:6;4432:29;:::i;:::-;4427:3;4423:39;4416:46;;4196:272;4104:364;;;;:::o;4474:313::-;4587:4;4625:2;4614:9;4610:18;4602:26;;4674:9;4668:4;4664:20;4660:1;4649:9;4645:17;4638:47;4702:78;4775:4;4766:6;4702:78;:::i;:::-;4694:86;;4474:313;;;;:::o;4793:118::-;4880:24;4898:5;4880:24;:::i;:::-;4875:3;4868:37;4793:118;;:::o;4917:222::-;5010:4;5048:2;5037:9;5033:18;5025:26;;5061:71;5129:1;5118:9;5114:17;5105:6;5061:71;:::i;:::-;4917:222;;;;:::o;5145:474::-;5213:6;5221;5270:2;5258:9;5249:7;5245:23;5241:32;5238:119;;;5276:79;;:::i;:::-;5238:119;5396:1;5421:53;5466:7;5457:6;5446:9;5442:22;5421:53;:::i;:::-;5411:63;;5367:117;5523:2;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5494:118;5145:474;;;;;:::o;5625:77::-;5662:7;5691:5;5680:16;;5625:77;;;:::o;5708:122::-;5781:24;5799:5;5781:24;:::i;:::-;5774:5;5771:35;5761:63;;5820:1;5817;5810:12;5761:63;5708:122;:::o;5836:139::-;5882:5;5920:6;5907:20;5898:29;;5936:33;5963:5;5936:33;:::i;:::-;5836:139;;;;:::o;5981:329::-;6040:6;6089:2;6077:9;6068:7;6064:23;6060:32;6057:119;;;6095:79;;:::i;:::-;6057:119;6215:1;6240:53;6285:7;6276:6;6265:9;6261:22;6240:53;:::i;:::-;6230:63;;6186:117;5981:329;;;;:::o;6316:118::-;6403:24;6421:5;6403:24;:::i;:::-;6398:3;6391:37;6316:118;;:::o;6440:222::-;6533:4;6571:2;6560:9;6556:18;6548:26;;6584:71;6652:1;6641:9;6637:17;6628:6;6584:71;:::i;:::-;6440:222;;;;:::o;6668:117::-;6777:1;6774;6767:12;6791:117;6900:1;6897;6890:12;6914:180;6962:77;6959:1;6952:88;7059:4;7056:1;7049:15;7083:4;7080:1;7073:15;7100:281;7183:27;7205:4;7183:27;:::i;:::-;7175:6;7171:40;7313:6;7301:10;7298:22;7277:18;7265:10;7262:34;7259:62;7256:88;;;7324:18;;:::i;:::-;7256:88;7364:10;7360:2;7353:22;7143:238;7100:281;;:::o;7387:129::-;7421:6;7448:20;;:::i;:::-;7438:30;;7477:33;7505:4;7497:6;7477:33;:::i;:::-;7387:129;;;:::o;7522:308::-;7584:4;7674:18;7666:6;7663:30;7660:56;;;7696:18;;:::i;:::-;7660:56;7734:29;7756:6;7734:29;:::i;:::-;7726:37;;7818:4;7812;7808:15;7800:23;;7522:308;;;:::o;7836:154::-;7920:6;7915:3;7910;7897:30;7982:1;7973:6;7968:3;7964:16;7957:27;7836:154;;;:::o;7996:412::-;8074:5;8099:66;8115:49;8157:6;8115:49;:::i;:::-;8099:66;:::i;:::-;8090:75;;8188:6;8181:5;8174:21;8226:4;8219:5;8215:16;8264:3;8255:6;8250:3;8246:16;8243:25;8240:112;;;8271:79;;:::i;:::-;8240:112;8361:41;8395:6;8390:3;8385;8361:41;:::i;:::-;8080:328;7996:412;;;;;:::o;8428:340::-;8484:5;8533:3;8526:4;8518:6;8514:17;8510:27;8500:122;;8541:79;;:::i;:::-;8500:122;8658:6;8645:20;8683:79;8758:3;8750:6;8743:4;8735:6;8731:17;8683:79;:::i;:::-;8674:88;;8490:278;8428:340;;;;:::o;8774:509::-;8843:6;8892:2;8880:9;8871:7;8867:23;8863:32;8860:119;;;8898:79;;:::i;:::-;8860:119;9046:1;9035:9;9031:17;9018:31;9076:18;9068:6;9065:30;9062:117;;;9098:79;;:::i;:::-;9062:117;9203:63;9258:7;9249:6;9238:9;9234:22;9203:63;:::i;:::-;9193:73;;8989:287;8774:509;;;;:::o;9289:799::-;9376:6;9384;9392;9441:2;9429:9;9420:7;9416:23;9412:32;9409:119;;;9447:79;;:::i;:::-;9409:119;9567:1;9592:53;9637:7;9628:6;9617:9;9613:22;9592:53;:::i;:::-;9582:63;;9538:117;9694:2;9720:53;9765:7;9756:6;9745:9;9741:22;9720:53;:::i;:::-;9710:63;;9665:118;9850:2;9839:9;9835:18;9822:32;9881:18;9873:6;9870:30;9867:117;;;9903:79;;:::i;:::-;9867:117;10008:63;10063:7;10054:6;10043:9;10039:22;10008:63;:::i;:::-;9998:73;;9793:288;9289:799;;;;;:::o;10094:619::-;10171:6;10179;10187;10236:2;10224:9;10215:7;10211:23;10207:32;10204:119;;;10242:79;;:::i;:::-;10204:119;10362:1;10387:53;10432:7;10423:6;10412:9;10408:22;10387:53;:::i;:::-;10377:63;;10333:117;10489:2;10515:53;10560:7;10551:6;10540:9;10536:22;10515:53;:::i;:::-;10505:63;;10460:118;10617:2;10643:53;10688:7;10679:6;10668:9;10664:22;10643:53;:::i;:::-;10633:63;;10588:118;10094:619;;;;;:::o;10719:307::-;10780:4;10870:18;10862:6;10859:30;10856:56;;;10892:18;;:::i;:::-;10856:56;10930:29;10952:6;10930:29;:::i;:::-;10922:37;;11014:4;11008;11004:15;10996:23;;10719:307;;;:::o;11032:410::-;11109:5;11134:65;11150:48;11191:6;11150:48;:::i;:::-;11134:65;:::i;:::-;11125:74;;11222:6;11215:5;11208:21;11260:4;11253:5;11249:16;11298:3;11289:6;11284:3;11280:16;11277:25;11274:112;;;11305:79;;:::i;:::-;11274:112;11395:41;11429:6;11424:3;11419;11395:41;:::i;:::-;11115:327;11032:410;;;;;:::o;11461:338::-;11516:5;11565:3;11558:4;11550:6;11546:17;11542:27;11532:122;;11573:79;;:::i;:::-;11532:122;11690:6;11677:20;11715:78;11789:3;11781:6;11774:4;11766:6;11762:17;11715:78;:::i;:::-;11706:87;;11522:277;11461:338;;;;:::o;11805:652::-;11882:6;11890;11939:2;11927:9;11918:7;11914:23;11910:32;11907:119;;;11945:79;;:::i;:::-;11907:119;12093:1;12082:9;12078:17;12065:31;12123:18;12115:6;12112:30;12109:117;;;12145:79;;:::i;:::-;12109:117;12250:62;12304:7;12295:6;12284:9;12280:22;12250:62;:::i;:::-;12240:72;;12036:286;12361:2;12387:53;12432:7;12423:6;12412:9;12408:22;12387:53;:::i;:::-;12377:63;;12332:118;11805:652;;;;;:::o;12463:114::-;12530:6;12564:5;12558:12;12548:22;;12463:114;;;:::o;12583:184::-;12682:11;12716:6;12711:3;12704:19;12756:4;12751:3;12747:14;12732:29;;12583:184;;;;:::o;12773:132::-;12840:4;12863:3;12855:11;;12893:4;12888:3;12884:14;12876:22;;12773:132;;;:::o;12911:108::-;12988:24;13006:5;12988:24;:::i;:::-;12983:3;12976:37;12911:108;;:::o;13025:179::-;13094:10;13115:46;13157:3;13149:6;13115:46;:::i;:::-;13193:4;13188:3;13184:14;13170:28;;13025:179;;;;:::o;13210:113::-;13280:4;13312;13307:3;13303:14;13295:22;;13210:113;;;:::o;13359:732::-;13478:3;13507:54;13555:5;13507:54;:::i;:::-;13577:86;13656:6;13651:3;13577:86;:::i;:::-;13570:93;;13687:56;13737:5;13687:56;:::i;:::-;13766:7;13797:1;13782:284;13807:6;13804:1;13801:13;13782:284;;;13883:6;13877:13;13910:63;13969:3;13954:13;13910:63;:::i;:::-;13903:70;;13996:60;14049:6;13996:60;:::i;:::-;13986:70;;13842:224;13829:1;13826;13822:9;13817:14;;13782:284;;;13786:14;14082:3;14075:10;;13483:608;;;13359:732;;;;:::o;14097:373::-;14240:4;14278:2;14267:9;14263:18;14255:26;;14327:9;14321:4;14317:20;14313:1;14302:9;14298:17;14291:47;14355:108;14458:4;14449:6;14355:108;:::i;:::-;14347:116;;14097:373;;;;:::o;14476:474::-;14544:6;14552;14601:2;14589:9;14580:7;14576:23;14572:32;14569:119;;;14607:79;;:::i;:::-;14569:119;14727:1;14752:53;14797:7;14788:6;14777:9;14773:22;14752:53;:::i;:::-;14742:63;;14698:117;14854:2;14880:53;14925:7;14916:6;14905:9;14901:22;14880:53;:::i;:::-;14870:63;;14825:118;14476:474;;;;;:::o;14956:652::-;15033:6;15041;15090:2;15078:9;15069:7;15065:23;15061:32;15058:119;;;15096:79;;:::i;:::-;15058:119;15216:1;15241:53;15286:7;15277:6;15266:9;15262:22;15241:53;:::i;:::-;15231:63;;15187:117;15371:2;15360:9;15356:18;15343:32;15402:18;15394:6;15391:30;15388:117;;;15424:79;;:::i;:::-;15388:117;15529:62;15583:7;15574:6;15563:9;15559:22;15529:62;:::i;:::-;15519:72;;15314:287;14956:652;;;;;:::o;15614:116::-;15684:21;15699:5;15684:21;:::i;:::-;15677:5;15674:32;15664:60;;15720:1;15717;15710:12;15664:60;15614:116;:::o;15736:133::-;15779:5;15817:6;15804:20;15795:29;;15833:30;15857:5;15833:30;:::i;:::-;15736:133;;;;:::o;15875:323::-;15931:6;15980:2;15968:9;15959:7;15955:23;15951:32;15948:119;;;15986:79;;:::i;:::-;15948:119;16106:1;16131:50;16173:7;16164:6;16153:9;16149:22;16131:50;:::i;:::-;16121:60;;16077:114;15875:323;;;;:::o;16204:652::-;16281:6;16289;16338:2;16326:9;16317:7;16313:23;16309:32;16306:119;;;16344:79;;:::i;:::-;16306:119;16464:1;16489:53;16534:7;16525:6;16514:9;16510:22;16489:53;:::i;:::-;16479:63;;16435:117;16619:2;16608:9;16604:18;16591:32;16650:18;16642:6;16639:30;16636:117;;;16672:79;;:::i;:::-;16636:117;16777:62;16831:7;16822:6;16811:9;16807:22;16777:62;:::i;:::-;16767:72;;16562:287;16204:652;;;;;:::o;16862:468::-;16927:6;16935;16984:2;16972:9;16963:7;16959:23;16955:32;16952:119;;;16990:79;;:::i;:::-;16952:119;17110:1;17135:53;17180:7;17171:6;17160:9;17156:22;17135:53;:::i;:::-;17125:63;;17081:117;17237:2;17263:50;17305:7;17296:6;17285:9;17281:22;17263:50;:::i;:::-;17253:60;;17208:115;16862:468;;;;;:::o;17336:507::-;17404:6;17453:2;17441:9;17432:7;17428:23;17424:32;17421:119;;;17459:79;;:::i;:::-;17421:119;17607:1;17596:9;17592:17;17579:31;17637:18;17629:6;17626:30;17623:117;;;17659:79;;:::i;:::-;17623:117;17764:62;17818:7;17809:6;17798:9;17794:22;17764:62;:::i;:::-;17754:72;;17550:286;17336:507;;;;:::o;17849:86::-;17884:7;17924:4;17917:5;17913:16;17902:27;;17849:86;;;:::o;17941:112::-;18024:22;18040:5;18024:22;:::i;:::-;18019:3;18012:35;17941:112;;:::o;18059:434::-;18204:4;18242:2;18231:9;18227:18;18219:26;;18255:71;18323:1;18312:9;18308:17;18299:6;18255:71;:::i;:::-;18336:72;18404:2;18393:9;18389:18;18380:6;18336:72;:::i;:::-;18418:68;18482:2;18471:9;18467:18;18458:6;18418:68;:::i;:::-;18059:434;;;;;;:::o;18499:943::-;18594:6;18602;18610;18618;18667:3;18655:9;18646:7;18642:23;18638:33;18635:120;;;18674:79;;:::i;:::-;18635:120;18794:1;18819:53;18864:7;18855:6;18844:9;18840:22;18819:53;:::i;:::-;18809:63;;18765:117;18921:2;18947:53;18992:7;18983:6;18972:9;18968:22;18947:53;:::i;:::-;18937:63;;18892:118;19049:2;19075:53;19120:7;19111:6;19100:9;19096:22;19075:53;:::i;:::-;19065:63;;19020:118;19205:2;19194:9;19190:18;19177:32;19236:18;19228:6;19225:30;19222:117;;;19258:79;;:::i;:::-;19222:117;19363:62;19417:7;19408:6;19397:9;19393:22;19363:62;:::i;:::-;19353:72;;19148:287;18499:943;;;;;;;:::o;19448:474::-;19516:6;19524;19573:2;19561:9;19552:7;19548:23;19544:32;19541:119;;;19579:79;;:::i;:::-;19541:119;19699:1;19724:53;19769:7;19760:6;19749:9;19745:22;19724:53;:::i;:::-;19714:63;;19670:117;19826:2;19852:53;19897:7;19888:6;19877:9;19873:22;19852:53;:::i;:::-;19842:63;;19797:118;19448:474;;;;;:::o;19928:::-;19996:6;20004;20053:2;20041:9;20032:7;20028:23;20024:32;20021:119;;;20059:79;;:::i;:::-;20021:119;20179:1;20204:53;20249:7;20240:6;20229:9;20225:22;20204:53;:::i;:::-;20194:63;;20150:117;20306:2;20332:53;20377:7;20368:6;20357:9;20353:22;20332:53;:::i;:::-;20322:63;;20277:118;19928:474;;;;;:::o;20408:182::-;20548:34;20544:1;20536:6;20532:14;20525:58;20408:182;:::o;20596:366::-;20738:3;20759:67;20823:2;20818:3;20759:67;:::i;:::-;20752:74;;20835:93;20924:3;20835:93;:::i;:::-;20953:2;20948:3;20944:12;20937:19;;20596:366;;;:::o;20968:419::-;21134:4;21172:2;21161:9;21157:18;21149:26;;21221:9;21215:4;21211:20;21207:1;21196:9;21192:17;21185:47;21249:131;21375:4;21249:131;:::i;:::-;21241:139;;20968:419;;;:::o;21393:180::-;21441:77;21438:1;21431:88;21538:4;21535:1;21528:15;21562:4;21559:1;21552:15;21579:320;21623:6;21660:1;21654:4;21650:12;21640:22;;21707:1;21701:4;21697:12;21728:18;21718:81;;21784:4;21776:6;21772:17;21762:27;;21718:81;21846:2;21838:6;21835:14;21815:18;21812:38;21809:84;;;21865:18;;:::i;:::-;21809:84;21630:269;21579:320;;;:::o;21905:98::-;21956:6;21990:5;21984:12;21974:22;;21905:98;;;:::o;22009:147::-;22110:11;22147:3;22132:18;;22009:147;;;;:::o;22162:373::-;22266:3;22294:38;22326:5;22294:38;:::i;:::-;22348:88;22429:6;22424:3;22348:88;:::i;:::-;22341:95;;22445:52;22490:6;22485:3;22478:4;22471:5;22467:16;22445:52;:::i;:::-;22522:6;22517:3;22513:16;22506:23;;22270:265;22162:373;;;;:::o;22541:79::-;22580:7;22609:5;22598:16;;22541:79;;;:::o;22626:157::-;22731:45;22751:24;22769:5;22751:24;:::i;:::-;22731:45;:::i;:::-;22726:3;22719:58;22626:157;;:::o;22789:412::-;22947:3;22969:93;23058:3;23049:6;22969:93;:::i;:::-;22962:100;;23072:75;23143:3;23134:6;23072:75;:::i;:::-;23172:2;23167:3;23163:12;23156:19;;23192:3;23185:10;;22789:412;;;;;:::o;23207:94::-;23240:8;23288:5;23284:2;23280:14;23259:35;;23207:94;;;:::o;23307:::-;23346:7;23375:20;23389:5;23375:20;:::i;:::-;23364:31;;23307:94;;;:::o;23407:100::-;23446:7;23475:26;23495:5;23475:26;:::i;:::-;23464:37;;23407:100;;;:::o;23513:157::-;23618:45;23638:24;23656:5;23638:24;:::i;:::-;23618:45;:::i;:::-;23613:3;23606:58;23513:157;;:::o;23676:256::-;23788:3;23803:75;23874:3;23865:6;23803:75;:::i;:::-;23903:2;23898:3;23894:12;23887:19;;23923:3;23916:10;;23676:256;;;;:::o;23938:180::-;24078:32;24074:1;24066:6;24062:14;24055:56;23938:180;:::o;24124:366::-;24266:3;24287:67;24351:2;24346:3;24287:67;:::i;:::-;24280:74;;24363:93;24452:3;24363:93;:::i;:::-;24481:2;24476:3;24472:12;24465:19;;24124:366;;;:::o;24496:419::-;24662:4;24700:2;24689:9;24685:18;24677:26;;24749:9;24743:4;24739:20;24735:1;24724:9;24720:17;24713:47;24777:131;24903:4;24777:131;:::i;:::-;24769:139;;24496:419;;;:::o;24921:170::-;25061:22;25057:1;25049:6;25045:14;25038:46;24921:170;:::o;25097:366::-;25239:3;25260:67;25324:2;25319:3;25260:67;:::i;:::-;25253:74;;25336:93;25425:3;25336:93;:::i;:::-;25454:2;25449:3;25445:12;25438:19;;25097:366;;;:::o;25469:419::-;25635:4;25673:2;25662:9;25658:18;25650:26;;25722:9;25716:4;25712:20;25708:1;25697:9;25693:17;25686:47;25750:131;25876:4;25750:131;:::i;:::-;25742:139;;25469:419;;;:::o;25894:180::-;25942:77;25939:1;25932:88;26039:4;26036:1;26029:15;26063:4;26060:1;26053:15;26080:305;26120:3;26139:20;26157:1;26139:20;:::i;:::-;26134:25;;26173:20;26191:1;26173:20;:::i;:::-;26168:25;;26327:1;26259:66;26255:74;26252:1;26249:81;26246:107;;;26333:18;;:::i;:::-;26246:107;26377:1;26374;26370:9;26363:16;;26080:305;;;;:::o;26391:170::-;26531:22;26527:1;26519:6;26515:14;26508:46;26391:170;:::o;26567:366::-;26709:3;26730:67;26794:2;26789:3;26730:67;:::i;:::-;26723:74;;26806:93;26895:3;26806:93;:::i;:::-;26924:2;26919:3;26915:12;26908:19;;26567:366;;;:::o;26939:419::-;27105:4;27143:2;27132:9;27128:18;27120:26;;27192:9;27186:4;27182:20;27178:1;27167:9;27163:17;27156:47;27220:131;27346:4;27220:131;:::i;:::-;27212:139;;26939:419;;;:::o;27364:348::-;27404:7;27427:20;27445:1;27427:20;:::i;:::-;27422:25;;27461:20;27479:1;27461:20;:::i;:::-;27456:25;;27649:1;27581:66;27577:74;27574:1;27571:81;27566:1;27559:9;27552:17;27548:105;27545:131;;;27656:18;;:::i;:::-;27545:131;27704:1;27701;27697:9;27686:20;;27364:348;;;;:::o;27718:169::-;27858:21;27854:1;27846:6;27842:14;27835:45;27718:169;:::o;27893:366::-;28035:3;28056:67;28120:2;28115:3;28056:67;:::i;:::-;28049:74;;28132:93;28221:3;28132:93;:::i;:::-;28250:2;28245:3;28241:12;28234:19;;27893:366;;;:::o;28265:419::-;28431:4;28469:2;28458:9;28454:18;28446:26;;28518:9;28512:4;28508:20;28504:1;28493:9;28489:17;28482:47;28546:131;28672:4;28546:131;:::i;:::-;28538:139;;28265:419;;;:::o;28690:170::-;28830:22;28826:1;28818:6;28814:14;28807:46;28690:170;:::o;28866:366::-;29008:3;29029:67;29093:2;29088:3;29029:67;:::i;:::-;29022:74;;29105:93;29194:3;29105:93;:::i;:::-;29223:2;29218:3;29214:12;29207:19;;28866:366;;;:::o;29238:419::-;29404:4;29442:2;29431:9;29427:18;29419:26;;29491:9;29485:4;29481:20;29477:1;29466:9;29462:17;29455:47;29519:131;29645:4;29519:131;:::i;:::-;29511:139;;29238:419;;;:::o;29663:173::-;29803:25;29799:1;29791:6;29787:14;29780:49;29663:173;:::o;29842:366::-;29984:3;30005:67;30069:2;30064:3;30005:67;:::i;:::-;29998:74;;30081:93;30170:3;30081:93;:::i;:::-;30199:2;30194:3;30190:12;30183:19;;29842:366;;;:::o;30214:419::-;30380:4;30418:2;30407:9;30403:18;30395:26;;30467:9;30461:4;30457:20;30453:1;30442:9;30438:17;30431:47;30495:131;30621:4;30495:131;:::i;:::-;30487:139;;30214:419;;;:::o;30639:181::-;30779:33;30775:1;30767:6;30763:14;30756:57;30639:181;:::o;30826:366::-;30968:3;30989:67;31053:2;31048:3;30989:67;:::i;:::-;30982:74;;31065:93;31154:3;31065:93;:::i;:::-;31183:2;31178:3;31174:12;31167:19;;30826:366;;;:::o;31198:419::-;31364:4;31402:2;31391:9;31387:18;31379:26;;31451:9;31445:4;31441:20;31437:1;31426:9;31422:17;31415:47;31479:131;31605:4;31479:131;:::i;:::-;31471:139;;31198:419;;;:::o;31623:180::-;31671:77;31668:1;31661:88;31768:4;31765:1;31758:15;31792:4;31789:1;31782:15;31809:185;31849:1;31866:20;31884:1;31866:20;:::i;:::-;31861:25;;31900:20;31918:1;31900:20;:::i;:::-;31895:25;;31939:1;31929:35;;31944:18;;:::i;:::-;31929:35;31986:1;31983;31979:9;31974:14;;31809:185;;;;:::o;32000:114::-;;:::o;32120:398::-;32279:3;32300:83;32381:1;32376:3;32300:83;:::i;:::-;32293:90;;32392:93;32481:3;32392:93;:::i;:::-;32510:1;32505:3;32501:11;32494:18;;32120:398;;;:::o;32524:379::-;32708:3;32730:147;32873:3;32730:147;:::i;:::-;32723:154;;32894:3;32887:10;;32524:379;;;:::o;32909:180::-;32957:77;32954:1;32947:88;33054:4;33051:1;33044:15;33078:4;33075:1;33068:15;33095:233;33134:3;33157:24;33175:5;33157:24;:::i;:::-;33148:33;;33203:66;33196:5;33193:77;33190:103;;;33273:18;;:::i;:::-;33190:103;33320:1;33313:5;33309:13;33302:20;;33095:233;;;:::o;33334:176::-;33474:28;33470:1;33462:6;33458:14;33451:52;33334:176;:::o;33516:366::-;33658:3;33679:67;33743:2;33738:3;33679:67;:::i;:::-;33672:74;;33755:93;33844:3;33755:93;:::i;:::-;33873:2;33868:3;33864:12;33857:19;;33516:366;;;:::o;33888:419::-;34054:4;34092:2;34081:9;34077:18;34069:26;;34141:9;34135:4;34131:20;34127:1;34116:9;34112:17;34105:47;34169:131;34295:4;34169:131;:::i;:::-;34161:139;;33888:419;;;:::o;34313:178::-;34453:30;34449:1;34441:6;34437:14;34430:54;34313:178;:::o;34497:366::-;34639:3;34660:67;34724:2;34719:3;34660:67;:::i;:::-;34653:74;;34736:93;34825:3;34736:93;:::i;:::-;34854:2;34849:3;34845:12;34838:19;;34497:366;;;:::o;34869:419::-;35035:4;35073:2;35062:9;35058:18;35050:26;;35122:9;35116:4;35112:20;35108:1;35097:9;35093:17;35086:47;35150:131;35276:4;35150:131;:::i;:::-;35142:139;;34869:419;;;:::o;35294:143::-;35351:5;35382:6;35376:13;35367:22;;35398:33;35425:5;35398:33;:::i;:::-;35294:143;;;;:::o;35443:351::-;35513:6;35562:2;35550:9;35541:7;35537:23;35533:32;35530:119;;;35568:79;;:::i;:::-;35530:119;35688:1;35713:64;35769:7;35760:6;35749:9;35745:22;35713:64;:::i;:::-;35703:74;;35659:128;35443:351;;;;:::o;35800:163::-;35940:15;35936:1;35928:6;35924:14;35917:39;35800:163;:::o;35969:366::-;36111:3;36132:67;36196:2;36191:3;36132:67;:::i;:::-;36125:74;;36208:93;36297:3;36208:93;:::i;:::-;36326:2;36321:3;36317:12;36310:19;;35969:366;;;:::o;36341:419::-;36507:4;36545:2;36534:9;36530:18;36522:26;;36594:9;36588:4;36584:20;36580:1;36569:9;36565:17;36558:47;36622:131;36748:4;36622:131;:::i;:::-;36614:139;;36341:419;;;:::o;36766:167::-;36906:19;36902:1;36894:6;36890:14;36883:43;36766:167;:::o;36939:366::-;37081:3;37102:67;37166:2;37161:3;37102:67;:::i;:::-;37095:74;;37178:93;37267:3;37178:93;:::i;:::-;37296:2;37291:3;37287:12;37280:19;;36939:366;;;:::o;37311:419::-;37477:4;37515:2;37504:9;37500:18;37492:26;;37564:9;37558:4;37554:20;37550:1;37539:9;37535:17;37528:47;37592:131;37718:4;37592:131;:::i;:::-;37584:139;;37311:419;;;:::o;37736:230::-;37876:34;37872:1;37864:6;37860:14;37853:58;37945:13;37940:2;37932:6;37928:15;37921:38;37736:230;:::o;37972:366::-;38114:3;38135:67;38199:2;38194:3;38135:67;:::i;:::-;38128:74;;38211:93;38300:3;38211:93;:::i;:::-;38329:2;38324:3;38320:12;38313:19;;37972:366;;;:::o;38344:419::-;38510:4;38548:2;38537:9;38533:18;38525:26;;38597:9;38591:4;38587:20;38583:1;38572:9;38568:17;38561:47;38625:131;38751:4;38625:131;:::i;:::-;38617:139;;38344:419;;;:::o;38769:545::-;38942:4;38980:3;38969:9;38965:19;38957:27;;38994:71;39062:1;39051:9;39047:17;39038:6;38994:71;:::i;:::-;39075:68;39139:2;39128:9;39124:18;39115:6;39075:68;:::i;:::-;39153:72;39221:2;39210:9;39206:18;39197:6;39153:72;:::i;:::-;39235;39303:2;39292:9;39288:18;39279:6;39235:72;:::i;:::-;38769:545;;;;;;;:::o;39320:221::-;39460:34;39456:1;39448:6;39444:14;39437:58;39529:4;39524:2;39516:6;39512:15;39505:29;39320:221;:::o;39547:366::-;39689:3;39710:67;39774:2;39769:3;39710:67;:::i;:::-;39703:74;;39786:93;39875:3;39786:93;:::i;:::-;39904:2;39899:3;39895:12;39888:19;;39547:366;;;:::o;39919:419::-;40085:4;40123:2;40112:9;40108:18;40100:26;;40172:9;40166:4;40162:20;40158:1;40147:9;40143:17;40136:47;40200:131;40326:4;40200:131;:::i;:::-;40192:139;;39919:419;;;:::o;40344:178::-;40484:30;40480:1;40472:6;40468:14;40461:54;40344:178;:::o;40528:366::-;40670:3;40691:67;40755:2;40750:3;40691:67;:::i;:::-;40684:74;;40767:93;40856:3;40767:93;:::i;:::-;40885:2;40880:3;40876:12;40869:19;;40528:366;;;:::o;40900:419::-;41066:4;41104:2;41093:9;41089:18;41081:26;;41153:9;41147:4;41143:20;41139:1;41128:9;41124:17;41117:47;41181:131;41307:4;41181:131;:::i;:::-;41173:139;;40900:419;;;:::o;41325:221::-;41465:34;41461:1;41453:6;41449:14;41442:58;41534:4;41529:2;41521:6;41517:15;41510:29;41325:221;:::o;41552:366::-;41694:3;41715:67;41779:2;41774:3;41715:67;:::i;:::-;41708:74;;41791:93;41880:3;41791:93;:::i;:::-;41909:2;41904:3;41900:12;41893:19;;41552:366;;;:::o;41924:419::-;42090:4;42128:2;42117:9;42113:18;42105:26;;42177:9;42171:4;42167:20;42163:1;42152:9;42148:17;42141:47;42205:131;42331:4;42205:131;:::i;:::-;42197:139;;41924:419;;;:::o;42349:174::-;42489:26;42485:1;42477:6;42473:14;42466:50;42349:174;:::o;42529:366::-;42671:3;42692:67;42756:2;42751:3;42692:67;:::i;:::-;42685:74;;42768:93;42857:3;42768:93;:::i;:::-;42886:2;42881:3;42877:12;42870:19;;42529:366;;;:::o;42901:419::-;43067:4;43105:2;43094:9;43090:18;43082:26;;43154:9;43148:4;43144:20;43140:1;43129:9;43125:17;43118:47;43182:131;43308:4;43182:131;:::i;:::-;43174:139;;42901:419;;;:::o;43326:234::-;43466:34;43462:1;43454:6;43450:14;43443:58;43535:17;43530:2;43522:6;43518:15;43511:42;43326:234;:::o;43566:366::-;43708:3;43729:67;43793:2;43788:3;43729:67;:::i;:::-;43722:74;;43805:93;43894:3;43805:93;:::i;:::-;43923:2;43918:3;43914:12;43907:19;;43566:366;;;:::o;43938:419::-;44104:4;44142:2;44131:9;44127:18;44119:26;;44191:9;44185:4;44181:20;44177:1;44166:9;44162:17;44155:47;44219:131;44345:4;44219:131;:::i;:::-;44211:139;;43938:419;;;:::o;44363:148::-;44465:11;44502:3;44487:18;;44363:148;;;;:::o;44517:141::-;44566:4;44589:3;44581:11;;44612:3;44609:1;44602:14;44646:4;44643:1;44633:18;44625:26;;44517:141;;;:::o;44688:845::-;44791:3;44828:5;44822:12;44857:36;44883:9;44857:36;:::i;:::-;44909:89;44991:6;44986:3;44909:89;:::i;:::-;44902:96;;45029:1;45018:9;45014:17;45045:1;45040:137;;;;45191:1;45186:341;;;;45007:520;;45040:137;45124:4;45120:9;45109;45105:25;45100:3;45093:38;45160:6;45155:3;45151:16;45144:23;;45040:137;;45186:341;45253:38;45285:5;45253:38;:::i;:::-;45313:1;45327:154;45341:6;45338:1;45335:13;45327:154;;;45415:7;45409:14;45405:1;45400:3;45396:11;45389:35;45465:1;45456:7;45452:15;45441:26;;45363:4;45360:1;45356:12;45351:17;;45327:154;;;45510:6;45505:3;45501:16;45494:23;;45193:334;;45007:520;;44795:738;;44688:845;;;;:::o;45539:377::-;45645:3;45673:39;45706:5;45673:39;:::i;:::-;45728:89;45810:6;45805:3;45728:89;:::i;:::-;45721:96;;45826:52;45871:6;45866:3;45859:4;45852:5;45848:16;45826:52;:::i;:::-;45903:6;45898:3;45894:16;45887:23;;45649:267;45539:377;;;;:::o;45922:583::-;46144:3;46166:92;46254:3;46245:6;46166:92;:::i;:::-;46159:99;;46275:95;46366:3;46357:6;46275:95;:::i;:::-;46268:102;;46387:92;46475:3;46466:6;46387:92;:::i;:::-;46380:99;;46496:3;46489:10;;45922:583;;;;;;:::o;46511:225::-;46651:34;46647:1;46639:6;46635:14;46628:58;46720:8;46715:2;46707:6;46703:15;46696:33;46511:225;:::o;46742:366::-;46884:3;46905:67;46969:2;46964:3;46905:67;:::i;:::-;46898:74;;46981:93;47070:3;46981:93;:::i;:::-;47099:2;47094:3;47090:12;47083:19;;46742:366;;;:::o;47114:419::-;47280:4;47318:2;47307:9;47303:18;47295:26;;47367:9;47361:4;47357:20;47353:1;47342:9;47338:17;47331:47;47395:131;47521:4;47395:131;:::i;:::-;47387:139;;47114:419;;;:::o;47539:168::-;47622:11;47656:6;47651:3;47644:19;47696:4;47691:3;47687:14;47672:29;;47539:168;;;;:::o;47713:360::-;47799:3;47827:38;47859:5;47827:38;:::i;:::-;47881:70;47944:6;47939:3;47881:70;:::i;:::-;47874:77;;47960:52;48005:6;48000:3;47993:4;47986:5;47982:16;47960:52;:::i;:::-;48037:29;48059:6;48037:29;:::i;:::-;48032:3;48028:39;48021:46;;47803:270;47713:360;;;;:::o;48079:640::-;48274:4;48312:3;48301:9;48297:19;48289:27;;48326:71;48394:1;48383:9;48379:17;48370:6;48326:71;:::i;:::-;48407:72;48475:2;48464:9;48460:18;48451:6;48407:72;:::i;:::-;48489;48557:2;48546:9;48542:18;48533:6;48489:72;:::i;:::-;48608:9;48602:4;48598:20;48593:2;48582:9;48578:18;48571:48;48636:76;48707:4;48698:6;48636:76;:::i;:::-;48628:84;;48079:640;;;;;;;:::o;48725:141::-;48781:5;48812:6;48806:13;48797:22;;48828:32;48854:5;48828:32;:::i;:::-;48725:141;;;;:::o;48872:349::-;48941:6;48990:2;48978:9;48969:7;48965:23;48961:32;48958:119;;;48996:79;;:::i;:::-;48958:119;49116:1;49141:63;49196:7;49187:6;49176:9;49172:22;49141:63;:::i;:::-;49131:73;;49087:127;48872:349;;;;:::o;49227:191::-;49267:4;49287:20;49305:1;49287:20;:::i;:::-;49282:25;;49321:20;49339:1;49321:20;:::i;:::-;49316:25;;49360:1;49357;49354:8;49351:34;;;49365:18;;:::i;:::-;49351:34;49410:1;49407;49403:9;49395:17;;49227:191;;;;:::o;49424:176::-;49456:1;49473:20;49491:1;49473:20;:::i;:::-;49468:25;;49507:20;49525:1;49507:20;:::i;:::-;49502:25;;49546:1;49536:35;;49551:18;;:::i;:::-;49536:35;49592:1;49589;49585:9;49580:14;;49424:176;;;;:::o

Swarm Source

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