ETH Price: $3,166.81 (-7.38%)
Gas: 6 Gwei

Token

MetaWomenNFT2 (MW2)
 

Overview

Max Total Supply

227 MW2

Holders

91

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
MetaWomenNFT2

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/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/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/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/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/token/ERC721/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/utils/Address.sol


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/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: erc721a/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 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 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/MetaWomenNFT2.sol


pragma solidity ^0.8.7;




contract MetaWomenNFT2 is Ownable, ERC721A, ReentrancyGuard {
    
    // Token/Mint data
    uint256 public mMaxTokenSupply = 8350;
    uint256 public mCapPublic = 20;
    uint256 public mCapPresale = 3;
    uint256 public mPublicPrice = 0.08 ether;
    uint256 public mPresalePrice = 0.06 ether;
    bool public mPublicSaleIsActive = false;
    bool public mPresaleIsActive = false;
    string private mBaseURI = "";
    bytes32 public mMerkleRoot;

    // Payout data
    uint8 private mPayoutThreshold = 20;

    constructor() ERC721A("MetaWomenNFT2", "MW2") {
    }

    /// Functions for minting

    function mint(uint256 quantity) external payable {
        require(mPublicSaleIsActive, "Public sale must be active to mint");
        require(quantity <= mCapPublic, "Purchase quantity exceeds cap");
        require(quantity + totalSupply() <= mMaxTokenSupply, "Purchase would exceed max supply");
        require(quantity * mPublicPrice <= msg.value, "Ether value sent is not enough");

        _safeMint(msg.sender, quantity);
    }

    function mintPresale(uint256 quantity, bytes32[] calldata proof) external payable {
        require(mPresaleIsActive, "Presale must be active to mint");
        require(quantity <= mCapPresale, "Purchase quantity exceeds cap");
        require(quantity + totalSupply() <= mMaxTokenSupply, "Purchase would exceed max supply");
        require(quantity * mPresalePrice <= msg.value, "Ether value sent is not enough");
        require(MerkleProof.verify(proof, mMerkleRoot, keccak256(abi.encodePacked(_msgSender()))),"Address not whitelisted");
        
        _safeMint(msg.sender, quantity);
    }

    function reserveMint(address[] calldata recipients, uint256[] calldata quantities) external onlyOwner nonReentrant {
        require(recipients.length == quantities.length, "Array lengths must match");
        
        // Ensure total quantities doesn't exceed supply
        uint256 totalQuantity = 0;
        for(uint256 i = 0; i < quantities.length; i++){
            totalQuantity += quantities[i];
        }
        require(totalQuantity + totalSupply() <= mMaxTokenSupply, "Reserve mint would exceed max supply");
        
        // Mint for each address
        for (uint256 i = 0; i < recipients.length; i++) {
            _safeMint(recipients[i], quantities[i]);
        }
    }

    // /// Functions for managing token metadata

    function setBaseURI(string calldata baseURI) external onlyOwner {
        mBaseURI = baseURI;
    }

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

    /// Functions to change mint state - ONLY OWNER

    function flipPublicSaleState() external onlyOwner {
         mPublicSaleIsActive = !mPublicSaleIsActive;
    }

    function flipPresaleState() external onlyOwner {
         mPresaleIsActive = !mPresaleIsActive;
    }

    function setMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        mMerkleRoot = merkleRoot;
    }
    
    // /// Functions for ether withdrawal - ONLY OWNER

    function thresholdWithdraw() external onlyOwner nonReentrant {
        require(totalSupply() >= mMaxTokenSupply * mPayoutThreshold / 100, "Have not met current threshold");

        // L 0.75 - 0xC23f46Fd7bE3ef365C0bf243e34e26505D7f9298
        address mPM = 0x078dC8FF71Ebf938ffe746De7e2c926f64b14F1E;
        address mTE = 0x12D02E5193e547f4dC5c43CFAab2B3bEb1986cc4;
        address mCN = 0xCCc0c77AA850557aF8d48C9617ea65521E5F8485;
        address mCharity = 0xe41f3C86a95190D67084792678263B63CCeFBC78;
        address mCompany = 0x898D764fb76a566c27692d5077f01c2FbB93a72C;

        bool success = false;
        if(mPayoutThreshold == 20){
            (success, ) = payable(mPM).call{value: 25 ether}("");
            require(success, "Transfer to PM failed.");
            (success, ) = payable(mCharity).call{value: 17.5 ether}("");
            require(success, "Transfer to Charity failed.");
            (success, ) = payable(mTE).call{value: 6 ether}("");
            require(success, "Transfer to TE failed.");
            (success, ) = payable(mCN).call{value: 6 ether}("");
            require(success, "Transfer to CN failed.");
            mPayoutThreshold += 20;
        }
        else if(mPayoutThreshold == 40){
            (success, ) = payable(mPM).call{value: 25 ether}("");
            require(success, "Transfer to PM failed.");
            (success, ) = payable(mCompany).call{value: 30 ether}("");
            require(success, "Transfer to Company failed.");
            (success, ) = payable(mTE).call{value: 10 ether}("");
            require(success, "Transfer to TE failed.");
            (success, ) = payable(mCN).call{value: 10 ether}("");
            require(success, "Transfer to CN failed.");
            mPayoutThreshold += 20;
        }
        else if(mPayoutThreshold == 60){
            (success, ) = payable(mCompany).call{value: 18 ether}("");
            require(success, "Transfer to Company failed.");
            (success, ) = payable(mTE).call{value: 25 ether}("");
            require(success, "Transfer to TE failed.");
            (success, ) = payable(mCN).call{value: 25 ether}("");
            require(success, "Transfer to CN failed.");
            mPayoutThreshold += 20;
        }
        else if(mPayoutThreshold == 80){
            (success, ) = payable(mCompany).call{value: 30 ether}("");
            require(success, "Transfer to Company failed.");
            (success, ) = payable(mTE).call{value: 20 ether}("");
            require(success, "Transfer to TE failed.");
            (success, ) = payable(mCN).call{value: 20 ether}("");
            require(success, "Transfer to CN failed.");
            mPayoutThreshold += 20;
        }
        else if(mPayoutThreshold == 100){
            (success, ) = payable(mCompany).call{value: 50 ether}("");
            require(success, "Transfer to Company failed.");
            (success, ) = payable(mTE).call{value: 20 ether}("");
            require(success, "Transfer to TE failed.");
            (success, ) = payable(mCN).call{value: 20 ether}("");
            require(success, "Transfer to CN failed.");
            mPayoutThreshold += 20;
        }
    }

    function forceWithdraw(uint256 amount, address payable to) external onlyOwner nonReentrant {
        (bool success, ) = payable(to).call{value: amount}("");
        require(success, "Transfer failed.");
    }
}

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":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"forceWithdraw","outputs":[],"stateMutability":"nonpayable","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mCapPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mCapPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mMaxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mPresaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mPresalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mPublicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mPublicSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thresholdWithdraw","outputs":[],"stateMutability":"nonpayable","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"}]

608060405261209e600a556014600b556003600c5567011c37937e080000600d5566d529ae9e860000600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff02191690831515021790555060405180602001604052806000815250601090805190602001906200008892919062000268565b506014601260006101000a81548160ff021916908360ff160217905550348015620000b257600080fd5b506040518060400160405280600d81526020017f4d657461576f6d656e4e465432000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d573200000000000000000000000000000000000000000000000000000000008152506200013f620001336200019760201b60201c565b6200019f60201b60201c565b81600390805190602001906200015792919062000268565b5080600490805190602001906200017092919062000268565b50620001816200026360201b60201c565b600181905550505060016009819055506200037d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620002769062000318565b90600052602060002090601f0160209004810192826200029a5760008555620002e6565b82601f10620002b557805160ff1916838001178555620002e6565b82800160010185558215620002e6579182015b82811115620002e5578251825591602001919060010190620002c8565b5b509050620002f59190620002f9565b5090565b5b8082111562000314576000816000905550600101620002fa565b5090565b600060028204905060018216806200033157607f821691505b602082108114156200034857620003476200034e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615367806200038d6000396000f3fe6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063b88d4fde116100a0578063c87b56dd1161006f578063c87b56dd146106b9578063dbe72ba6146106f6578063e985e9c514610721578063f2fde38b1461075e578063f81227d414610787576101f9565b8063b88d4fde1461060f578063bc542c4514610638578063c0a58fa914610663578063c85a18911461068e576101f9565b8063a0712d68116100dc578063a0712d6814610588578063a10866ef146105a4578063a22cb465146105bb578063a2cbd711146105e4576101f9565b80638da5cb5b146104f25780638ea115ef1461051d57806395d89b4114610534578063963565e11461055f576101f9565b806342842e0e116101905780636352211e1161015f5780636352211e1461040d57806370a082311461044a578063715018a6146104875780637cb647591461049e5780638734c6ea146104c7576101f9565b806342842e0e146103675780634ef020b21461039057806355f804b3146103b95780635ce5008d146103e2576101f9565b80630c0a6b5e116101cc5780630c0a6b5e146102cc5780630ded5875146102e857806318160ddd1461031357806323b872dd1461033e576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906141e8565b61079e565b60405161023291906147a6565b60405180910390f35b34801561024757600080fd5b50610250610880565b60405161025d91906147dc565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061428f565b610912565b60405161029a919061473f565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906140fa565b61098e565b005b6102e660048036038101906102e191906142fc565b610a99565b005b3480156102f457600080fd5b506102fd610c9d565b60405161030a9190614a3e565b60405180910390f35b34801561031f57600080fd5b50610328610ca3565b6040516103359190614a3e565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190613fe4565b610cba565b005b34801561037357600080fd5b5061038e60048036038101906103899190613fe4565b610cca565b005b34801561039c57600080fd5b506103b760048036038101906103b291906142bc565b610cea565b005b3480156103c557600080fd5b506103e060048036038101906103db9190614242565b610e6d565b005b3480156103ee57600080fd5b506103f7610eff565b6040516104049190614a3e565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f919061428f565b610f05565b604051610441919061473f565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190613f77565b610f1b565b60405161047e9190614a3e565b60405180910390f35b34801561049357600080fd5b5061049c610feb565b005b3480156104aa57600080fd5b506104c560048036038101906104c091906141bb565b611073565b005b3480156104d357600080fd5b506104dc6110f9565b6040516104e991906147a6565b60405180910390f35b3480156104fe57600080fd5b5061050761110c565b604051610514919061473f565b60405180910390f35b34801561052957600080fd5b50610532611135565b005b34801561054057600080fd5b506105496120b5565b60405161055691906147dc565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061413a565b612147565b005b6105a2600480360381019061059d919061428f565b612375565b005b3480156105b057600080fd5b506105b96124bd565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906140ba565b612565565b005b3480156105f057600080fd5b506105f96126dd565b60405161060691906147a6565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190614037565b6126f0565b005b34801561064457600080fd5b5061064d61276c565b60405161065a9190614a3e565b60405180910390f35b34801561066f57600080fd5b50610678612772565b6040516106859190614a3e565b60405180910390f35b34801561069a57600080fd5b506106a3612778565b6040516106b09190614a3e565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db919061428f565b61277e565b6040516106ed91906147dc565b60405180910390f35b34801561070257600080fd5b5061070b61281d565b60405161071891906147c1565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190613fa4565b612823565b60405161075591906147a6565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613f77565b6128b7565b005b34801561079357600080fd5b5061079c6129af565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610879575061087882612a57565b5b9050919050565b60606003805461088f90614d28565b80601f01602080910402602001604051908101604052809291908181526020018280546108bb90614d28565b80156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b5050505050905090565b600061091d82612ac1565b610953576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099982610f05565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a01576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a20612b0f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a525750610a5081610a4b612b0f565b612823565b155b15610a89576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a94838383612b17565b505050565b600f60019054906101000a900460ff16610ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adf9061487e565b60405180910390fd5b600c54831115610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490614a1e565b60405180910390fd5b600a54610b38610ca3565b84610b439190614afd565b1115610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b9061489e565b60405180910390fd5b34600e5484610b939190614bbb565b1115610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb906149fe565b60405180910390fd5b610c4f828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601154610c24612b0f565b604051602001610c3491906146eb565b60405160208183030381529060405280519060200120612bc9565b610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c859061491e565b60405180910390fd5b610c983384612be0565b505050565b600b5481565b6000610cad612bfe565b6002546001540303905090565b610cc5838383612c03565b505050565b610ce5838383604051806020016040528060008152506126f0565b505050565b610cf2612b0f565b73ffffffffffffffffffffffffffffffffffffffff16610d1061110c565b73ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d906148fe565b60405180910390fd5b60026009541415610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da3906149be565b60405180910390fd5b600260098190555060008173ffffffffffffffffffffffffffffffffffffffff1683604051610dda9061472a565b60006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e579061497e565b60405180910390fd5b5060016009819055505050565b610e75612b0f565b73ffffffffffffffffffffffffffffffffffffffff16610e9361110c565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906148fe565b60405180910390fd5b818160109190610efa929190613c36565b505050565b600e5481565b6000610f10826130f4565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f83576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ff3612b0f565b73ffffffffffffffffffffffffffffffffffffffff1661101161110c565b73ffffffffffffffffffffffffffffffffffffffff1614611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e906148fe565b60405180910390fd5b6110716000613383565b565b61107b612b0f565b73ffffffffffffffffffffffffffffffffffffffff1661109961110c565b73ffffffffffffffffffffffffffffffffffffffff16146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e6906148fe565b60405180910390fd5b8060118190555050565b600f60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61113d612b0f565b73ffffffffffffffffffffffffffffffffffffffff1661115b61110c565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a8906148fe565b60405180910390fd5b600260095414156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906149be565b60405180910390fd5b60026009819055506064601260009054906101000a900460ff1660ff16600a546112219190614bbb565b61122b9190614b8a565b611233610ca3565b1015611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b9061483e565b60405180910390fd5b600073078dc8ff71ebf938ffe746de7e2c926f64b14f1e905060007312d02e5193e547f4dc5c43cfaab2b3beb1986cc49050600073ccc0c77aa850557af8d48c9617ea65521e5f84859050600073e41f3c86a95190d67084792678263b63ccefbc789050600073898d764fb76a566c27692d5077f01c2fbb93a72c905060006014601260009054906101000a900460ff1660ff16141561161b578573ffffffffffffffffffffffffffffffffffffffff1668015af1d78b58c4000060405161133b9061472a565b60006040518083038185875af1925050503d8060008114611378576040519150601f19603f3d011682016040523d82523d6000602084013e61137d565b606091505b505080915050806113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba9061485e565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1667f2dc7d47f15600006040516113ef9061472a565b60006040518083038185875af1925050503d806000811461142c576040519150601f19603f3d011682016040523d82523d6000602084013e611431565b606091505b50508091505080611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e9061493e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff166753444835ec5800006040516114a39061472a565b60006040518083038185875af1925050503d80600081146114e0576040519150601f19603f3d011682016040523d82523d6000602084013e6114e5565b606091505b5050809150508061152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229061499e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166753444835ec5800006040516115579061472a565b60006040518083038185875af1925050503d8060008114611594576040519150601f19603f3d011682016040523d82523d6000602084013e611599565b606091505b505080915050806115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d6906149de565b60405180910390fd5b6014601260008282829054906101000a900460ff166115fe9190614b53565b92506101000a81548160ff021916908360ff1602179055506120a5565b6028601260009054906101000a900460ff1660ff161415611944578573ffffffffffffffffffffffffffffffffffffffff1668015af1d78b58c400006040516116639061472a565b60006040518083038185875af1925050503d80600081146116a0576040519150601f19603f3d011682016040523d82523d6000602084013e6116a5565b606091505b505080915050806116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e29061485e565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166801a055690d9db800006040516117189061472a565b60006040518083038185875af1925050503d8060008114611755576040519150601f19603f3d011682016040523d82523d6000602084013e61175a565b606091505b505080915050806117a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611797906148de565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16678ac7230489e800006040516117cc9061472a565b60006040518083038185875af1925050503d8060008114611809576040519150601f19603f3d011682016040523d82523d6000602084013e61180e565b606091505b50508091505080611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b9061499e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff16678ac7230489e800006040516118809061472a565b60006040518083038185875af1925050503d80600081146118bd576040519150601f19603f3d011682016040523d82523d6000602084013e6118c2565b606091505b50508091505080611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff906149de565b60405180910390fd5b6014601260008282829054906101000a900460ff166119279190614b53565b92506101000a81548160ff021916908360ff1602179055506120a4565b603c601260009054906101000a900460ff1660ff161415611bb9578173ffffffffffffffffffffffffffffffffffffffff1667f9ccd8a1c508000060405161198b9061472a565b60006040518083038185875af1925050503d80600081146119c8576040519150601f19603f3d011682016040523d82523d6000602084013e6119cd565b606091505b50508091505080611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906148de565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff1668015af1d78b58c40000604051611a409061472a565b60006040518083038185875af1925050503d8060008114611a7d576040519150601f19603f3d011682016040523d82523d6000602084013e611a82565b606091505b50508091505080611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf9061499e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1668015af1d78b58c40000604051611af59061472a565b60006040518083038185875af1925050503d8060008114611b32576040519150601f19603f3d011682016040523d82523d6000602084013e611b37565b606091505b50508091505080611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b74906149de565b60405180910390fd5b6014601260008282829054906101000a900460ff16611b9c9190614b53565b92506101000a81548160ff021916908360ff1602179055506120a3565b6050601260009054906101000a900460ff1660ff161415611e2f578173ffffffffffffffffffffffffffffffffffffffff166801a055690d9db80000604051611c019061472a565b60006040518083038185875af1925050503d8060008114611c3e576040519150601f19603f3d011682016040523d82523d6000602084013e611c43565b606091505b50508091505080611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c80906148de565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff166801158e460913d00000604051611cb69061472a565b60006040518083038185875af1925050503d8060008114611cf3576040519150601f19603f3d011682016040523d82523d6000602084013e611cf8565b606091505b50508091505080611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d359061499e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166801158e460913d00000604051611d6b9061472a565b60006040518083038185875af1925050503d8060008114611da8576040519150601f19603f3d011682016040523d82523d6000602084013e611dad565b606091505b50508091505080611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea906149de565b60405180910390fd5b6014601260008282829054906101000a900460ff16611e129190614b53565b92506101000a81548160ff021916908360ff1602179055506120a2565b6064601260009054906101000a900460ff1660ff1614156120a1578173ffffffffffffffffffffffffffffffffffffffff166802b5e3af16b1880000604051611e779061472a565b60006040518083038185875af1925050503d8060008114611eb4576040519150601f19603f3d011682016040523d82523d6000602084013e611eb9565b606091505b50508091505080611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef6906148de565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff166801158e460913d00000604051611f2c9061472a565b60006040518083038185875af1925050503d8060008114611f69576040519150601f19603f3d011682016040523d82523d6000602084013e611f6e565b606091505b50508091505080611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab9061499e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166801158e460913d00000604051611fe19061472a565b60006040518083038185875af1925050503d806000811461201e576040519150601f19603f3d011682016040523d82523d6000602084013e612023565b606091505b50508091505080612069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612060906149de565b60405180910390fd5b6014601260008282829054906101000a900460ff166120889190614b53565b92506101000a81548160ff021916908360ff1602179055505b5b5b5b5b5050505050506001600981905550565b6060600480546120c490614d28565b80601f01602080910402602001604051908101604052809291908181526020018280546120f090614d28565b801561213d5780601f106121125761010080835404028352916020019161213d565b820191906000526020600020905b81548152906001019060200180831161212057829003601f168201915b5050505050905090565b61214f612b0f565b73ffffffffffffffffffffffffffffffffffffffff1661216d61110c565b73ffffffffffffffffffffffffffffffffffffffff16146121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba906148fe565b60405180910390fd5b60026009541415612209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612200906149be565b60405180910390fd5b6002600981905550818190508484905014612259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122509061495e565b60405180910390fd5b6000805b838390508110156122a25783838281811061227b5761227a614eb6565b5b905060200201358261228d9190614afd565b9150808061229a90614d8b565b91505061225d565b50600a546122ae610ca3565b826122b99190614afd565b11156122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f1906148be565b60405180910390fd5b60005b858590508110156123655761235286868381811061231e5761231d614eb6565b5b90506020020160208101906123339190613f77565b85858481811061234657612345614eb6565b5b90506020020135612be0565b808061235d90614d8b565b9150506122fd565b5050600160098190555050505050565b600f60009054906101000a900460ff166123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bb906147fe565b60405180910390fd5b600b54811115612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090614a1e565b60405180910390fd5b600a54612414610ca3565b8261241f9190614afd565b1115612460576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124579061489e565b60405180910390fd5b34600d548261246f9190614bbb565b11156124b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a7906149fe565b60405180910390fd5b6124ba3382612be0565b50565b6124c5612b0f565b73ffffffffffffffffffffffffffffffffffffffff166124e361110c565b73ffffffffffffffffffffffffffffffffffffffff1614612539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612530906148fe565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b61256d612b0f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006125df612b0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661268c612b0f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126d191906147a6565b60405180910390a35050565b600f60019054906101000a900460ff1681565b6126fb848484612c03565b61271a8373ffffffffffffffffffffffffffffffffffffffff16613447565b801561272f575061272d8484848461346a565b155b15612766576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b600a5481565b600d5481565b606061278982612ac1565b6127bf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006127c96135ca565b90506000815114156127ea5760405180602001604052806000815250612815565b806127f48461365c565b604051602001612805929190614706565b6040516020818303038152906040525b915050919050565b60115481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128bf612b0f565b73ffffffffffffffffffffffffffffffffffffffff166128dd61110c565b73ffffffffffffffffffffffffffffffffffffffff1614612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a906148fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a9061481e565b60405180910390fd5b6129ac81613383565b50565b6129b7612b0f565b73ffffffffffffffffffffffffffffffffffffffff166129d561110c565b73ffffffffffffffffffffffffffffffffffffffff1614612a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a22906148fe565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612acc612bfe565b11158015612adb575060015482105b8015612b08575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600082612bd685846137bd565b1490509392505050565b612bfa828260405180602001604052806000815250613832565b5050565b600090565b6000612c0e826130f4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c35612b0f565b73ffffffffffffffffffffffffffffffffffffffff161480612c685750612c678260000151612c62612b0f565b612823565b5b80612cad5750612c76612b0f565b73ffffffffffffffffffffffffffffffffffffffff16612c9584610912565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ce6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d4f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612db6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dc38585856001613844565b612dd36000848460000151612b17565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613084576001548110156130835782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130ed858585600161384a565b5050505050565b6130fc613cbc565b60008290508061310a612bfe565b11158015613119575060015481105b1561334c576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161334a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461322e57809250505061337e565b5b60011561334957818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461334457809250505061337e565b61322f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613490612b0f565b8786866040518563ffffffff1660e01b81526004016134b2949392919061475a565b602060405180830381600087803b1580156134cc57600080fd5b505af19250505080156134fd57506040513d601f19601f820116820180604052508101906134fa9190614215565b60015b613577573d806000811461352d576040519150601f19603f3d011682016040523d82523d6000602084013e613532565b606091505b5060008151141561356f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546135d990614d28565b80601f016020809104026020016040519081016040528092919081815260200182805461360590614d28565b80156136525780601f1061362757610100808354040283529160200191613652565b820191906000526020600020905b81548152906001019060200180831161363557829003601f168201915b5050505050905090565b606060008214156136a4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137b8565b600082905060005b600082146136d65780806136bf90614d8b565b915050600a826136cf9190614b8a565b91506136ac565b60008167ffffffffffffffff8111156136f2576136f1614ee5565b5b6040519080825280601f01601f1916602001820160405280156137245781602001600182028036833780820191505090505b5090505b600085146137b15760018261373d9190614c15565b9150600a8561374c9190614df8565b60306137589190614afd565b60f81b81838151811061376e5761376d614eb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137aa9190614b8a565b9450613728565b8093505050505b919050565b60008082905060005b84518110156138275760008582815181106137e4576137e3614eb6565b5b60200260200101519050808311613806576137ff8382613850565b9250613813565b6138108184613850565b92505b50808061381f90614d8b565b9150506137c6565b508091505092915050565b61383f8383836001613867565b505050565b50505050565b50505050565b600082600052816020526040600020905092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156138d5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613910576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61391d6000868387613844565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613ae75750613ae68773ffffffffffffffffffffffffffffffffffffffff16613447565b5b15613bad575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b5c600088848060010195508861346a565b613b92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613aed578260015414613ba857600080fd5b613c19565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613bae575b816001819055505050613c2f600086838761384a565b5050505050565b828054613c4290614d28565b90600052602060002090601f016020900481019282613c645760008555613cab565b82601f10613c7d57803560ff1916838001178555613cab565b82800160010185558215613cab579182015b82811115613caa578235825591602001919060010190613c8f565b5b509050613cb89190613cff565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613d18576000816000905550600101613d00565b5090565b6000613d2f613d2a84614a7e565b614a59565b905082815260208101848484011115613d4b57613d4a614f23565b5b613d56848285614ce6565b509392505050565b600081359050613d6d816152a7565b92915050565b600081359050613d82816152be565b92915050565b60008083601f840112613d9e57613d9d614f19565b5b8235905067ffffffffffffffff811115613dbb57613dba614f14565b5b602083019150836020820283011115613dd757613dd6614f1e565b5b9250929050565b60008083601f840112613df457613df3614f19565b5b8235905067ffffffffffffffff811115613e1157613e10614f14565b5b602083019150836020820283011115613e2d57613e2c614f1e565b5b9250929050565b60008083601f840112613e4a57613e49614f19565b5b8235905067ffffffffffffffff811115613e6757613e66614f14565b5b602083019150836020820283011115613e8357613e82614f1e565b5b9250929050565b600081359050613e99816152d5565b92915050565b600081359050613eae816152ec565b92915050565b600081359050613ec381615303565b92915050565b600081519050613ed881615303565b92915050565b600082601f830112613ef357613ef2614f19565b5b8135613f03848260208601613d1c565b91505092915050565b60008083601f840112613f2257613f21614f19565b5b8235905067ffffffffffffffff811115613f3f57613f3e614f14565b5b602083019150836001820283011115613f5b57613f5a614f1e565b5b9250929050565b600081359050613f718161531a565b92915050565b600060208284031215613f8d57613f8c614f2d565b5b6000613f9b84828501613d5e565b91505092915050565b60008060408385031215613fbb57613fba614f2d565b5b6000613fc985828601613d5e565b9250506020613fda85828601613d5e565b9150509250929050565b600080600060608486031215613ffd57613ffc614f2d565b5b600061400b86828701613d5e565b935050602061401c86828701613d5e565b925050604061402d86828701613f62565b9150509250925092565b6000806000806080858703121561405157614050614f2d565b5b600061405f87828801613d5e565b945050602061407087828801613d5e565b935050604061408187828801613f62565b925050606085013567ffffffffffffffff8111156140a2576140a1614f28565b5b6140ae87828801613ede565b91505092959194509250565b600080604083850312156140d1576140d0614f2d565b5b60006140df85828601613d5e565b92505060206140f085828601613e8a565b9150509250929050565b6000806040838503121561411157614110614f2d565b5b600061411f85828601613d5e565b925050602061413085828601613f62565b9150509250929050565b6000806000806040858703121561415457614153614f2d565b5b600085013567ffffffffffffffff81111561417257614171614f28565b5b61417e87828801613d88565b9450945050602085013567ffffffffffffffff8111156141a1576141a0614f28565b5b6141ad87828801613e34565b925092505092959194509250565b6000602082840312156141d1576141d0614f2d565b5b60006141df84828501613e9f565b91505092915050565b6000602082840312156141fe576141fd614f2d565b5b600061420c84828501613eb4565b91505092915050565b60006020828403121561422b5761422a614f2d565b5b600061423984828501613ec9565b91505092915050565b6000806020838503121561425957614258614f2d565b5b600083013567ffffffffffffffff81111561427757614276614f28565b5b61428385828601613f0c565b92509250509250929050565b6000602082840312156142a5576142a4614f2d565b5b60006142b384828501613f62565b91505092915050565b600080604083850312156142d3576142d2614f2d565b5b60006142e185828601613f62565b92505060206142f285828601613d73565b9150509250929050565b60008060006040848603121561431557614314614f2d565b5b600061432386828701613f62565b935050602084013567ffffffffffffffff81111561434457614343614f28565b5b61435086828701613dde565b92509250509250925092565b61436581614c49565b82525050565b61437c61437782614c49565b614dd4565b82525050565b61438b81614c6d565b82525050565b61439a81614c79565b82525050565b60006143ab82614aaf565b6143b58185614ac5565b93506143c5818560208601614cf5565b6143ce81614f32565b840191505092915050565b60006143e482614aba565b6143ee8185614ae1565b93506143fe818560208601614cf5565b61440781614f32565b840191505092915050565b600061441d82614aba565b6144278185614af2565b9350614437818560208601614cf5565b80840191505092915050565b6000614450602283614ae1565b915061445b82614f50565b604082019050919050565b6000614473602683614ae1565b915061447e82614f9f565b604082019050919050565b6000614496601e83614ae1565b91506144a182614fee565b602082019050919050565b60006144b9601683614ae1565b91506144c482615017565b602082019050919050565b60006144dc601e83614ae1565b91506144e782615040565b602082019050919050565b60006144ff602083614ae1565b915061450a82615069565b602082019050919050565b6000614522602483614ae1565b915061452d82615092565b604082019050919050565b6000614545601b83614ae1565b9150614550826150e1565b602082019050919050565b6000614568602083614ae1565b91506145738261510a565b602082019050919050565b600061458b601783614ae1565b915061459682615133565b602082019050919050565b60006145ae601b83614ae1565b91506145b98261515c565b602082019050919050565b60006145d1601883614ae1565b91506145dc82615185565b602082019050919050565b60006145f4600083614ad6565b91506145ff826151ae565b600082019050919050565b6000614617601083614ae1565b9150614622826151b1565b602082019050919050565b600061463a601683614ae1565b9150614645826151da565b602082019050919050565b600061465d601f83614ae1565b915061466882615203565b602082019050919050565b6000614680601683614ae1565b915061468b8261522c565b602082019050919050565b60006146a3601e83614ae1565b91506146ae82615255565b602082019050919050565b60006146c6601d83614ae1565b91506146d18261527e565b602082019050919050565b6146e581614ccf565b82525050565b60006146f7828461436b565b60148201915081905092915050565b60006147128285614412565b915061471e8284614412565b91508190509392505050565b6000614735826145e7565b9150819050919050565b6000602082019050614754600083018461435c565b92915050565b600060808201905061476f600083018761435c565b61477c602083018661435c565b61478960408301856146dc565b818103606083015261479b81846143a0565b905095945050505050565b60006020820190506147bb6000830184614382565b92915050565b60006020820190506147d66000830184614391565b92915050565b600060208201905081810360008301526147f681846143d9565b905092915050565b6000602082019050818103600083015261481781614443565b9050919050565b6000602082019050818103600083015261483781614466565b9050919050565b6000602082019050818103600083015261485781614489565b9050919050565b60006020820190508181036000830152614877816144ac565b9050919050565b60006020820190508181036000830152614897816144cf565b9050919050565b600060208201905081810360008301526148b7816144f2565b9050919050565b600060208201905081810360008301526148d781614515565b9050919050565b600060208201905081810360008301526148f781614538565b9050919050565b600060208201905081810360008301526149178161455b565b9050919050565b600060208201905081810360008301526149378161457e565b9050919050565b60006020820190508181036000830152614957816145a1565b9050919050565b60006020820190508181036000830152614977816145c4565b9050919050565b600060208201905081810360008301526149978161460a565b9050919050565b600060208201905081810360008301526149b78161462d565b9050919050565b600060208201905081810360008301526149d781614650565b9050919050565b600060208201905081810360008301526149f781614673565b9050919050565b60006020820190508181036000830152614a1781614696565b9050919050565b60006020820190508181036000830152614a37816146b9565b9050919050565b6000602082019050614a5360008301846146dc565b92915050565b6000614a63614a74565b9050614a6f8282614d5a565b919050565b6000604051905090565b600067ffffffffffffffff821115614a9957614a98614ee5565b5b614aa282614f32565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b0882614ccf565b9150614b1383614ccf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b4857614b47614e29565b5b828201905092915050565b6000614b5e82614cd9565b9150614b6983614cd9565b92508260ff03821115614b7f57614b7e614e29565b5b828201905092915050565b6000614b9582614ccf565b9150614ba083614ccf565b925082614bb057614baf614e58565b5b828204905092915050565b6000614bc682614ccf565b9150614bd183614ccf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c0a57614c09614e29565b5b828202905092915050565b6000614c2082614ccf565b9150614c2b83614ccf565b925082821015614c3e57614c3d614e29565b5b828203905092915050565b6000614c5482614caf565b9050919050565b6000614c6682614caf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614d13578082015181840152602081019050614cf8565b83811115614d22576000848401525b50505050565b60006002820490506001821680614d4057607f821691505b60208210811415614d5457614d53614e87565b5b50919050565b614d6382614f32565b810181811067ffffffffffffffff82111715614d8257614d81614ee5565b5b80604052505050565b6000614d9682614ccf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dc957614dc8614e29565b5b600182019050919050565b6000614ddf82614de6565b9050919050565b6000614df182614f43565b9050919050565b6000614e0382614ccf565b9150614e0e83614ccf565b925082614e1e57614e1d614e58565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5075626c69632073616c65206d7573742062652061637469766520746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f48617665206e6f74206d65742063757272656e74207468726573686f6c640000600082015250565b7f5472616e7366657220746f20504d206661696c65642e00000000000000000000600082015250565b7f50726573616c65206d7573742062652061637469766520746f206d696e740000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f52657365727665206d696e7420776f756c6420657863656564206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220746f20436f6d70616e79206661696c65642e0000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b7f5472616e7366657220746f2043686172697479206661696c65642e0000000000600082015250565b7f4172726179206c656e67746873206d757374206d617463680000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5472616e7366657220746f205445206661696c65642e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5472616e7366657220746f20434e206661696c65642e00000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420656e6f7567680000600082015250565b7f5075726368617365207175616e74697479206578636565647320636170000000600082015250565b6152b081614c49565b81146152bb57600080fd5b50565b6152c781614c5b565b81146152d257600080fd5b50565b6152de81614c6d565b81146152e957600080fd5b50565b6152f581614c79565b811461530057600080fd5b50565b61530c81614c83565b811461531757600080fd5b50565b61532381614ccf565b811461532e57600080fd5b5056fea264697066735822122026776f9b01dade58e10f758091feeebb2a1b17c5049ebdf900811d6d082a290a64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80638da5cb5b1161010d578063b88d4fde116100a0578063c87b56dd1161006f578063c87b56dd146106b9578063dbe72ba6146106f6578063e985e9c514610721578063f2fde38b1461075e578063f81227d414610787576101f9565b8063b88d4fde1461060f578063bc542c4514610638578063c0a58fa914610663578063c85a18911461068e576101f9565b8063a0712d68116100dc578063a0712d6814610588578063a10866ef146105a4578063a22cb465146105bb578063a2cbd711146105e4576101f9565b80638da5cb5b146104f25780638ea115ef1461051d57806395d89b4114610534578063963565e11461055f576101f9565b806342842e0e116101905780636352211e1161015f5780636352211e1461040d57806370a082311461044a578063715018a6146104875780637cb647591461049e5780638734c6ea146104c7576101f9565b806342842e0e146103675780634ef020b21461039057806355f804b3146103b95780635ce5008d146103e2576101f9565b80630c0a6b5e116101cc5780630c0a6b5e146102cc5780630ded5875146102e857806318160ddd1461031357806323b872dd1461033e576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b50610225600480360381019061022091906141e8565b61079e565b60405161023291906147a6565b60405180910390f35b34801561024757600080fd5b50610250610880565b60405161025d91906147dc565b60405180910390f35b34801561027257600080fd5b5061028d6004803603810190610288919061428f565b610912565b60405161029a919061473f565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906140fa565b61098e565b005b6102e660048036038101906102e191906142fc565b610a99565b005b3480156102f457600080fd5b506102fd610c9d565b60405161030a9190614a3e565b60405180910390f35b34801561031f57600080fd5b50610328610ca3565b6040516103359190614a3e565b60405180910390f35b34801561034a57600080fd5b5061036560048036038101906103609190613fe4565b610cba565b005b34801561037357600080fd5b5061038e60048036038101906103899190613fe4565b610cca565b005b34801561039c57600080fd5b506103b760048036038101906103b291906142bc565b610cea565b005b3480156103c557600080fd5b506103e060048036038101906103db9190614242565b610e6d565b005b3480156103ee57600080fd5b506103f7610eff565b6040516104049190614a3e565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f919061428f565b610f05565b604051610441919061473f565b60405180910390f35b34801561045657600080fd5b50610471600480360381019061046c9190613f77565b610f1b565b60405161047e9190614a3e565b60405180910390f35b34801561049357600080fd5b5061049c610feb565b005b3480156104aa57600080fd5b506104c560048036038101906104c091906141bb565b611073565b005b3480156104d357600080fd5b506104dc6110f9565b6040516104e991906147a6565b60405180910390f35b3480156104fe57600080fd5b5061050761110c565b604051610514919061473f565b60405180910390f35b34801561052957600080fd5b50610532611135565b005b34801561054057600080fd5b506105496120b5565b60405161055691906147dc565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061413a565b612147565b005b6105a2600480360381019061059d919061428f565b612375565b005b3480156105b057600080fd5b506105b96124bd565b005b3480156105c757600080fd5b506105e260048036038101906105dd91906140ba565b612565565b005b3480156105f057600080fd5b506105f96126dd565b60405161060691906147a6565b60405180910390f35b34801561061b57600080fd5b5061063660048036038101906106319190614037565b6126f0565b005b34801561064457600080fd5b5061064d61276c565b60405161065a9190614a3e565b60405180910390f35b34801561066f57600080fd5b50610678612772565b6040516106859190614a3e565b60405180910390f35b34801561069a57600080fd5b506106a3612778565b6040516106b09190614a3e565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db919061428f565b61277e565b6040516106ed91906147dc565b60405180910390f35b34801561070257600080fd5b5061070b61281d565b60405161071891906147c1565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190613fa4565b612823565b60405161075591906147a6565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613f77565b6128b7565b005b34801561079357600080fd5b5061079c6129af565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610879575061087882612a57565b5b9050919050565b60606003805461088f90614d28565b80601f01602080910402602001604051908101604052809291908181526020018280546108bb90614d28565b80156109085780601f106108dd57610100808354040283529160200191610908565b820191906000526020600020905b8154815290600101906020018083116108eb57829003601f168201915b5050505050905090565b600061091d82612ac1565b610953576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099982610f05565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a01576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a20612b0f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a525750610a5081610a4b612b0f565b612823565b155b15610a89576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a94838383612b17565b505050565b600f60019054906101000a900460ff16610ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adf9061487e565b60405180910390fd5b600c54831115610b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2490614a1e565b60405180910390fd5b600a54610b38610ca3565b84610b439190614afd565b1115610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b9061489e565b60405180910390fd5b34600e5484610b939190614bbb565b1115610bd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcb906149fe565b60405180910390fd5b610c4f828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601154610c24612b0f565b604051602001610c3491906146eb565b60405160208183030381529060405280519060200120612bc9565b610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c859061491e565b60405180910390fd5b610c983384612be0565b505050565b600b5481565b6000610cad612bfe565b6002546001540303905090565b610cc5838383612c03565b505050565b610ce5838383604051806020016040528060008152506126f0565b505050565b610cf2612b0f565b73ffffffffffffffffffffffffffffffffffffffff16610d1061110c565b73ffffffffffffffffffffffffffffffffffffffff1614610d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5d906148fe565b60405180910390fd5b60026009541415610dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da3906149be565b60405180910390fd5b600260098190555060008173ffffffffffffffffffffffffffffffffffffffff1683604051610dda9061472a565b60006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e579061497e565b60405180910390fd5b5060016009819055505050565b610e75612b0f565b73ffffffffffffffffffffffffffffffffffffffff16610e9361110c565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906148fe565b60405180910390fd5b818160109190610efa929190613c36565b505050565b600e5481565b6000610f10826130f4565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f83576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ff3612b0f565b73ffffffffffffffffffffffffffffffffffffffff1661101161110c565b73ffffffffffffffffffffffffffffffffffffffff1614611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e906148fe565b60405180910390fd5b6110716000613383565b565b61107b612b0f565b73ffffffffffffffffffffffffffffffffffffffff1661109961110c565b73ffffffffffffffffffffffffffffffffffffffff16146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e6906148fe565b60405180910390fd5b8060118190555050565b600f60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61113d612b0f565b73ffffffffffffffffffffffffffffffffffffffff1661115b61110c565b73ffffffffffffffffffffffffffffffffffffffff16146111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a8906148fe565b60405180910390fd5b600260095414156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906149be565b60405180910390fd5b60026009819055506064601260009054906101000a900460ff1660ff16600a546112219190614bbb565b61122b9190614b8a565b611233610ca3565b1015611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b9061483e565b60405180910390fd5b600073078dc8ff71ebf938ffe746de7e2c926f64b14f1e905060007312d02e5193e547f4dc5c43cfaab2b3beb1986cc49050600073ccc0c77aa850557af8d48c9617ea65521e5f84859050600073e41f3c86a95190d67084792678263b63ccefbc789050600073898d764fb76a566c27692d5077f01c2fbb93a72c905060006014601260009054906101000a900460ff1660ff16141561161b578573ffffffffffffffffffffffffffffffffffffffff1668015af1d78b58c4000060405161133b9061472a565b60006040518083038185875af1925050503d8060008114611378576040519150601f19603f3d011682016040523d82523d6000602084013e61137d565b606091505b505080915050806113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba9061485e565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1667f2dc7d47f15600006040516113ef9061472a565b60006040518083038185875af1925050503d806000811461142c576040519150601f19603f3d011682016040523d82523d6000602084013e611431565b606091505b50508091505080611477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146e9061493e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff166753444835ec5800006040516114a39061472a565b60006040518083038185875af1925050503d80600081146114e0576040519150601f19603f3d011682016040523d82523d6000602084013e6114e5565b606091505b5050809150508061152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229061499e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166753444835ec5800006040516115579061472a565b60006040518083038185875af1925050503d8060008114611594576040519150601f19603f3d011682016040523d82523d6000602084013e611599565b606091505b505080915050806115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d6906149de565b60405180910390fd5b6014601260008282829054906101000a900460ff166115fe9190614b53565b92506101000a81548160ff021916908360ff1602179055506120a5565b6028601260009054906101000a900460ff1660ff161415611944578573ffffffffffffffffffffffffffffffffffffffff1668015af1d78b58c400006040516116639061472a565b60006040518083038185875af1925050503d80600081146116a0576040519150601f19603f3d011682016040523d82523d6000602084013e6116a5565b606091505b505080915050806116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e29061485e565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166801a055690d9db800006040516117189061472a565b60006040518083038185875af1925050503d8060008114611755576040519150601f19603f3d011682016040523d82523d6000602084013e61175a565b606091505b505080915050806117a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611797906148de565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16678ac7230489e800006040516117cc9061472a565b60006040518083038185875af1925050503d8060008114611809576040519150601f19603f3d011682016040523d82523d6000602084013e61180e565b606091505b50508091505080611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b9061499e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff16678ac7230489e800006040516118809061472a565b60006040518083038185875af1925050503d80600081146118bd576040519150601f19603f3d011682016040523d82523d6000602084013e6118c2565b606091505b50508091505080611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff906149de565b60405180910390fd5b6014601260008282829054906101000a900460ff166119279190614b53565b92506101000a81548160ff021916908360ff1602179055506120a4565b603c601260009054906101000a900460ff1660ff161415611bb9578173ffffffffffffffffffffffffffffffffffffffff1667f9ccd8a1c508000060405161198b9061472a565b60006040518083038185875af1925050503d80600081146119c8576040519150601f19603f3d011682016040523d82523d6000602084013e6119cd565b606091505b50508091505080611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906148de565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff1668015af1d78b58c40000604051611a409061472a565b60006040518083038185875af1925050503d8060008114611a7d576040519150601f19603f3d011682016040523d82523d6000602084013e611a82565b606091505b50508091505080611ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abf9061499e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff1668015af1d78b58c40000604051611af59061472a565b60006040518083038185875af1925050503d8060008114611b32576040519150601f19603f3d011682016040523d82523d6000602084013e611b37565b606091505b50508091505080611b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b74906149de565b60405180910390fd5b6014601260008282829054906101000a900460ff16611b9c9190614b53565b92506101000a81548160ff021916908360ff1602179055506120a3565b6050601260009054906101000a900460ff1660ff161415611e2f578173ffffffffffffffffffffffffffffffffffffffff166801a055690d9db80000604051611c019061472a565b60006040518083038185875af1925050503d8060008114611c3e576040519150601f19603f3d011682016040523d82523d6000602084013e611c43565b606091505b50508091505080611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c80906148de565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff166801158e460913d00000604051611cb69061472a565b60006040518083038185875af1925050503d8060008114611cf3576040519150601f19603f3d011682016040523d82523d6000602084013e611cf8565b606091505b50508091505080611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d359061499e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166801158e460913d00000604051611d6b9061472a565b60006040518083038185875af1925050503d8060008114611da8576040519150601f19603f3d011682016040523d82523d6000602084013e611dad565b606091505b50508091505080611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea906149de565b60405180910390fd5b6014601260008282829054906101000a900460ff16611e129190614b53565b92506101000a81548160ff021916908360ff1602179055506120a2565b6064601260009054906101000a900460ff1660ff1614156120a1578173ffffffffffffffffffffffffffffffffffffffff166802b5e3af16b1880000604051611e779061472a565b60006040518083038185875af1925050503d8060008114611eb4576040519150601f19603f3d011682016040523d82523d6000602084013e611eb9565b606091505b50508091505080611eff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef6906148de565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff166801158e460913d00000604051611f2c9061472a565b60006040518083038185875af1925050503d8060008114611f69576040519150601f19603f3d011682016040523d82523d6000602084013e611f6e565b606091505b50508091505080611fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fab9061499e565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff166801158e460913d00000604051611fe19061472a565b60006040518083038185875af1925050503d806000811461201e576040519150601f19603f3d011682016040523d82523d6000602084013e612023565b606091505b50508091505080612069576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612060906149de565b60405180910390fd5b6014601260008282829054906101000a900460ff166120889190614b53565b92506101000a81548160ff021916908360ff1602179055505b5b5b5b5b5050505050506001600981905550565b6060600480546120c490614d28565b80601f01602080910402602001604051908101604052809291908181526020018280546120f090614d28565b801561213d5780601f106121125761010080835404028352916020019161213d565b820191906000526020600020905b81548152906001019060200180831161212057829003601f168201915b5050505050905090565b61214f612b0f565b73ffffffffffffffffffffffffffffffffffffffff1661216d61110c565b73ffffffffffffffffffffffffffffffffffffffff16146121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba906148fe565b60405180910390fd5b60026009541415612209576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612200906149be565b60405180910390fd5b6002600981905550818190508484905014612259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122509061495e565b60405180910390fd5b6000805b838390508110156122a25783838281811061227b5761227a614eb6565b5b905060200201358261228d9190614afd565b9150808061229a90614d8b565b91505061225d565b50600a546122ae610ca3565b826122b99190614afd565b11156122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f1906148be565b60405180910390fd5b60005b858590508110156123655761235286868381811061231e5761231d614eb6565b5b90506020020160208101906123339190613f77565b85858481811061234657612345614eb6565b5b90506020020135612be0565b808061235d90614d8b565b9150506122fd565b5050600160098190555050505050565b600f60009054906101000a900460ff166123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bb906147fe565b60405180910390fd5b600b54811115612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240090614a1e565b60405180910390fd5b600a54612414610ca3565b8261241f9190614afd565b1115612460576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124579061489e565b60405180910390fd5b34600d548261246f9190614bbb565b11156124b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a7906149fe565b60405180910390fd5b6124ba3382612be0565b50565b6124c5612b0f565b73ffffffffffffffffffffffffffffffffffffffff166124e361110c565b73ffffffffffffffffffffffffffffffffffffffff1614612539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612530906148fe565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b61256d612b0f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006125df612b0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661268c612b0f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126d191906147a6565b60405180910390a35050565b600f60019054906101000a900460ff1681565b6126fb848484612c03565b61271a8373ffffffffffffffffffffffffffffffffffffffff16613447565b801561272f575061272d8484848461346a565b155b15612766576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b600a5481565b600d5481565b606061278982612ac1565b6127bf576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006127c96135ca565b90506000815114156127ea5760405180602001604052806000815250612815565b806127f48461365c565b604051602001612805929190614706565b6040516020818303038152906040525b915050919050565b60115481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128bf612b0f565b73ffffffffffffffffffffffffffffffffffffffff166128dd61110c565b73ffffffffffffffffffffffffffffffffffffffff1614612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a906148fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a9061481e565b60405180910390fd5b6129ac81613383565b50565b6129b7612b0f565b73ffffffffffffffffffffffffffffffffffffffff166129d561110c565b73ffffffffffffffffffffffffffffffffffffffff1614612a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a22906148fe565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612acc612bfe565b11158015612adb575060015482105b8015612b08575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600082612bd685846137bd565b1490509392505050565b612bfa828260405180602001604052806000815250613832565b5050565b600090565b6000612c0e826130f4565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612c35612b0f565b73ffffffffffffffffffffffffffffffffffffffff161480612c685750612c678260000151612c62612b0f565b612823565b5b80612cad5750612c76612b0f565b73ffffffffffffffffffffffffffffffffffffffff16612c9584610912565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612ce6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612d4f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612db6576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dc38585856001613844565b612dd36000848460000151612b17565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613084576001548110156130835782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130ed858585600161384a565b5050505050565b6130fc613cbc565b60008290508061310a612bfe565b11158015613119575060015481105b1561334c576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161334a57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461322e57809250505061337e565b5b60011561334957818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461334457809250505061337e565b61322f565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613490612b0f565b8786866040518563ffffffff1660e01b81526004016134b2949392919061475a565b602060405180830381600087803b1580156134cc57600080fd5b505af19250505080156134fd57506040513d601f19601f820116820180604052508101906134fa9190614215565b60015b613577573d806000811461352d576040519150601f19603f3d011682016040523d82523d6000602084013e613532565b606091505b5060008151141561356f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546135d990614d28565b80601f016020809104026020016040519081016040528092919081815260200182805461360590614d28565b80156136525780601f1061362757610100808354040283529160200191613652565b820191906000526020600020905b81548152906001019060200180831161363557829003601f168201915b5050505050905090565b606060008214156136a4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506137b8565b600082905060005b600082146136d65780806136bf90614d8b565b915050600a826136cf9190614b8a565b91506136ac565b60008167ffffffffffffffff8111156136f2576136f1614ee5565b5b6040519080825280601f01601f1916602001820160405280156137245781602001600182028036833780820191505090505b5090505b600085146137b15760018261373d9190614c15565b9150600a8561374c9190614df8565b60306137589190614afd565b60f81b81838151811061376e5761376d614eb6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856137aa9190614b8a565b9450613728565b8093505050505b919050565b60008082905060005b84518110156138275760008582815181106137e4576137e3614eb6565b5b60200260200101519050808311613806576137ff8382613850565b9250613813565b6138108184613850565b92505b50808061381f90614d8b565b9150506137c6565b508091505092915050565b61383f8383836001613867565b505050565b50505050565b50505050565b600082600052816020526040600020905092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156138d5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613910576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61391d6000868387613844565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613ae75750613ae68773ffffffffffffffffffffffffffffffffffffffff16613447565b5b15613bad575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b5c600088848060010195508861346a565b613b92576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613aed578260015414613ba857600080fd5b613c19565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613bae575b816001819055505050613c2f600086838761384a565b5050505050565b828054613c4290614d28565b90600052602060002090601f016020900481019282613c645760008555613cab565b82601f10613c7d57803560ff1916838001178555613cab565b82800160010185558215613cab579182015b82811115613caa578235825591602001919060010190613c8f565b5b509050613cb89190613cff565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613d18576000816000905550600101613d00565b5090565b6000613d2f613d2a84614a7e565b614a59565b905082815260208101848484011115613d4b57613d4a614f23565b5b613d56848285614ce6565b509392505050565b600081359050613d6d816152a7565b92915050565b600081359050613d82816152be565b92915050565b60008083601f840112613d9e57613d9d614f19565b5b8235905067ffffffffffffffff811115613dbb57613dba614f14565b5b602083019150836020820283011115613dd757613dd6614f1e565b5b9250929050565b60008083601f840112613df457613df3614f19565b5b8235905067ffffffffffffffff811115613e1157613e10614f14565b5b602083019150836020820283011115613e2d57613e2c614f1e565b5b9250929050565b60008083601f840112613e4a57613e49614f19565b5b8235905067ffffffffffffffff811115613e6757613e66614f14565b5b602083019150836020820283011115613e8357613e82614f1e565b5b9250929050565b600081359050613e99816152d5565b92915050565b600081359050613eae816152ec565b92915050565b600081359050613ec381615303565b92915050565b600081519050613ed881615303565b92915050565b600082601f830112613ef357613ef2614f19565b5b8135613f03848260208601613d1c565b91505092915050565b60008083601f840112613f2257613f21614f19565b5b8235905067ffffffffffffffff811115613f3f57613f3e614f14565b5b602083019150836001820283011115613f5b57613f5a614f1e565b5b9250929050565b600081359050613f718161531a565b92915050565b600060208284031215613f8d57613f8c614f2d565b5b6000613f9b84828501613d5e565b91505092915050565b60008060408385031215613fbb57613fba614f2d565b5b6000613fc985828601613d5e565b9250506020613fda85828601613d5e565b9150509250929050565b600080600060608486031215613ffd57613ffc614f2d565b5b600061400b86828701613d5e565b935050602061401c86828701613d5e565b925050604061402d86828701613f62565b9150509250925092565b6000806000806080858703121561405157614050614f2d565b5b600061405f87828801613d5e565b945050602061407087828801613d5e565b935050604061408187828801613f62565b925050606085013567ffffffffffffffff8111156140a2576140a1614f28565b5b6140ae87828801613ede565b91505092959194509250565b600080604083850312156140d1576140d0614f2d565b5b60006140df85828601613d5e565b92505060206140f085828601613e8a565b9150509250929050565b6000806040838503121561411157614110614f2d565b5b600061411f85828601613d5e565b925050602061413085828601613f62565b9150509250929050565b6000806000806040858703121561415457614153614f2d565b5b600085013567ffffffffffffffff81111561417257614171614f28565b5b61417e87828801613d88565b9450945050602085013567ffffffffffffffff8111156141a1576141a0614f28565b5b6141ad87828801613e34565b925092505092959194509250565b6000602082840312156141d1576141d0614f2d565b5b60006141df84828501613e9f565b91505092915050565b6000602082840312156141fe576141fd614f2d565b5b600061420c84828501613eb4565b91505092915050565b60006020828403121561422b5761422a614f2d565b5b600061423984828501613ec9565b91505092915050565b6000806020838503121561425957614258614f2d565b5b600083013567ffffffffffffffff81111561427757614276614f28565b5b61428385828601613f0c565b92509250509250929050565b6000602082840312156142a5576142a4614f2d565b5b60006142b384828501613f62565b91505092915050565b600080604083850312156142d3576142d2614f2d565b5b60006142e185828601613f62565b92505060206142f285828601613d73565b9150509250929050565b60008060006040848603121561431557614314614f2d565b5b600061432386828701613f62565b935050602084013567ffffffffffffffff81111561434457614343614f28565b5b61435086828701613dde565b92509250509250925092565b61436581614c49565b82525050565b61437c61437782614c49565b614dd4565b82525050565b61438b81614c6d565b82525050565b61439a81614c79565b82525050565b60006143ab82614aaf565b6143b58185614ac5565b93506143c5818560208601614cf5565b6143ce81614f32565b840191505092915050565b60006143e482614aba565b6143ee8185614ae1565b93506143fe818560208601614cf5565b61440781614f32565b840191505092915050565b600061441d82614aba565b6144278185614af2565b9350614437818560208601614cf5565b80840191505092915050565b6000614450602283614ae1565b915061445b82614f50565b604082019050919050565b6000614473602683614ae1565b915061447e82614f9f565b604082019050919050565b6000614496601e83614ae1565b91506144a182614fee565b602082019050919050565b60006144b9601683614ae1565b91506144c482615017565b602082019050919050565b60006144dc601e83614ae1565b91506144e782615040565b602082019050919050565b60006144ff602083614ae1565b915061450a82615069565b602082019050919050565b6000614522602483614ae1565b915061452d82615092565b604082019050919050565b6000614545601b83614ae1565b9150614550826150e1565b602082019050919050565b6000614568602083614ae1565b91506145738261510a565b602082019050919050565b600061458b601783614ae1565b915061459682615133565b602082019050919050565b60006145ae601b83614ae1565b91506145b98261515c565b602082019050919050565b60006145d1601883614ae1565b91506145dc82615185565b602082019050919050565b60006145f4600083614ad6565b91506145ff826151ae565b600082019050919050565b6000614617601083614ae1565b9150614622826151b1565b602082019050919050565b600061463a601683614ae1565b9150614645826151da565b602082019050919050565b600061465d601f83614ae1565b915061466882615203565b602082019050919050565b6000614680601683614ae1565b915061468b8261522c565b602082019050919050565b60006146a3601e83614ae1565b91506146ae82615255565b602082019050919050565b60006146c6601d83614ae1565b91506146d18261527e565b602082019050919050565b6146e581614ccf565b82525050565b60006146f7828461436b565b60148201915081905092915050565b60006147128285614412565b915061471e8284614412565b91508190509392505050565b6000614735826145e7565b9150819050919050565b6000602082019050614754600083018461435c565b92915050565b600060808201905061476f600083018761435c565b61477c602083018661435c565b61478960408301856146dc565b818103606083015261479b81846143a0565b905095945050505050565b60006020820190506147bb6000830184614382565b92915050565b60006020820190506147d66000830184614391565b92915050565b600060208201905081810360008301526147f681846143d9565b905092915050565b6000602082019050818103600083015261481781614443565b9050919050565b6000602082019050818103600083015261483781614466565b9050919050565b6000602082019050818103600083015261485781614489565b9050919050565b60006020820190508181036000830152614877816144ac565b9050919050565b60006020820190508181036000830152614897816144cf565b9050919050565b600060208201905081810360008301526148b7816144f2565b9050919050565b600060208201905081810360008301526148d781614515565b9050919050565b600060208201905081810360008301526148f781614538565b9050919050565b600060208201905081810360008301526149178161455b565b9050919050565b600060208201905081810360008301526149378161457e565b9050919050565b60006020820190508181036000830152614957816145a1565b9050919050565b60006020820190508181036000830152614977816145c4565b9050919050565b600060208201905081810360008301526149978161460a565b9050919050565b600060208201905081810360008301526149b78161462d565b9050919050565b600060208201905081810360008301526149d781614650565b9050919050565b600060208201905081810360008301526149f781614673565b9050919050565b60006020820190508181036000830152614a1781614696565b9050919050565b60006020820190508181036000830152614a37816146b9565b9050919050565b6000602082019050614a5360008301846146dc565b92915050565b6000614a63614a74565b9050614a6f8282614d5a565b919050565b6000604051905090565b600067ffffffffffffffff821115614a9957614a98614ee5565b5b614aa282614f32565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b0882614ccf565b9150614b1383614ccf565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b4857614b47614e29565b5b828201905092915050565b6000614b5e82614cd9565b9150614b6983614cd9565b92508260ff03821115614b7f57614b7e614e29565b5b828201905092915050565b6000614b9582614ccf565b9150614ba083614ccf565b925082614bb057614baf614e58565b5b828204905092915050565b6000614bc682614ccf565b9150614bd183614ccf565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c0a57614c09614e29565b5b828202905092915050565b6000614c2082614ccf565b9150614c2b83614ccf565b925082821015614c3e57614c3d614e29565b5b828203905092915050565b6000614c5482614caf565b9050919050565b6000614c6682614caf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614d13578082015181840152602081019050614cf8565b83811115614d22576000848401525b50505050565b60006002820490506001821680614d4057607f821691505b60208210811415614d5457614d53614e87565b5b50919050565b614d6382614f32565b810181811067ffffffffffffffff82111715614d8257614d81614ee5565b5b80604052505050565b6000614d9682614ccf565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dc957614dc8614e29565b5b600182019050919050565b6000614ddf82614de6565b9050919050565b6000614df182614f43565b9050919050565b6000614e0382614ccf565b9150614e0e83614ccf565b925082614e1e57614e1d614e58565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5075626c69632073616c65206d7573742062652061637469766520746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f48617665206e6f74206d65742063757272656e74207468726573686f6c640000600082015250565b7f5472616e7366657220746f20504d206661696c65642e00000000000000000000600082015250565b7f50726573616c65206d7573742062652061637469766520746f206d696e740000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c79600082015250565b7f52657365727665206d696e7420776f756c6420657863656564206d617820737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220746f20436f6d70616e79206661696c65642e0000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f41646472657373206e6f742077686974656c6973746564000000000000000000600082015250565b7f5472616e7366657220746f2043686172697479206661696c65642e0000000000600082015250565b7f4172726179206c656e67746873206d757374206d617463680000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5472616e7366657220746f205445206661696c65642e00000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5472616e7366657220746f20434e206661696c65642e00000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420656e6f7567680000600082015250565b7f5075726368617365207175616e74697479206578636565647320636170000000600082015250565b6152b081614c49565b81146152bb57600080fd5b50565b6152c781614c5b565b81146152d257600080fd5b50565b6152de81614c6d565b81146152e957600080fd5b50565b6152f581614c79565b811461530057600080fd5b50565b61530c81614c83565b811461531757600080fd5b50565b61532381614ccf565b811461532e57600080fd5b5056fea264697066735822122026776f9b01dade58e10f758091feeebb2a1b17c5049ebdf900811d6d082a290a64736f6c63430008070033

Deployed Bytecode Sourcemap

50977:6590:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33439:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36824:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38327:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37890:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52055:605;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51118:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32688:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39184:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39425:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57353:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53430:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51239:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36633:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33808:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5024:103;;;;;;;;;;;;;:::i;:::-;;53942:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51287:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4373:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54117:3228;;;;;;;;;;;;;:::i;:::-;;36993:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52668:702;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51605:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53711:112;;;;;;;;;;;;;:::i;:::-;;38603:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51333:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39681:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51155:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51074:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51192:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37168:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51411:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38953:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5282:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53831:103;;;;;;;;;;;;;:::i;:::-;;33439:305;33541:4;33593:25;33578:40;;;:11;:40;;;;:105;;;;33650:33;33635:48;;;:11;:48;;;;33578:105;:158;;;;33700:36;33724:11;33700:23;:36::i;:::-;33578:158;33558:178;;33439:305;;;:::o;36824:100::-;36878:13;36911:5;36904:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36824:100;:::o;38327:204::-;38395:7;38420:16;38428:7;38420;:16::i;:::-;38415:64;;38445:34;;;;;;;;;;;;;;38415:64;38499:15;:24;38515:7;38499:24;;;;;;;;;;;;;;;;;;;;;38492:31;;38327:204;;;:::o;37890:371::-;37963:13;37979:24;37995:7;37979:15;:24::i;:::-;37963:40;;38024:5;38018:11;;:2;:11;;;38014:48;;;38038:24;;;;;;;;;;;;;;38014:48;38095:5;38079:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;38105:37;38122:5;38129:12;:10;:12::i;:::-;38105:16;:37::i;:::-;38104:38;38079:63;38075:138;;;38166:35;;;;;;;;;;;;;;38075:138;38225:28;38234:2;38238:7;38247:5;38225:8;:28::i;:::-;37952:309;37890:371;;:::o;52055:605::-;52156:16;;;;;;;;;;;52148:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;52238:11;;52226:8;:23;;52218:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;52330:15;;52313:13;:11;:13::i;:::-;52302:8;:24;;;;:::i;:::-;:43;;52294:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;52429:9;52412:13;;52401:8;:24;;;;:::i;:::-;:37;;52393:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;52492:81;52511:5;;52492:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52518:11;;52558:12;:10;:12::i;:::-;52541:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;52531:41;;;;;;52492:18;:81::i;:::-;52484:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;52621:31;52631:10;52643:8;52621:9;:31::i;:::-;52055:605;;;:::o;51118:30::-;;;;:::o;32688:303::-;32732:7;32957:15;:13;:15::i;:::-;32942:12;;32926:13;;:28;:46;32919:53;;32688:303;:::o;39184:170::-;39318:28;39328:4;39334:2;39338:7;39318:9;:28::i;:::-;39184:170;;;:::o;39425:185::-;39563:39;39580:4;39586:2;39590:7;39563:39;;;;;;;;;;;;:16;:39::i;:::-;39425:185;;;:::o;57353:211::-;4604:12;:10;:12::i;:::-;4593:23;;:7;:5;:7::i;:::-;:23;;;4585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7653:1:::1;8251:7;;:19;;8243:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7653:1;8384:7;:18;;;;57456:12:::2;57482:2;57474:16;;57498:6;57474:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57455:54;;;57528:7;57520:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;57444:120;7609:1:::1;8563:7;:22;;;;57353:211:::0;;:::o;53430:101::-;4604:12;:10;:12::i;:::-;4593:23;;:7;:5;:7::i;:::-;:23;;;4585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53516:7:::1;;53505:8;:18;;;;;;;:::i;:::-;;53430:101:::0;;:::o;51239:41::-;;;;:::o;36633:124::-;36697:7;36724:20;36736:7;36724:11;:20::i;:::-;:25;;;36717:32;;36633:124;;;:::o;33808:206::-;33872:7;33913:1;33896:19;;:5;:19;;;33892:60;;;33924:28;;;;;;;;;;;;;;33892:60;33978:12;:19;33991:5;33978:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;33970:36;;33963:43;;33808:206;;;:::o;5024:103::-;4604:12;:10;:12::i;:::-;4593:23;;:7;:5;:7::i;:::-;:23;;;4585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5089:30:::1;5116:1;5089:18;:30::i;:::-;5024:103::o:0;53942:105::-;4604:12;:10;:12::i;:::-;4593:23;;:7;:5;:7::i;:::-;:23;;;4585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54029:10:::1;54015:11;:24;;;;53942:105:::0;:::o;51287:39::-;;;;;;;;;;;;;:::o;4373:87::-;4419:7;4446:6;;;;;;;;;;;4439:13;;4373:87;:::o;54117:3228::-;4604:12;:10;:12::i;:::-;4593:23;;:7;:5;:7::i;:::-;:23;;;4585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7653:1:::1;8251:7;;:19;;8243:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7653:1;8384:7;:18;;;;54251:3:::2;54232:16;;;;;;;;;;;54214:34;;:15;;:34;;;;:::i;:::-;:40;;;;:::i;:::-;54197:13;:11;:13::i;:::-;:57;;54189:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;54366:11;54380:42;54366:56;;54433:11;54447:42;54433:56;;54500:11;54514:42;54500:56;;54567:16;54586:42;54567:61;;54639:16;54658:42;54639:61;;54713:12;54767:2;54747:16;;;;;;;;;;;:22;;;54744:2594;;;54807:3;54799:17;;54824:8;54799:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54785:52;;;;;54860:7;54852:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;54931:8;54923:22;;54953:10;54923:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54909:59;;;;;54991:7;54983:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;55067:3;55059:17;;55084:7;55059:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55045:51;;;;;55119:7;55111:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;55190:3;55182:17;;55207:7;55182:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55168:51;;;;;55242:7;55234:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;55311:2;55291:16;;:22;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54744:2594;;;55363:2;55343:16;;;;;;;;;;;:22;;;55340:1998;;;55403:3;55395:17;;55420:8;55395:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55381:52;;;;;55456:7;55448:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;55527:8;55519:22;;55549:8;55519:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55505:57;;;;;55585:7;55577:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;55661:3;55653:17;;55678:8;55653:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55639:52;;;;;55714:7;55706:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;55785:3;55777:17;;55802:8;55777:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55763:52;;;;;55838:7;55830:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;55907:2;55887:16;;:22;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55340:1998;;;55959:2;55939:16;;;;;;;;;;;:22;;;55936:1402;;;55999:8;55991:22;;56021:8;55991:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55977:57;;;;;56057:7;56049:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;56133:3;56125:17;;56150:8;56125:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56111:52;;;;;56186:7;56178:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;56257:3;56249:17;;56274:8;56249:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56235:52;;;;;56310:7;56302:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;56379:2;56359:16;;:22;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55936:1402;;;56431:2;56411:16;;;;;;;;;;;:22;;;56408:930;;;56471:8;56463:22;;56493:8;56463:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56449:57;;;;;56529:7;56521:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;56605:3;56597:17;;56622:8;56597:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56583:52;;;;;56658:7;56650:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;56729:3;56721:17;;56746:8;56721:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56707:52;;;;;56782:7;56774:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;56851:2;56831:16;;:22;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56408:930;;;56903:3;56883:16;;;;;;;;;;;:23;;;56880:458;;;56944:8;56936:22;;56966:8;56936:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56922:57;;;;;57002:7;56994:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;57078:3;57070:17;;57095:8;57070:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57056:52;;;;;57131:7;57123:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;57202:3;57194:17;;57219:8;57194:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57180:52;;;;;57255:7;57247:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;57324:2;57304:16;;:22;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;56880:458;56408:930;55936:1402;55340:1998;54744:2594;54178:3167;;;;;;7609:1:::1;8563:7;:22;;;;54117:3228::o:0;36993:104::-;37049:13;37082:7;37075:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36993:104;:::o;52668:702::-;4604:12;:10;:12::i;:::-;4593:23;;:7;:5;:7::i;:::-;:23;;;4585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7653:1:::1;8251:7;;:19;;8243:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7653:1;8384:7;:18;;;;52823:10:::2;;:17;;52802:10;;:17;;:38;52794:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;52948:21;52988:9:::0;52984:103:::2;53007:10;;:17;;53003:1;:21;52984:103;;;53062:10;;53073:1;53062:13;;;;;;;:::i;:::-;;;;;;;;53045:30;;;;;:::i;:::-;;;53026:3;;;;;:::i;:::-;;;;52984:103;;;;53138:15;;53121:13;:11;:13::i;:::-;53105;:29;;;;:::i;:::-;:48;;53097:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;53254:9;53249:114;53273:10;;:17;;53269:1;:21;53249:114;;;53312:39;53322:10;;53333:1;53322:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;53337:10;;53348:1;53337:13;;;;;;;:::i;:::-;;;;;;;;53312:9;:39::i;:::-;53292:3;;;;;:::i;:::-;;;;53249:114;;;;52783:587;7609:1:::1;8563:7;:22;;;;52668:702:::0;;;;:::o;51605:442::-;51673:19;;;;;;;;;;;51665:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51762:10;;51750:8;:22;;51742:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51853:15;;51836:13;:11;:13::i;:::-;51825:8;:24;;;;:::i;:::-;:43;;51817:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;51951:9;51935:12;;51924:8;:23;;;;:::i;:::-;:36;;51916:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;52008:31;52018:10;52030:8;52008:9;:31::i;:::-;51605:442;:::o;53711:112::-;4604:12;:10;:12::i;:::-;4593:23;;:7;:5;:7::i;:::-;:23;;;4585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53796:19:::1;;;;;;;;;;;53795:20;53773:19;;:42;;;;;;;;;;;;;;;;;;53711:112::o:0;38603:279::-;38706:12;:10;:12::i;:::-;38694:24;;:8;:24;;;38690:54;;;38727:17;;;;;;;;;;;;;;38690:54;38802:8;38757:18;:32;38776:12;:10;:12::i;:::-;38757:32;;;;;;;;;;;;;;;:42;38790:8;38757:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;38855:8;38826:48;;38841:12;:10;:12::i;:::-;38826:48;;;38865:8;38826:48;;;;;;:::i;:::-;;;;;;;;38603:279;;:::o;51333:36::-;;;;;;;;;;;;;:::o;39681:369::-;39848:28;39858:4;39864:2;39868:7;39848:9;:28::i;:::-;39891:15;:2;:13;;;:15::i;:::-;:76;;;;;39911:56;39942:4;39948:2;39952:7;39961:5;39911:30;:56::i;:::-;39910:57;39891:76;39887:156;;;39991:40;;;;;;;;;;;;;;39887:156;39681:369;;;;:::o;51155:30::-;;;;:::o;51074:37::-;;;;:::o;51192:40::-;;;;:::o;37168:318::-;37241:13;37272:16;37280:7;37272;:16::i;:::-;37267:59;;37297:29;;;;;;;;;;;;;;37267:59;37339:21;37363:10;:8;:10::i;:::-;37339:34;;37416:1;37397:7;37391:21;:26;;:87;;;;;;;;;;;;;;;;;37444:7;37453:18;:7;:16;:18::i;:::-;37427:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37391:87;37384:94;;;37168:318;;;:::o;51411:26::-;;;;:::o;38953:164::-;39050:4;39074:18;:25;39093:5;39074:25;;;;;;;;;;;;;;;:35;39100:8;39074:35;;;;;;;;;;;;;;;;;;;;;;;;;39067:42;;38953:164;;;;:::o;5282:201::-;4604:12;:10;:12::i;:::-;4593:23;;:7;:5;:7::i;:::-;:23;;;4585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5391:1:::1;5371:22;;:8;:22;;;;5363:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5447:28;5466:8;5447:18;:28::i;:::-;5282:201:::0;:::o;53831:103::-;4604:12;:10;:12::i;:::-;4593:23;;:7;:5;:7::i;:::-;:23;;;4585:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53910:16:::1;;;;;;;;;;;53909:17;53890:16;;:36;;;;;;;;;;;;;;;;;;53831:103::o:0;28787:157::-;28872:4;28911:25;28896:40;;;:11;:40;;;;28889:47;;28787:157;;;:::o;40305:187::-;40362:4;40405:7;40386:15;:13;:15::i;:::-;:26;;:53;;;;;40426:13;;40416:7;:23;40386:53;:98;;;;;40457:11;:20;40469:7;40457:20;;;;;;;;;;;:27;;;;;;;;;;;;40456:28;40386:98;40379:105;;40305:187;;;:::o;3099:98::-;3152:7;3179:10;3172:17;;3099:98;:::o;47916:196::-;48058:2;48031:15;:24;48047:7;48031:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48096:7;48092:2;48076:28;;48085:5;48076:28;;;;;;;;;;;;47916:196;;;:::o;954:190::-;1079:4;1132;1103:25;1116:5;1123:4;1103:12;:25::i;:::-;:33;1096:40;;954:190;;;;;:::o;40500:104::-;40569:27;40579:2;40583:8;40569:27;;;;;;;;;;;;:9;:27::i;:::-;40500:104;;:::o;32412:92::-;32468:7;32412:92;:::o;43418:2112::-;43533:35;43571:20;43583:7;43571:11;:20::i;:::-;43533:58;;43604:22;43646:13;:18;;;43630:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;43681:50;43698:13;:18;;;43718:12;:10;:12::i;:::-;43681:16;:50::i;:::-;43630:101;:154;;;;43772:12;:10;:12::i;:::-;43748:36;;:20;43760:7;43748:11;:20::i;:::-;:36;;;43630:154;43604:181;;43803:17;43798:66;;43829:35;;;;;;;;;;;;;;43798:66;43901:4;43879:26;;:13;:18;;;:26;;;43875:67;;43914:28;;;;;;;;;;;;;;43875:67;43971:1;43957:16;;:2;:16;;;43953:52;;;43982:23;;;;;;;;;;;;;;43953:52;44018:43;44040:4;44046:2;44050:7;44059:1;44018:21;:43::i;:::-;44126:49;44143:1;44147:7;44156:13;:18;;;44126:8;:49::i;:::-;44501:1;44471:12;:18;44484:4;44471:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44545:1;44517:12;:16;44530:2;44517:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44591:2;44563:11;:20;44575:7;44563:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;44653:15;44608:11;:20;44620:7;44608:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;44921:19;44953:1;44943:7;:11;44921:33;;45014:1;44973:43;;:11;:24;44985:11;44973:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;44969:445;;;45198:13;;45184:11;:27;45180:219;;;45268:13;:18;;;45236:11;:24;45248:11;45236:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;45351:13;:28;;;45309:11;:24;45321:11;45309:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;45180:219;44969:445;44446:979;45461:7;45457:2;45442:27;;45451:4;45442:27;;;;;;;;;;;;45480:42;45501:4;45507:2;45511:7;45520:1;45480:20;:42::i;:::-;43522:2008;;43418:2112;;;:::o;35463:1108::-;35524:21;;:::i;:::-;35558:12;35573:7;35558:22;;35641:4;35622:15;:13;:15::i;:::-;:23;;:47;;;;;35656:13;;35649:4;:20;35622:47;35618:886;;;35690:31;35724:11;:17;35736:4;35724:17;;;;;;;;;;;35690:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35765:9;:16;;;35760:729;;35836:1;35810:28;;:9;:14;;;:28;;;35806:101;;35874:9;35867:16;;;;;;35806:101;36209:261;36216:4;36209:261;;;36249:6;;;;;;;;36294:11;:17;36306:4;36294:17;;;;;;;;;;;36282:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36368:1;36342:28;;:9;:14;;;:28;;;36338:109;;36410:9;36403:16;;;;;;36338:109;36209:261;;;35760:729;35671:833;35618:886;36532:31;;;;;;;;;;;;;;35463:1108;;;;:::o;5643:191::-;5717:16;5736:6;;;;;;;;;;;5717:25;;5762:8;5753:6;;:17;;;;;;;;;;;;;;;;;;5817:8;5786:40;;5807:8;5786:40;;;;;;;;;;;;5706:128;5643:191;:::o;18530:326::-;18590:4;18847:1;18825:7;:19;;;:23;18818:30;;18530:326;;;:::o;48604:667::-;48767:4;48804:2;48788:36;;;48825:12;:10;:12::i;:::-;48839:4;48845:7;48854:5;48788:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48784:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49039:1;49022:6;:13;:18;49018:235;;;49068:40;;;;;;;;;;;;;;49018:235;49211:6;49205:13;49196:6;49192:2;49188:15;49181:38;48784:480;48917:45;;;48907:55;;;:6;:55;;;;48900:62;;;48604:667;;;;;;:::o;53539:109::-;53599:13;53632:8;53625:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53539:109;:::o;26165:723::-;26221:13;26451:1;26442:5;:10;26438:53;;;26469:10;;;;;;;;;;;;;;;;;;;;;26438:53;26501:12;26516:5;26501:20;;26532:14;26557:78;26572:1;26564:4;:9;26557:78;;26590:8;;;;;:::i;:::-;;;;26621:2;26613:10;;;;;:::i;:::-;;;26557:78;;;26645:19;26677:6;26667:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26645:39;;26695:154;26711:1;26702:5;:10;26695:154;;26739:1;26729:11;;;;;:::i;:::-;;;26806:2;26798:5;:10;;;;:::i;:::-;26785:2;:24;;;;:::i;:::-;26772:39;;26755:6;26762;26755:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;26835:2;26826:11;;;;;:::i;:::-;;;26695:154;;;26873:6;26859:21;;;;;26165:723;;;;:::o;1506:675::-;1589:7;1609:20;1632:4;1609:27;;1652:9;1647:497;1671:5;:12;1667:1;:16;1647:497;;;1705:20;1728:5;1734:1;1728:8;;;;;;;;:::i;:::-;;;;;;;;1705:31;;1771:12;1755;:28;1751:382;;1898:42;1913:12;1927;1898:14;:42::i;:::-;1883:57;;1751:382;;;2075:42;2090:12;2104;2075:14;:42::i;:::-;2060:57;;1751:382;1690:454;1685:3;;;;;:::i;:::-;;;;1647:497;;;;2161:12;2154:19;;;1506:675;;;;:::o;40967:163::-;41090:32;41096:2;41100:8;41110:5;41117:4;41090:5;:32::i;:::-;40967:163;;;:::o;49919:159::-;;;;;:::o;50737:158::-;;;;;:::o;2189:224::-;2257:13;2320:1;2314:4;2307:15;2349:1;2343:4;2336:15;2390:4;2384;2374:21;2365:30;;2189:224;;;;:::o;41389:1775::-;41528:20;41551:13;;41528:36;;41593:1;41579:16;;:2;:16;;;41575:48;;;41604:19;;;;;;;;;;;;;;41575:48;41650:1;41638:8;:13;41634:44;;;41660:18;;;;;;;;;;;;;;41634:44;41691:61;41721:1;41725:2;41729:12;41743:8;41691:21;:61::i;:::-;42064:8;42029:12;:16;42042:2;42029:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42128:8;42088:12;:16;42101:2;42088:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42187:2;42154:11;:25;42166:12;42154:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42254:15;42204:11;:25;42216:12;42204:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;42287:20;42310:12;42287:35;;42337:11;42366:8;42351:12;:23;42337:37;;42395:4;:23;;;;;42403:15;:2;:13;;;:15::i;:::-;42395:23;42391:641;;;42439:314;42495:12;42491:2;42470:38;;42487:1;42470:38;;;;;;;;;;;;42536:69;42575:1;42579:2;42583:14;;;;;;42599:5;42536:30;:69::i;:::-;42531:174;;42641:40;;;;;;;;;;;;;;42531:174;42748:3;42732:12;:19;;42439:314;;42834:12;42817:13;;:29;42813:43;;42848:8;;;42813:43;42391:641;;;42897:120;42953:14;;;;;;42949:2;42928:40;;42945:1;42928:40;;;;;;;;;;;;43012:3;42996:12;:19;;42897:120;;42391:641;43062:12;43046:13;:28;;;;42004:1082;;43096:60;43125:1;43129:2;43133:12;43147:8;43096:20;:60::i;:::-;41517:1647;41389:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:155::-;622:5;660:6;647:20;638:29;;676:41;711:5;676:41;:::i;:::-;568:155;;;;:::o;746:568::-;819:8;829:6;879:3;872:4;864:6;860:17;856:27;846:122;;887:79;;:::i;:::-;846:122;1000:6;987:20;977:30;;1030:18;1022:6;1019:30;1016:117;;;1052:79;;:::i;:::-;1016:117;1166:4;1158:6;1154:17;1142:29;;1220:3;1212:4;1204:6;1200:17;1190:8;1186:32;1183:41;1180:128;;;1227:79;;:::i;:::-;1180:128;746:568;;;;;:::o;1337:::-;1410:8;1420:6;1470:3;1463:4;1455:6;1451:17;1447:27;1437:122;;1478:79;;:::i;:::-;1437:122;1591:6;1578:20;1568:30;;1621:18;1613:6;1610:30;1607:117;;;1643:79;;:::i;:::-;1607:117;1757:4;1749:6;1745:17;1733:29;;1811:3;1803:4;1795:6;1791:17;1781:8;1777:32;1774:41;1771:128;;;1818:79;;:::i;:::-;1771:128;1337:568;;;;;:::o;1928:::-;2001:8;2011:6;2061:3;2054:4;2046:6;2042:17;2038:27;2028:122;;2069:79;;:::i;:::-;2028:122;2182:6;2169:20;2159:30;;2212:18;2204:6;2201:30;2198:117;;;2234:79;;:::i;:::-;2198:117;2348:4;2340:6;2336:17;2324:29;;2402:3;2394:4;2386:6;2382:17;2372:8;2368:32;2365:41;2362:128;;;2409:79;;:::i;:::-;2362:128;1928:568;;;;;:::o;2502:133::-;2545:5;2583:6;2570:20;2561:29;;2599:30;2623:5;2599:30;:::i;:::-;2502:133;;;;:::o;2641:139::-;2687:5;2725:6;2712:20;2703:29;;2741:33;2768:5;2741:33;:::i;:::-;2641:139;;;;:::o;2786:137::-;2831:5;2869:6;2856:20;2847:29;;2885:32;2911:5;2885:32;:::i;:::-;2786:137;;;;:::o;2929:141::-;2985:5;3016:6;3010:13;3001:22;;3032:32;3058:5;3032:32;:::i;:::-;2929:141;;;;:::o;3089:338::-;3144:5;3193:3;3186:4;3178:6;3174:17;3170:27;3160:122;;3201:79;;:::i;:::-;3160:122;3318:6;3305:20;3343:78;3417:3;3409:6;3402:4;3394:6;3390:17;3343:78;:::i;:::-;3334:87;;3150:277;3089:338;;;;:::o;3447:553::-;3505:8;3515:6;3565:3;3558:4;3550:6;3546:17;3542:27;3532:122;;3573:79;;:::i;:::-;3532:122;3686:6;3673:20;3663:30;;3716:18;3708:6;3705:30;3702:117;;;3738:79;;:::i;:::-;3702:117;3852:4;3844:6;3840:17;3828:29;;3906:3;3898:4;3890:6;3886:17;3876:8;3872:32;3869:41;3866:128;;;3913:79;;:::i;:::-;3866:128;3447:553;;;;;:::o;4006:139::-;4052:5;4090:6;4077:20;4068:29;;4106:33;4133:5;4106:33;:::i;:::-;4006:139;;;;:::o;4151:329::-;4210:6;4259:2;4247:9;4238:7;4234:23;4230:32;4227:119;;;4265:79;;:::i;:::-;4227:119;4385:1;4410:53;4455:7;4446:6;4435:9;4431:22;4410:53;:::i;:::-;4400:63;;4356:117;4151:329;;;;:::o;4486:474::-;4554:6;4562;4611:2;4599:9;4590:7;4586:23;4582:32;4579:119;;;4617:79;;:::i;:::-;4579:119;4737:1;4762:53;4807:7;4798:6;4787:9;4783:22;4762:53;:::i;:::-;4752:63;;4708:117;4864:2;4890:53;4935:7;4926:6;4915:9;4911:22;4890:53;:::i;:::-;4880:63;;4835:118;4486:474;;;;;:::o;4966:619::-;5043:6;5051;5059;5108:2;5096:9;5087:7;5083:23;5079:32;5076:119;;;5114:79;;:::i;:::-;5076:119;5234:1;5259:53;5304:7;5295:6;5284:9;5280:22;5259:53;:::i;:::-;5249:63;;5205:117;5361:2;5387:53;5432:7;5423:6;5412:9;5408:22;5387:53;:::i;:::-;5377:63;;5332:118;5489:2;5515:53;5560:7;5551:6;5540:9;5536:22;5515:53;:::i;:::-;5505:63;;5460:118;4966:619;;;;;:::o;5591:943::-;5686:6;5694;5702;5710;5759:3;5747:9;5738:7;5734:23;5730:33;5727:120;;;5766:79;;:::i;:::-;5727:120;5886:1;5911:53;5956:7;5947:6;5936:9;5932:22;5911:53;:::i;:::-;5901:63;;5857:117;6013:2;6039:53;6084:7;6075:6;6064:9;6060:22;6039:53;:::i;:::-;6029:63;;5984:118;6141:2;6167:53;6212:7;6203:6;6192:9;6188:22;6167:53;:::i;:::-;6157:63;;6112:118;6297:2;6286:9;6282:18;6269:32;6328:18;6320:6;6317:30;6314:117;;;6350:79;;:::i;:::-;6314:117;6455:62;6509:7;6500:6;6489:9;6485:22;6455:62;:::i;:::-;6445:72;;6240:287;5591:943;;;;;;;:::o;6540:468::-;6605:6;6613;6662:2;6650:9;6641:7;6637:23;6633:32;6630:119;;;6668:79;;:::i;:::-;6630:119;6788:1;6813:53;6858:7;6849:6;6838:9;6834:22;6813:53;:::i;:::-;6803:63;;6759:117;6915:2;6941:50;6983:7;6974:6;6963:9;6959:22;6941:50;:::i;:::-;6931:60;;6886:115;6540:468;;;;;:::o;7014:474::-;7082:6;7090;7139:2;7127:9;7118:7;7114:23;7110:32;7107:119;;;7145:79;;:::i;:::-;7107:119;7265:1;7290:53;7335:7;7326:6;7315:9;7311:22;7290:53;:::i;:::-;7280:63;;7236:117;7392:2;7418:53;7463:7;7454:6;7443:9;7439:22;7418:53;:::i;:::-;7408:63;;7363:118;7014:474;;;;;:::o;7494:934::-;7616:6;7624;7632;7640;7689:2;7677:9;7668:7;7664:23;7660:32;7657:119;;;7695:79;;:::i;:::-;7657:119;7843:1;7832:9;7828:17;7815:31;7873:18;7865:6;7862:30;7859:117;;;7895:79;;:::i;:::-;7859:117;8008:80;8080:7;8071:6;8060:9;8056:22;8008:80;:::i;:::-;7990:98;;;;7786:312;8165:2;8154:9;8150:18;8137:32;8196:18;8188:6;8185:30;8182:117;;;8218:79;;:::i;:::-;8182:117;8331:80;8403:7;8394:6;8383:9;8379:22;8331:80;:::i;:::-;8313:98;;;;8108:313;7494:934;;;;;;;:::o;8434:329::-;8493:6;8542:2;8530:9;8521:7;8517:23;8513:32;8510:119;;;8548:79;;:::i;:::-;8510:119;8668:1;8693:53;8738:7;8729:6;8718:9;8714:22;8693:53;:::i;:::-;8683:63;;8639:117;8434:329;;;;:::o;8769:327::-;8827:6;8876:2;8864:9;8855:7;8851:23;8847:32;8844:119;;;8882:79;;:::i;:::-;8844:119;9002:1;9027:52;9071:7;9062:6;9051:9;9047:22;9027:52;:::i;:::-;9017:62;;8973:116;8769:327;;;;:::o;9102:349::-;9171:6;9220:2;9208:9;9199:7;9195:23;9191:32;9188:119;;;9226:79;;:::i;:::-;9188:119;9346:1;9371:63;9426:7;9417:6;9406:9;9402:22;9371:63;:::i;:::-;9361:73;;9317:127;9102:349;;;;:::o;9457:529::-;9528:6;9536;9585:2;9573:9;9564:7;9560:23;9556:32;9553:119;;;9591:79;;:::i;:::-;9553:119;9739:1;9728:9;9724:17;9711:31;9769:18;9761:6;9758:30;9755:117;;;9791:79;;:::i;:::-;9755:117;9904:65;9961:7;9952:6;9941:9;9937:22;9904:65;:::i;:::-;9886:83;;;;9682:297;9457:529;;;;;:::o;9992:329::-;10051:6;10100:2;10088:9;10079:7;10075:23;10071:32;10068:119;;;10106:79;;:::i;:::-;10068:119;10226:1;10251:53;10296:7;10287:6;10276:9;10272:22;10251:53;:::i;:::-;10241:63;;10197:117;9992:329;;;;:::o;10327:490::-;10403:6;10411;10460:2;10448:9;10439:7;10435:23;10431:32;10428:119;;;10466:79;;:::i;:::-;10428:119;10586:1;10611:53;10656:7;10647:6;10636:9;10632:22;10611:53;:::i;:::-;10601:63;;10557:117;10713:2;10739:61;10792:7;10783:6;10772:9;10768:22;10739:61;:::i;:::-;10729:71;;10684:126;10327:490;;;;;:::o;10823:704::-;10918:6;10926;10934;10983:2;10971:9;10962:7;10958:23;10954:32;10951:119;;;10989:79;;:::i;:::-;10951:119;11109:1;11134:53;11179:7;11170:6;11159:9;11155:22;11134:53;:::i;:::-;11124:63;;11080:117;11264:2;11253:9;11249:18;11236:32;11295:18;11287:6;11284:30;11281:117;;;11317:79;;:::i;:::-;11281:117;11430:80;11502:7;11493:6;11482:9;11478:22;11430:80;:::i;:::-;11412:98;;;;11207:313;10823:704;;;;;:::o;11533:118::-;11620:24;11638:5;11620:24;:::i;:::-;11615:3;11608:37;11533:118;;:::o;11657:157::-;11762:45;11782:24;11800:5;11782:24;:::i;:::-;11762:45;:::i;:::-;11757:3;11750:58;11657:157;;:::o;11820:109::-;11901:21;11916:5;11901:21;:::i;:::-;11896:3;11889:34;11820:109;;:::o;11935:118::-;12022:24;12040:5;12022:24;:::i;:::-;12017:3;12010:37;11935:118;;:::o;12059:360::-;12145:3;12173:38;12205:5;12173:38;:::i;:::-;12227:70;12290:6;12285:3;12227:70;:::i;:::-;12220:77;;12306:52;12351:6;12346:3;12339:4;12332:5;12328:16;12306:52;:::i;:::-;12383:29;12405:6;12383:29;:::i;:::-;12378:3;12374:39;12367:46;;12149:270;12059:360;;;;:::o;12425:364::-;12513:3;12541:39;12574:5;12541:39;:::i;:::-;12596:71;12660:6;12655:3;12596:71;:::i;:::-;12589:78;;12676:52;12721:6;12716:3;12709:4;12702:5;12698:16;12676:52;:::i;:::-;12753:29;12775:6;12753:29;:::i;:::-;12748:3;12744:39;12737:46;;12517:272;12425:364;;;;:::o;12795:377::-;12901:3;12929:39;12962:5;12929:39;:::i;:::-;12984:89;13066:6;13061:3;12984:89;:::i;:::-;12977:96;;13082:52;13127:6;13122:3;13115:4;13108:5;13104:16;13082:52;:::i;:::-;13159:6;13154:3;13150:16;13143:23;;12905:267;12795:377;;;;:::o;13178:366::-;13320:3;13341:67;13405:2;13400:3;13341:67;:::i;:::-;13334:74;;13417:93;13506:3;13417:93;:::i;:::-;13535:2;13530:3;13526:12;13519:19;;13178:366;;;:::o;13550:::-;13692:3;13713:67;13777:2;13772:3;13713:67;:::i;:::-;13706:74;;13789:93;13878:3;13789:93;:::i;:::-;13907:2;13902:3;13898:12;13891:19;;13550:366;;;:::o;13922:::-;14064:3;14085:67;14149:2;14144:3;14085:67;:::i;:::-;14078:74;;14161:93;14250:3;14161:93;:::i;:::-;14279:2;14274:3;14270:12;14263:19;;13922:366;;;:::o;14294:::-;14436:3;14457:67;14521:2;14516:3;14457:67;:::i;:::-;14450:74;;14533:93;14622:3;14533:93;:::i;:::-;14651:2;14646:3;14642:12;14635:19;;14294:366;;;:::o;14666:::-;14808:3;14829:67;14893:2;14888:3;14829:67;:::i;:::-;14822:74;;14905:93;14994:3;14905:93;:::i;:::-;15023:2;15018:3;15014:12;15007:19;;14666:366;;;:::o;15038:::-;15180:3;15201:67;15265:2;15260:3;15201:67;:::i;:::-;15194:74;;15277:93;15366:3;15277:93;:::i;:::-;15395:2;15390:3;15386:12;15379:19;;15038:366;;;:::o;15410:::-;15552:3;15573:67;15637:2;15632:3;15573:67;:::i;:::-;15566:74;;15649:93;15738:3;15649:93;:::i;:::-;15767:2;15762:3;15758:12;15751:19;;15410:366;;;:::o;15782:::-;15924:3;15945:67;16009:2;16004:3;15945:67;:::i;:::-;15938:74;;16021:93;16110:3;16021:93;:::i;:::-;16139:2;16134:3;16130:12;16123:19;;15782:366;;;:::o;16154:::-;16296:3;16317:67;16381:2;16376:3;16317:67;:::i;:::-;16310:74;;16393:93;16482:3;16393:93;:::i;:::-;16511:2;16506:3;16502:12;16495:19;;16154:366;;;:::o;16526:::-;16668:3;16689:67;16753:2;16748:3;16689:67;:::i;:::-;16682:74;;16765:93;16854:3;16765:93;:::i;:::-;16883:2;16878:3;16874:12;16867:19;;16526:366;;;:::o;16898:::-;17040:3;17061:67;17125:2;17120:3;17061:67;:::i;:::-;17054:74;;17137:93;17226:3;17137:93;:::i;:::-;17255:2;17250:3;17246:12;17239:19;;16898:366;;;:::o;17270:::-;17412:3;17433:67;17497:2;17492:3;17433:67;:::i;:::-;17426:74;;17509:93;17598:3;17509:93;:::i;:::-;17627:2;17622:3;17618:12;17611:19;;17270:366;;;:::o;17642:398::-;17801:3;17822:83;17903:1;17898:3;17822:83;:::i;:::-;17815:90;;17914:93;18003:3;17914:93;:::i;:::-;18032:1;18027:3;18023:11;18016:18;;17642:398;;;:::o;18046:366::-;18188:3;18209:67;18273:2;18268:3;18209:67;:::i;:::-;18202:74;;18285:93;18374:3;18285:93;:::i;:::-;18403:2;18398:3;18394:12;18387:19;;18046:366;;;:::o;18418:::-;18560:3;18581:67;18645:2;18640:3;18581:67;:::i;:::-;18574:74;;18657:93;18746:3;18657:93;:::i;:::-;18775:2;18770:3;18766:12;18759:19;;18418:366;;;:::o;18790:::-;18932:3;18953:67;19017:2;19012:3;18953:67;:::i;:::-;18946:74;;19029:93;19118:3;19029:93;:::i;:::-;19147:2;19142:3;19138:12;19131:19;;18790:366;;;:::o;19162:::-;19304:3;19325:67;19389:2;19384:3;19325:67;:::i;:::-;19318:74;;19401:93;19490:3;19401:93;:::i;:::-;19519:2;19514:3;19510:12;19503:19;;19162:366;;;:::o;19534:::-;19676:3;19697:67;19761:2;19756:3;19697:67;:::i;:::-;19690:74;;19773:93;19862:3;19773:93;:::i;:::-;19891:2;19886:3;19882:12;19875:19;;19534:366;;;:::o;19906:::-;20048:3;20069:67;20133:2;20128:3;20069:67;:::i;:::-;20062:74;;20145:93;20234:3;20145:93;:::i;:::-;20263:2;20258:3;20254:12;20247:19;;19906:366;;;:::o;20278:118::-;20365:24;20383:5;20365:24;:::i;:::-;20360:3;20353:37;20278:118;;:::o;20402:256::-;20514:3;20529:75;20600:3;20591:6;20529:75;:::i;:::-;20629:2;20624:3;20620:12;20613:19;;20649:3;20642:10;;20402:256;;;;:::o;20664:435::-;20844:3;20866:95;20957:3;20948:6;20866:95;:::i;:::-;20859:102;;20978:95;21069:3;21060:6;20978:95;:::i;:::-;20971:102;;21090:3;21083:10;;20664:435;;;;;:::o;21105:379::-;21289:3;21311:147;21454:3;21311:147;:::i;:::-;21304:154;;21475:3;21468:10;;21105:379;;;:::o;21490:222::-;21583:4;21621:2;21610:9;21606:18;21598:26;;21634:71;21702:1;21691:9;21687:17;21678:6;21634:71;:::i;:::-;21490:222;;;;:::o;21718:640::-;21913:4;21951:3;21940:9;21936:19;21928:27;;21965:71;22033:1;22022:9;22018:17;22009:6;21965:71;:::i;:::-;22046:72;22114:2;22103:9;22099:18;22090:6;22046:72;:::i;:::-;22128;22196:2;22185:9;22181:18;22172:6;22128:72;:::i;:::-;22247:9;22241:4;22237:20;22232:2;22221:9;22217:18;22210:48;22275:76;22346:4;22337:6;22275:76;:::i;:::-;22267:84;;21718:640;;;;;;;:::o;22364:210::-;22451:4;22489:2;22478:9;22474:18;22466:26;;22502:65;22564:1;22553:9;22549:17;22540:6;22502:65;:::i;:::-;22364:210;;;;:::o;22580:222::-;22673:4;22711:2;22700:9;22696:18;22688:26;;22724:71;22792:1;22781:9;22777:17;22768:6;22724:71;:::i;:::-;22580:222;;;;:::o;22808:313::-;22921:4;22959:2;22948:9;22944:18;22936:26;;23008:9;23002:4;22998:20;22994:1;22983:9;22979:17;22972:47;23036:78;23109:4;23100:6;23036:78;:::i;:::-;23028:86;;22808:313;;;;:::o;23127:419::-;23293:4;23331:2;23320:9;23316:18;23308:26;;23380:9;23374:4;23370:20;23366:1;23355:9;23351:17;23344:47;23408:131;23534:4;23408:131;:::i;:::-;23400:139;;23127:419;;;:::o;23552:::-;23718:4;23756:2;23745:9;23741:18;23733:26;;23805:9;23799:4;23795:20;23791:1;23780:9;23776:17;23769:47;23833:131;23959:4;23833:131;:::i;:::-;23825:139;;23552:419;;;:::o;23977:::-;24143:4;24181:2;24170:9;24166:18;24158:26;;24230:9;24224:4;24220:20;24216:1;24205:9;24201:17;24194:47;24258:131;24384:4;24258:131;:::i;:::-;24250:139;;23977:419;;;:::o;24402:::-;24568:4;24606:2;24595:9;24591:18;24583:26;;24655:9;24649:4;24645:20;24641:1;24630:9;24626:17;24619:47;24683:131;24809:4;24683:131;:::i;:::-;24675:139;;24402:419;;;:::o;24827:::-;24993:4;25031:2;25020:9;25016:18;25008:26;;25080:9;25074:4;25070:20;25066:1;25055:9;25051:17;25044:47;25108:131;25234:4;25108:131;:::i;:::-;25100:139;;24827:419;;;:::o;25252:::-;25418:4;25456:2;25445:9;25441:18;25433:26;;25505:9;25499:4;25495:20;25491:1;25480:9;25476:17;25469:47;25533:131;25659:4;25533:131;:::i;:::-;25525:139;;25252:419;;;:::o;25677:::-;25843:4;25881:2;25870:9;25866:18;25858:26;;25930:9;25924:4;25920:20;25916:1;25905:9;25901:17;25894:47;25958:131;26084:4;25958:131;:::i;:::-;25950:139;;25677:419;;;:::o;26102:::-;26268:4;26306:2;26295:9;26291:18;26283:26;;26355:9;26349:4;26345:20;26341:1;26330:9;26326:17;26319:47;26383:131;26509:4;26383:131;:::i;:::-;26375:139;;26102:419;;;:::o;26527:::-;26693:4;26731:2;26720:9;26716:18;26708:26;;26780:9;26774:4;26770:20;26766:1;26755:9;26751:17;26744:47;26808:131;26934:4;26808:131;:::i;:::-;26800:139;;26527:419;;;:::o;26952:::-;27118:4;27156:2;27145:9;27141:18;27133:26;;27205:9;27199:4;27195:20;27191:1;27180:9;27176:17;27169:47;27233:131;27359:4;27233:131;:::i;:::-;27225:139;;26952:419;;;:::o;27377:::-;27543:4;27581:2;27570:9;27566:18;27558:26;;27630:9;27624:4;27620:20;27616:1;27605:9;27601:17;27594:47;27658:131;27784:4;27658:131;:::i;:::-;27650:139;;27377:419;;;:::o;27802:::-;27968:4;28006:2;27995:9;27991:18;27983:26;;28055:9;28049:4;28045:20;28041:1;28030:9;28026:17;28019:47;28083:131;28209:4;28083:131;:::i;:::-;28075:139;;27802:419;;;:::o;28227:::-;28393:4;28431:2;28420:9;28416:18;28408:26;;28480:9;28474:4;28470:20;28466:1;28455:9;28451:17;28444:47;28508:131;28634:4;28508:131;:::i;:::-;28500:139;;28227:419;;;:::o;28652:::-;28818:4;28856:2;28845:9;28841:18;28833:26;;28905:9;28899:4;28895:20;28891:1;28880:9;28876:17;28869:47;28933:131;29059:4;28933:131;:::i;:::-;28925:139;;28652:419;;;:::o;29077:::-;29243:4;29281:2;29270:9;29266:18;29258:26;;29330:9;29324:4;29320:20;29316:1;29305:9;29301:17;29294:47;29358:131;29484:4;29358:131;:::i;:::-;29350:139;;29077:419;;;:::o;29502:::-;29668:4;29706:2;29695:9;29691:18;29683:26;;29755:9;29749:4;29745:20;29741:1;29730:9;29726:17;29719:47;29783:131;29909:4;29783:131;:::i;:::-;29775:139;;29502:419;;;:::o;29927:::-;30093:4;30131:2;30120:9;30116:18;30108:26;;30180:9;30174:4;30170:20;30166:1;30155:9;30151:17;30144:47;30208:131;30334:4;30208:131;:::i;:::-;30200:139;;29927:419;;;:::o;30352:::-;30518:4;30556:2;30545:9;30541:18;30533:26;;30605:9;30599:4;30595:20;30591:1;30580:9;30576:17;30569:47;30633:131;30759:4;30633:131;:::i;:::-;30625:139;;30352:419;;;:::o;30777:222::-;30870:4;30908:2;30897:9;30893:18;30885:26;;30921:71;30989:1;30978:9;30974:17;30965:6;30921:71;:::i;:::-;30777:222;;;;:::o;31005:129::-;31039:6;31066:20;;:::i;:::-;31056:30;;31095:33;31123:4;31115:6;31095:33;:::i;:::-;31005:129;;;:::o;31140:75::-;31173:6;31206:2;31200:9;31190:19;;31140:75;:::o;31221:307::-;31282:4;31372:18;31364:6;31361:30;31358:56;;;31394:18;;:::i;:::-;31358:56;31432:29;31454:6;31432:29;:::i;:::-;31424:37;;31516:4;31510;31506:15;31498:23;;31221:307;;;:::o;31534:98::-;31585:6;31619:5;31613:12;31603:22;;31534:98;;;:::o;31638:99::-;31690:6;31724:5;31718:12;31708:22;;31638:99;;;:::o;31743:168::-;31826:11;31860:6;31855:3;31848:19;31900:4;31895:3;31891:14;31876:29;;31743:168;;;;:::o;31917:147::-;32018:11;32055:3;32040:18;;31917:147;;;;:::o;32070:169::-;32154:11;32188:6;32183:3;32176:19;32228:4;32223:3;32219:14;32204:29;;32070:169;;;;:::o;32245:148::-;32347:11;32384:3;32369:18;;32245:148;;;;:::o;32399:305::-;32439:3;32458:20;32476:1;32458:20;:::i;:::-;32453:25;;32492:20;32510:1;32492:20;:::i;:::-;32487:25;;32646:1;32578:66;32574:74;32571:1;32568:81;32565:107;;;32652:18;;:::i;:::-;32565:107;32696:1;32693;32689:9;32682:16;;32399:305;;;;:::o;32710:237::-;32748:3;32767:18;32783:1;32767:18;:::i;:::-;32762:23;;32799:18;32815:1;32799:18;:::i;:::-;32794:23;;32889:1;32883:4;32879:12;32876:1;32873:19;32870:45;;;32895:18;;:::i;:::-;32870:45;32939:1;32936;32932:9;32925:16;;32710:237;;;;:::o;32953:185::-;32993:1;33010:20;33028:1;33010:20;:::i;:::-;33005:25;;33044:20;33062:1;33044:20;:::i;:::-;33039:25;;33083:1;33073:35;;33088:18;;:::i;:::-;33073:35;33130:1;33127;33123:9;33118:14;;32953:185;;;;:::o;33144:348::-;33184:7;33207:20;33225:1;33207:20;:::i;:::-;33202:25;;33241:20;33259:1;33241:20;:::i;:::-;33236:25;;33429:1;33361:66;33357:74;33354:1;33351:81;33346:1;33339:9;33332:17;33328:105;33325:131;;;33436:18;;:::i;:::-;33325:131;33484:1;33481;33477:9;33466:20;;33144:348;;;;:::o;33498:191::-;33538:4;33558:20;33576:1;33558:20;:::i;:::-;33553:25;;33592:20;33610:1;33592:20;:::i;:::-;33587:25;;33631:1;33628;33625:8;33622:34;;;33636:18;;:::i;:::-;33622:34;33681:1;33678;33674:9;33666:17;;33498:191;;;;:::o;33695:96::-;33732:7;33761:24;33779:5;33761:24;:::i;:::-;33750:35;;33695:96;;;:::o;33797:104::-;33842:7;33871:24;33889:5;33871:24;:::i;:::-;33860:35;;33797:104;;;:::o;33907:90::-;33941:7;33984:5;33977:13;33970:21;33959:32;;33907:90;;;:::o;34003:77::-;34040:7;34069:5;34058:16;;34003:77;;;:::o;34086:149::-;34122:7;34162:66;34155:5;34151:78;34140:89;;34086:149;;;:::o;34241:126::-;34278:7;34318:42;34311:5;34307:54;34296:65;;34241:126;;;:::o;34373:77::-;34410:7;34439:5;34428:16;;34373:77;;;:::o;34456:86::-;34491:7;34531:4;34524:5;34520:16;34509:27;;34456:86;;;:::o;34548:154::-;34632:6;34627:3;34622;34609:30;34694:1;34685:6;34680:3;34676:16;34669:27;34548:154;;;:::o;34708:307::-;34776:1;34786:113;34800:6;34797:1;34794:13;34786:113;;;34885:1;34880:3;34876:11;34870:18;34866:1;34861:3;34857:11;34850:39;34822:2;34819:1;34815:10;34810:15;;34786:113;;;34917:6;34914:1;34911:13;34908:101;;;34997:1;34988:6;34983:3;34979:16;34972:27;34908:101;34757:258;34708:307;;;:::o;35021:320::-;35065:6;35102:1;35096:4;35092:12;35082:22;;35149:1;35143:4;35139:12;35170:18;35160:81;;35226:4;35218:6;35214:17;35204:27;;35160:81;35288:2;35280:6;35277:14;35257:18;35254:38;35251:84;;;35307:18;;:::i;:::-;35251:84;35072:269;35021:320;;;:::o;35347:281::-;35430:27;35452:4;35430:27;:::i;:::-;35422:6;35418:40;35560:6;35548:10;35545:22;35524:18;35512:10;35509:34;35506:62;35503:88;;;35571:18;;:::i;:::-;35503:88;35611:10;35607:2;35600:22;35390:238;35347:281;;:::o;35634:233::-;35673:3;35696:24;35714:5;35696:24;:::i;:::-;35687:33;;35742:66;35735:5;35732:77;35729:103;;;35812:18;;:::i;:::-;35729:103;35859:1;35852:5;35848:13;35841:20;;35634:233;;;:::o;35873:100::-;35912:7;35941:26;35961:5;35941:26;:::i;:::-;35930:37;;35873:100;;;:::o;35979:94::-;36018:7;36047:20;36061:5;36047:20;:::i;:::-;36036:31;;35979:94;;;:::o;36079:176::-;36111:1;36128:20;36146:1;36128:20;:::i;:::-;36123:25;;36162:20;36180:1;36162:20;:::i;:::-;36157:25;;36201:1;36191:35;;36206:18;;:::i;:::-;36191:35;36247:1;36244;36240:9;36235:14;;36079:176;;;;:::o;36261:180::-;36309:77;36306:1;36299:88;36406:4;36403:1;36396:15;36430:4;36427:1;36420:15;36447:180;36495:77;36492:1;36485:88;36592:4;36589:1;36582:15;36616:4;36613:1;36606:15;36633:180;36681:77;36678:1;36671:88;36778:4;36775:1;36768:15;36802:4;36799:1;36792:15;36819:180;36867:77;36864:1;36857:88;36964:4;36961:1;36954:15;36988:4;36985:1;36978:15;37005:180;37053:77;37050:1;37043:88;37150:4;37147:1;37140:15;37174:4;37171:1;37164:15;37191:117;37300:1;37297;37290:12;37314:117;37423:1;37420;37413:12;37437:117;37546:1;37543;37536:12;37560:117;37669:1;37666;37659:12;37683:117;37792:1;37789;37782:12;37806:117;37915:1;37912;37905:12;37929:102;37970:6;38021:2;38017:7;38012:2;38005:5;38001:14;37997:28;37987:38;;37929:102;;;:::o;38037:94::-;38070:8;38118:5;38114:2;38110:14;38089:35;;38037:94;;;:::o;38137:221::-;38277:34;38273:1;38265:6;38261:14;38254:58;38346:4;38341:2;38333:6;38329:15;38322:29;38137:221;:::o;38364:225::-;38504:34;38500:1;38492:6;38488:14;38481:58;38573:8;38568:2;38560:6;38556:15;38549:33;38364:225;:::o;38595:180::-;38735:32;38731:1;38723:6;38719:14;38712:56;38595:180;:::o;38781:172::-;38921:24;38917:1;38909:6;38905:14;38898:48;38781:172;:::o;38959:180::-;39099:32;39095:1;39087:6;39083:14;39076:56;38959:180;:::o;39145:182::-;39285:34;39281:1;39273:6;39269:14;39262:58;39145:182;:::o;39333:223::-;39473:34;39469:1;39461:6;39457:14;39450:58;39542:6;39537:2;39529:6;39525:15;39518:31;39333:223;:::o;39562:177::-;39702:29;39698:1;39690:6;39686:14;39679:53;39562:177;:::o;39745:182::-;39885:34;39881:1;39873:6;39869:14;39862:58;39745:182;:::o;39933:173::-;40073:25;40069:1;40061:6;40057:14;40050:49;39933:173;:::o;40112:177::-;40252:29;40248:1;40240:6;40236:14;40229:53;40112:177;:::o;40295:174::-;40435:26;40431:1;40423:6;40419:14;40412:50;40295:174;:::o;40475:114::-;;:::o;40595:166::-;40735:18;40731:1;40723:6;40719:14;40712:42;40595:166;:::o;40767:172::-;40907:24;40903:1;40895:6;40891:14;40884:48;40767:172;:::o;40945:181::-;41085:33;41081:1;41073:6;41069:14;41062:57;40945:181;:::o;41132:172::-;41272:24;41268:1;41260:6;41256:14;41249:48;41132:172;:::o;41310:180::-;41450:32;41446:1;41438:6;41434:14;41427:56;41310:180;:::o;41496:179::-;41636:31;41632:1;41624:6;41620:14;41613:55;41496:179;:::o;41681:122::-;41754:24;41772:5;41754:24;:::i;:::-;41747:5;41744:35;41734:63;;41793:1;41790;41783:12;41734:63;41681:122;:::o;41809:138::-;41890:32;41916:5;41890:32;:::i;:::-;41883:5;41880:43;41870:71;;41937:1;41934;41927:12;41870:71;41809:138;:::o;41953:116::-;42023:21;42038:5;42023:21;:::i;:::-;42016:5;42013:32;42003:60;;42059:1;42056;42049:12;42003:60;41953:116;:::o;42075:122::-;42148:24;42166:5;42148:24;:::i;:::-;42141:5;42138:35;42128:63;;42187:1;42184;42177:12;42128:63;42075:122;:::o;42203:120::-;42275:23;42292:5;42275:23;:::i;:::-;42268:5;42265:34;42255:62;;42313:1;42310;42303:12;42255:62;42203:120;:::o;42329:122::-;42402:24;42420:5;42402:24;:::i;:::-;42395:5;42392:35;42382:63;;42441:1;42438;42431:12;42382:63;42329:122;:::o

Swarm Source

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