ETH Price: $3,503.76 (+3.94%)
Gas: 4 Gwei

Token

greendudes.wtf (GD.WTF)
 

Overview

Max Total Supply

2,210 GD.WTF

Holders

1,230

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 GD.WTF
0xdFA3880c3643c72805413f24557E2Ff1f2226Faa
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:
GreendudesNFT

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-06-10
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/contract_GD.sol

//SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;



contract GreendudesNFT is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI = "ipfs://bafybeido4v5br7mahckeu46nmqon3jen66qv3rilj3k2m2rnfe4xgin6se/";
    //string public constant BASE_EXTENSION = ".json";
    string public notRevealedUri = "ipfs://bafkreif773mfxzouc6turw2balbzvbjwpnqi4ywf7lxdizvxitjwjrn5ka";

    // Mapping from owner to greendude minted in pre-sale
    mapping(address => uint256) public addressPresaleMintedBalance;

    // Mapping from owner to greendude minted in public sale
    mapping(address => uint256) public addressMintedBalance;
 
    //greendude standard public price
    uint256 public  publicPrice = 0 ether;
    //greendude presale price
    uint256 public  presalePrice = 0 ether;
    //greendude max supply
    uint256 public  MAX_SUPPLY = 10000;
 
    uint256 public  presaleAmount = 5000;
  
    // Max Astronaut quantity a user can mint at a time in pre-sale
    uint256 public  MAX_PRESALE_MINT = 2;

    // Max Astronaut quantity a user can mint at a time in publicsale
    uint256 public  MAX_PUBLIC_MINT = 1;

    uint256 public RESERVED_GREEN_DUDES_QUANTITY = 50;

    bool public paused = true;

    bool public revealed = false;

    bool public onlyPresale = true;

    bool public presaleStarted = false;

    bool public reservedGreenDudes = true;

    address[] public presaleWhitelistAddresses;

    address payable public payments;

    constructor(
        string memory _name,
        string memory _symbol,
        address _payments
    ) ERC721(_name, _symbol) {
        payments = payable(_payments);
    }

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

    // public
     function getTotalSupply() public view returns(uint256) {
        return totalSupply();
    }

    function mint(uint256 _mintAmount) public payable {
        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 green dudes");
        require(msg.sender != owner(), "Owner can't mint");

            if (onlyPresale == true) {
                require(presaleStarted, "the presale has not started yet!");
                require(isWhitelisted(msg.sender), "user is not whitelisted");
                require(addressPresaleMintedBalance[msg.sender] + _mintAmount <= MAX_PRESALE_MINT, "Can only mint 2 green dudes per wallet in presale");
                require(supply + _mintAmount <= presaleAmount, "Purchase would exceed max supply of presale green dudes");
                require(presalePrice* _mintAmount <= msg.value, "insufficient funds");
              
                for (uint256 i = 1; i <= _mintAmount; i++) {
                    addressPresaleMintedBalance[msg.sender]++;
                    _safeMint(msg.sender, supply + i);
                }

            }else{
                require(supply + _mintAmount <= MAX_SUPPLY,"Purchase would exceed max supply of green dudes");
                require( msg.value >= publicPrice * _mintAmount,"insufficient funds");
               
                require(addressMintedBalance[msg.sender] + _mintAmount <= MAX_PUBLIC_MINT, "Can only mint 1 green dudes per wallet in public sale");

                 for (uint256 i = 1; i <= _mintAmount; i++) {
                    addressMintedBalance[msg.sender]++;
                    _safeMint(msg.sender, supply + i);
                }
            }     
        
    
        

        (bool success, ) = payable(payments).call{value: (msg.value * 75) / 1000}(
            ""
        );
        require(success);
    }

    function mintReserved() public payable onlyOwner {
        uint256 supply = totalSupply();
        require(RESERVED_GREEN_DUDES_QUANTITY > 0, "need to mint at least 1 green dudes");

        if (reservedGreenDudes) {
            require(presalePrice* RESERVED_GREEN_DUDES_QUANTITY <= msg.value, "insufficient funds");
            for (uint256 i = 1; i <= RESERVED_GREEN_DUDES_QUANTITY; i++) {
                    addressPresaleMintedBalance[msg.sender]++;
                    _safeMint(msg.sender, supply + i);
                }

            (bool success, ) = payable(payments).call{value: (msg.value * 75) / 1000}(
              ""
            );
            reservedGreenDudes = false;
            require(success);
        }
    }

    function isWhitelisted(address _user) public view returns (bool) {
        for (uint256 i = 0; i < presaleWhitelistAddresses.length; i++) {
            if (presaleWhitelistAddresses[i] == _user) {
                return true;
            }
        }
        return false;
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

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

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

    //only owner
    function setReveal(bool _revealed) public onlyOwner {
        revealed = _revealed;
    }

    function setPublicPrice(uint256 _newPublicPrice) public onlyOwner {
        publicPrice = _newPublicPrice;
    }

    function setPresaleStatus(bool _status) public onlyOwner {
        presaleStarted = _status;
    }

    function setPresalePrice(uint256 _newPresalePrice) public onlyOwner {
        presalePrice = _newPresalePrice;
    }

    function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
        MAX_SUPPLY = _newMaxSupply;
    }

    function setMaxPresaleMintPerTransaction (uint256 _newPresaleMint) public onlyOwner {
        MAX_PRESALE_MINT = _newPresaleMint;
    }

    function setMaxPublicMintPerTransaction (uint256 _newPublicMint) public onlyOwner {
        MAX_PUBLIC_MINT = _newPublicMint;
    }

    function setPresaleAmount(uint256 _newPresaleAmount) public onlyOwner {
        presaleAmount = _newPresaleAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

    function setReserved(bool _state) public onlyOwner {
        reservedGreenDudes = _state;
    }

    function setReservedQuantity(uint256 _newReservedQuantity) public onlyOwner {
        RESERVED_GREEN_DUDES_QUANTITY = _newReservedQuantity;
    }

    function setOnlyPresale(bool _state) public onlyOwner {
        onlyPresale = _state;
    }

   
    function whitelistUsers(address[] calldata _users) public onlyOwner {
        delete presaleWhitelistAddresses;
        presaleWhitelistAddresses = _users;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_payments","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PRESALE_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_GREEN_DUDES_QUANTITY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressPresaleMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintReserved","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payments","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"presaleWhitelistAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedGreenDudes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleMint","type":"uint256"}],"name":"setMaxPresaleMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicMint","type":"uint256"}],"name":"setMaxPublicMintPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresaleAmount","type":"uint256"}],"name":"setPresaleAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPresalePrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newReservedQuantity","type":"uint256"}],"name":"setReservedQuantity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052604051806080016040528060438152602001620063aa60439139600b908051906020019062000035929190620002b5565b50604051806080016040528060428152602001620063ed60429139600c908051906020019062000067929190620002b5565b506000600f5560006010556127106011556113886012556002601355600160145560326015556001601660006101000a81548160ff0219169083151502179055506000601660016101000a81548160ff0219169083151502179055506001601660026101000a81548160ff0219169083151502179055506000601660036101000a81548160ff0219169083151502179055506001601660046101000a81548160ff0219169083151502179055503480156200012157600080fd5b506040516200642f3803806200642f8339818101604052810190620001479190620003fa565b8282816000908051906020019062000161929190620002b5565b5080600190805190602001906200017a929190620002b5565b5050506200019d62000191620001e760201b60201c565b620001ef60201b60201c565b80601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000666565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c3906200055d565b90600052602060002090601f016020900481019282620002e7576000855562000333565b82601f106200030257805160ff191683800117855562000333565b8280016001018555821562000333579182015b828111156200033257825182559160200191906001019062000315565b5b50905062000342919062000346565b5090565b5b808211156200036157600081600090555060010162000347565b5090565b60006200037c6200037684620004bd565b62000494565b9050828152602081018484840111156200039b576200039a6200062c565b5b620003a884828562000527565b509392505050565b600081519050620003c1816200064c565b92915050565b600082601f830112620003df57620003de62000627565b5b8151620003f184826020860162000365565b91505092915050565b60008060006060848603121562000416576200041562000636565b5b600084015167ffffffffffffffff81111562000437576200043662000631565b5b6200044586828701620003c7565b935050602084015167ffffffffffffffff81111562000469576200046862000631565b5b6200047786828701620003c7565b92505060406200048a86828701620003b0565b9150509250925092565b6000620004a0620004b3565b9050620004ae828262000593565b919050565b6000604051905090565b600067ffffffffffffffff821115620004db57620004da620005f8565b5b620004e6826200063b565b9050602081019050919050565b6000620005008262000507565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005475780820151818401526020810190506200052a565b8381111562000557576000848401525b50505050565b600060028204905060018216806200057657607f821691505b602082108114156200058d576200058c620005c9565b5b50919050565b6200059e826200063b565b810181811067ffffffffffffffff82111715620005c057620005bf620005f8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200065781620004f3565b81146200066357600080fd5b50565b615d3480620006766000396000f3fe6080604052600436106103805760003560e01c806365f13097116101d1578063a70f1fbe11610102578063ca777e21116100a0578063edec5f271161006f578063edec5f2714610ce6578063f2c4ce1e14610d0f578063f2fde38b14610d38578063f9d38e9714610d6157610380565b8063ca777e2114610c4b578063e29a376414610c74578063e985e9c514610c9f578063ec8c890414610cdc57610380565b8063b88d4fde116100dc578063b88d4fde14610b91578063c4e41b2214610bba578063c627525514610be5578063c87b56dd14610c0e57610380565b8063a70f1fbe14610b10578063a945bf8014610b3b578063b138d50014610b6657610380565b80638895283f1161016f57806395d89b411161014957806395d89b4114610a75578063a0712d6814610aa0578063a22cb46514610abc578063a6d23e1014610ae557610380565b80638895283f146109f85780638b52310414610a215780638da5cb5b14610a4a57610380565b806370a08231116101ab57806370a082311461093e578063715018a61461097b5780637c8d78b0146109925780638059cbac146109cf57610380565b806365f13097146108bf5780636c0360eb146108ea5780636f8b44b01461091557610380565b80632eb7c7e3116102b6578063438b63001161025457806357dc41341161022357806357dc4134146108035780635c975abb1461082c57806361cb9161146108575780636352211e1461088257610380565b8063438b6300146107355780634f6ccce71461077257806351830227146107af57806355f804b3146107da57610380565b80633549345e116102905780633549345e1461069c5780633af32abf146106c55780633ccfd60b1461070257806342842e0e1461070c57610380565b80632eb7c7e31461060b5780632f745c591461063457806332cb6b0c1461067157610380565b8063095ea7b31161032357806318160ddd116102fd57806318160ddd1461055157806318cae2691461057c57806323b872dd146105b95780632a3f300c146105e257610380565b8063095ea7b3146104d45780630bc04d15146104fd57806314b020161461052657610380565b806304549d6f1161035f57806304549d6f1461041657806306fdde0314610441578063081812fc1461046c578063081c8c44146104a957610380565b80620e7fa81461038557806301ffc9a7146103b057806302329a29146103ed575b600080fd5b34801561039157600080fd5b5061039a610d9e565b6040516103a79190615025565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190614560565b610da4565b6040516103e49190614c68565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190614533565b610e1e565b005b34801561042257600080fd5b5061042b610eb7565b6040516104389190614c68565b60405180910390f35b34801561044d57600080fd5b50610456610eca565b6040516104639190614c83565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190614603565b610f5c565b6040516104a09190614bc4565b60405180910390f35b3480156104b557600080fd5b506104be610fe1565b6040516104cb9190614c83565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f691906144a6565b61106f565b005b34801561050957600080fd5b50610524600480360381019061051f9190614603565b611187565b005b34801561053257600080fd5b5061053b61120d565b6040516105489190614c68565b60405180910390f35b34801561055d57600080fd5b50610566611220565b6040516105739190615025565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190614323565b61122d565b6040516105b09190615025565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190614390565b611245565b005b3480156105ee57600080fd5b5061060960048036038101906106049190614533565b6112a5565b005b34801561061757600080fd5b50610632600480360381019061062d9190614533565b61133e565b005b34801561064057600080fd5b5061065b600480360381019061065691906144a6565b6113d7565b6040516106689190615025565b60405180910390f35b34801561067d57600080fd5b5061068661147c565b6040516106939190615025565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190614603565b611482565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190614323565b611508565b6040516106f99190614c68565b60405180910390f35b61070a6115b7565b005b34801561071857600080fd5b50610733600480360381019061072e9190614390565b6116ce565b005b34801561074157600080fd5b5061075c60048036038101906107579190614323565b6116ee565b6040516107699190614c46565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190614603565b61179c565b6040516107a69190615025565b60405180910390f35b3480156107bb57600080fd5b506107c461180d565b6040516107d19190614c68565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc91906145ba565b611820565b005b34801561080f57600080fd5b5061082a60048036038101906108259190614603565b6118b6565b005b34801561083857600080fd5b5061084161193c565b60405161084e9190614c68565b60405180910390f35b34801561086357600080fd5b5061086c61194f565b6040516108799190614c68565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614603565b611962565b6040516108b69190614bc4565b60405180910390f35b3480156108cb57600080fd5b506108d4611a14565b6040516108e19190615025565b60405180910390f35b3480156108f657600080fd5b506108ff611a1a565b60405161090c9190614c83565b60405180910390f35b34801561092157600080fd5b5061093c60048036038101906109379190614603565b611aa8565b005b34801561094a57600080fd5b5061096560048036038101906109609190614323565b611b2e565b6040516109729190615025565b60405180910390f35b34801561098757600080fd5b50610990611be6565b005b34801561099e57600080fd5b506109b960048036038101906109b49190614603565b611c6e565b6040516109c69190614bc4565b60405180910390f35b3480156109db57600080fd5b506109f660048036038101906109f19190614603565b611cad565b005b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190614533565b611d33565b005b348015610a2d57600080fd5b50610a486004803603810190610a439190614603565b611dcc565b005b348015610a5657600080fd5b50610a5f611e52565b604051610a6c9190614bc4565b60405180910390f35b348015610a8157600080fd5b50610a8a611e7c565b604051610a979190614c83565b60405180910390f35b610aba6004803603810190610ab59190614603565b611f0e565b005b348015610ac857600080fd5b50610ae36004803603810190610ade9190614466565b612508565b005b348015610af157600080fd5b50610afa61251e565b604051610b079190614bdf565b60405180910390f35b348015610b1c57600080fd5b50610b25612544565b604051610b329190615025565b60405180910390f35b348015610b4757600080fd5b50610b5061254a565b604051610b5d9190615025565b60405180910390f35b348015610b7257600080fd5b50610b7b612550565b604051610b889190615025565b60405180910390f35b348015610b9d57600080fd5b50610bb86004803603810190610bb391906143e3565b612556565b005b348015610bc657600080fd5b50610bcf6125b8565b604051610bdc9190615025565b60405180910390f35b348015610bf157600080fd5b50610c0c6004803603810190610c079190614603565b6125c7565b005b348015610c1a57600080fd5b50610c356004803603810190610c309190614603565b61264d565b604051610c429190614c83565b60405180910390f35b348015610c5757600080fd5b50610c726004803603810190610c6d9190614533565b6127a3565b005b348015610c8057600080fd5b50610c8961283c565b604051610c969190615025565b60405180910390f35b348015610cab57600080fd5b50610cc66004803603810190610cc19190614350565b612842565b604051610cd39190614c68565b60405180910390f35b610ce46128d6565b005b348015610cf257600080fd5b50610d0d6004803603810190610d0891906144e6565b612b69565b005b348015610d1b57600080fd5b50610d366004803603810190610d3191906145ba565b612c09565b005b348015610d4457600080fd5b50610d5f6004803603810190610d5a9190614323565b612c9f565b005b348015610d6d57600080fd5b50610d886004803603810190610d839190614323565b612d97565b604051610d959190615025565b60405180910390f35b60105481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e175750610e1682612daf565b5b9050919050565b610e26612e91565b73ffffffffffffffffffffffffffffffffffffffff16610e44611e52565b73ffffffffffffffffffffffffffffffffffffffff1614610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190614e85565b60405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b601660039054906101000a900460ff1681565b606060008054610ed99061532b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f059061532b565b8015610f525780601f10610f2757610100808354040283529160200191610f52565b820191906000526020600020905b815481529060010190602001808311610f3557829003601f168201915b5050505050905090565b6000610f6782612e99565b610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90614e45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610fee9061532b565b80601f016020809104026020016040519081016040528092919081815260200182805461101a9061532b565b80156110675780601f1061103c57610100808354040283529160200191611067565b820191906000526020600020905b81548152906001019060200180831161104a57829003601f168201915b505050505081565b600061107a82611962565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290614ee5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661110a612e91565b73ffffffffffffffffffffffffffffffffffffffff161480611139575061113881611133612e91565b612842565b5b611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f90614dc5565b60405180910390fd5b6111828383612f05565b505050565b61118f612e91565b73ffffffffffffffffffffffffffffffffffffffff166111ad611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90614e85565b60405180910390fd5b8060138190555050565b601660049054906101000a900460ff1681565b6000600880549050905090565b600e6020528060005260406000206000915090505481565b611256611250612e91565b82612fbe565b611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90614f65565b60405180910390fd5b6112a083838361309c565b505050565b6112ad612e91565b73ffffffffffffffffffffffffffffffffffffffff166112cb611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890614e85565b60405180910390fd5b80601660016101000a81548160ff02191690831515021790555050565b611346612e91565b73ffffffffffffffffffffffffffffffffffffffff16611364611e52565b73ffffffffffffffffffffffffffffffffffffffff16146113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190614e85565b60405180910390fd5b80601660046101000a81548160ff02191690831515021790555050565b60006113e283611b2e565b8210611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a90614cc5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60115481565b61148a612e91565b73ffffffffffffffffffffffffffffffffffffffff166114a8611e52565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590614e85565b60405180910390fd5b8060108190555050565b600080600090505b6017805490508110156115ac578273ffffffffffffffffffffffffffffffffffffffff1660178281548110611548576115476154c4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115995760019150506115b2565b80806115a49061538e565b915050611510565b50600090505b919050565b6115bf612e91565b73ffffffffffffffffffffffffffffffffffffffff166115dd611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90614e85565b60405180910390fd5b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161167b90614baf565b60006040518083038185875af1925050503d80600081146116b8576040519150601f19603f3d011682016040523d82523d6000602084013e6116bd565b606091505b50509050806116cb57600080fd5b50565b6116e983838360405180602001604052806000815250612556565b505050565b606060006116fb83611b2e565b905060008167ffffffffffffffff811115611719576117186154f3565b5b6040519080825280602002602001820160405280156117475781602001602082028036833780820191505090505b50905060005b828110156117915761175f85826113d7565b828281518110611772576117716154c4565b5b60200260200101818152505080806117899061538e565b91505061174d565b508092505050919050565b60006117a6611220565b82106117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90614fc5565b60405180910390fd5b600882815481106117fb576117fa6154c4565b5b90600052602060002001549050919050565b601660019054906101000a900460ff1681565b611828612e91565b73ffffffffffffffffffffffffffffffffffffffff16611846611e52565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390614e85565b60405180910390fd5b80600b90805190602001906118b2929190614020565b5050565b6118be612e91565b73ffffffffffffffffffffffffffffffffffffffff166118dc611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192990614e85565b60405180910390fd5b8060128190555050565b601660009054906101000a900460ff1681565b601660029054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290614e05565b60405180910390fd5b80915050919050565b60145481565b600b8054611a279061532b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a539061532b565b8015611aa05780601f10611a7557610100808354040283529160200191611aa0565b820191906000526020600020905b815481529060010190602001808311611a8357829003601f168201915b505050505081565b611ab0612e91565b73ffffffffffffffffffffffffffffffffffffffff16611ace611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b90614e85565b60405180910390fd5b8060118190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690614de5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bee612e91565b73ffffffffffffffffffffffffffffffffffffffff16611c0c611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5990614e85565b60405180910390fd5b611c6c6000613303565b565b60178181548110611c7e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611cb5612e91565b73ffffffffffffffffffffffffffffffffffffffff16611cd3611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090614e85565b60405180910390fd5b8060148190555050565b611d3b612e91565b73ffffffffffffffffffffffffffffffffffffffff16611d59611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690614e85565b60405180910390fd5b80601660036101000a81548160ff02191690831515021790555050565b611dd4612e91565b73ffffffffffffffffffffffffffffffffffffffff16611df2611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90614e85565b60405180910390fd5b8060158190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611e8b9061532b565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb79061532b565b8015611f045780601f10611ed957610100808354040283529160200191611f04565b820191906000526020600020905b815481529060010190602001808311611ee757829003601f168201915b5050505050905090565b601660009054906101000a900460ff1615611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590614ea5565b60405180910390fd5b6000611f68611220565b905060008211611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490614f05565b60405180910390fd5b611fb5611e52565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90614f25565b60405180910390fd5b60011515601660029054906101000a900460ff161515141561229657601660039054906101000a900460ff1661208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590614ca5565b60405180910390fd5b61209733611508565b6120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90615005565b60405180910390fd5b60135482600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612124919061514e565b1115612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c90614fe5565b60405180910390fd5b6012548282612174919061514e565b11156121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac90614fa5565b60405180910390fd5b34826010546121c491906151d5565b1115612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614f45565b60405180910390fd5b6000600190505b82811161229057600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906122639061538e565b919050555061227d338284612278919061514e565b6133c9565b80806122889061538e565b91505061220c565b50612452565b60115482826122a5919061514e565b11156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614f85565b60405180910390fd5b81600f546122f491906151d5565b341015612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90614f45565b60405180910390fd5b60145482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612384919061514e565b11156123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc90614e65565b60405180910390fd5b6000600190505b82811161245057600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906124239061538e565b919050555061243d338284612438919061514e565b6133c9565b80806124489061538e565b9150506123cc565b505b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e8604b3461249d91906151d5565b6124a791906151a4565b6040516124b390614baf565b60006040518083038185875af1925050503d80600081146124f0576040519150601f19603f3d011682016040523d82523d6000602084013e6124f5565b606091505b505090508061250357600080fd5b505050565b61251a612513612e91565b83836133e7565b5050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600f5481565b60125481565b612567612561612e91565b83612fbe565b6125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d90614f65565b60405180910390fd5b6125b284848484613554565b50505050565b60006125c2611220565b905090565b6125cf612e91565b73ffffffffffffffffffffffffffffffffffffffff166125ed611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a90614e85565b60405180910390fd5b80600f8190555050565b606061265882612e99565b612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90614ec5565b60405180910390fd5b60001515601660019054906101000a900460ff161515141561274557600c80546126c09061532b565b80601f01602080910402602001604051908101604052809291908181526020018280546126ec9061532b565b80156127395780601f1061270e57610100808354040283529160200191612739565b820191906000526020600020905b81548152906001019060200180831161271c57829003601f168201915b5050505050905061279e565b600061274f6135b0565b9050600081511161276f576040518060200160405280600081525061279a565b8061277984613642565b60405160200161278a929190614b8b565b6040516020818303038152906040525b9150505b919050565b6127ab612e91565b73ffffffffffffffffffffffffffffffffffffffff166127c9611e52565b73ffffffffffffffffffffffffffffffffffffffff161461281f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281690614e85565b60405180910390fd5b80601660026101000a81548160ff02191690831515021790555050565b60155481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128de612e91565b73ffffffffffffffffffffffffffffffffffffffff166128fc611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294990614e85565b60405180910390fd5b600061295c611220565b90506000601554116129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a90614f05565b60405180910390fd5b601660049054906101000a900460ff1615612b6657346015546010546129c991906151d5565b1115612a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0190614f45565b60405180910390fd5b6000600190505b6015548111612a9757600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612a6a9061538e565b9190505550612a84338284612a7f919061514e565b6133c9565b8080612a8f9061538e565b915050612a11565b506000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e8604b34612ae391906151d5565b612aed91906151a4565b604051612af990614baf565b60006040518083038185875af1925050503d8060008114612b36576040519150601f19603f3d011682016040523d82523d6000602084013e612b3b565b606091505b505090506000601660046101000a81548160ff02191690831515021790555080612b6457600080fd5b505b50565b612b71612e91565b73ffffffffffffffffffffffffffffffffffffffff16612b8f611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614e85565b60405180910390fd5b60176000612bf391906140a6565b818160179190612c049291906140c7565b505050565b612c11612e91565b73ffffffffffffffffffffffffffffffffffffffff16612c2f611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c90614e85565b60405180910390fd5b80600c9080519060200190612c9b929190614020565b5050565b612ca7612e91565b73ffffffffffffffffffffffffffffffffffffffff16612cc5611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1290614e85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8290614d05565b60405180910390fd5b612d9481613303565b50565b600d6020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e7a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e8a5750612e89826137a3565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f7883611962565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612fc982612e99565b613008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fff90614da5565b60405180910390fd5b600061301383611962565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061305557506130548185612842565b5b8061309357508373ffffffffffffffffffffffffffffffffffffffff1661307b84610f5c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130bc82611962565b73ffffffffffffffffffffffffffffffffffffffff1614613112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310990614d25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317990614d65565b60405180910390fd5b61318d83838361380d565b613198600082612f05565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131e8919061522f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461323f919061514e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132fe838383613921565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133e3828260405180602001604052806000815250613926565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344d90614d85565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516135479190614c68565b60405180910390a3505050565b61355f84848461309c565b61356b84848484613981565b6135aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a190614ce5565b60405180910390fd5b50505050565b6060600b80546135bf9061532b565b80601f01602080910402602001604051908101604052809291908181526020018280546135eb9061532b565b80156136385780601f1061360d57610100808354040283529160200191613638565b820191906000526020600020905b81548152906001019060200180831161361b57829003601f168201915b5050505050905090565b6060600082141561368a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061379e565b600082905060005b600082146136bc5780806136a59061538e565b915050600a826136b591906151a4565b9150613692565b60008167ffffffffffffffff8111156136d8576136d76154f3565b5b6040519080825280601f01601f19166020018201604052801561370a5781602001600182028036833780820191505090505b5090505b6000851461379757600182613723919061522f565b9150600a8561373291906153d7565b603061373e919061514e565b60f81b818381518110613754576137536154c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561379091906151a4565b945061370e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613818838383613b18565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561385b5761385681613b1d565b61389a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613899576138988382613b66565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138dd576138d881613cd3565b61391c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461391b5761391a8282613da4565b5b5b505050565b505050565b6139308383613e23565b61393d6000848484613981565b61397c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397390614ce5565b60405180910390fd5b505050565b60006139a28473ffffffffffffffffffffffffffffffffffffffff16613ffd565b15613b0b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139cb612e91565b8786866040518563ffffffff1660e01b81526004016139ed9493929190614bfa565b602060405180830381600087803b158015613a0757600080fd5b505af1925050508015613a3857506040513d601f19601f82011682018060405250810190613a35919061458d565b60015b613abb573d8060008114613a68576040519150601f19603f3d011682016040523d82523d6000602084013e613a6d565b606091505b50600081511415613ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aaa90614ce5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613b10565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613b7384611b2e565b613b7d919061522f565b9050600060076000848152602001908152602001600020549050818114613c62576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613ce7919061522f565b9050600060096000848152602001908152602001600020549050600060088381548110613d1757613d166154c4565b5b906000526020600020015490508060088381548110613d3957613d386154c4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d8857613d87615495565b5b6001900381819060005260206000200160009055905550505050565b6000613daf83611b2e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e8a90614e25565b60405180910390fd5b613e9c81612e99565b15613edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ed390614d45565b60405180910390fd5b613ee86000838361380d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f38919061514e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ff960008383613921565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461402c9061532b565b90600052602060002090601f01602090048101928261404e5760008555614095565b82601f1061406757805160ff1916838001178555614095565b82800160010185558215614095579182015b82811115614094578251825591602001919060010190614079565b5b5090506140a29190614167565b5090565b50805460008255906000526020600020908101906140c49190614167565b50565b828054828255906000526020600020908101928215614156579160200282015b8281111561415557823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906140e7565b5b5090506141639190614167565b5090565b5b80821115614180576000816000905550600101614168565b5090565b600061419761419284615065565b615040565b9050828152602081018484840111156141b3576141b2615531565b5b6141be8482856152e9565b509392505050565b60006141d96141d484615096565b615040565b9050828152602081018484840111156141f5576141f4615531565b5b6142008482856152e9565b509392505050565b60008135905061421781615ca2565b92915050565b60008083601f84011261423357614232615527565b5b8235905067ffffffffffffffff8111156142505761424f615522565b5b60208301915083602082028301111561426c5761426b61552c565b5b9250929050565b60008135905061428281615cb9565b92915050565b60008135905061429781615cd0565b92915050565b6000815190506142ac81615cd0565b92915050565b600082601f8301126142c7576142c6615527565b5b81356142d7848260208601614184565b91505092915050565b600082601f8301126142f5576142f4615527565b5b81356143058482602086016141c6565b91505092915050565b60008135905061431d81615ce7565b92915050565b6000602082840312156143395761433861553b565b5b600061434784828501614208565b91505092915050565b600080604083850312156143675761436661553b565b5b600061437585828601614208565b925050602061438685828601614208565b9150509250929050565b6000806000606084860312156143a9576143a861553b565b5b60006143b786828701614208565b93505060206143c886828701614208565b92505060406143d98682870161430e565b9150509250925092565b600080600080608085870312156143fd576143fc61553b565b5b600061440b87828801614208565b945050602061441c87828801614208565b935050604061442d8782880161430e565b925050606085013567ffffffffffffffff81111561444e5761444d615536565b5b61445a878288016142b2565b91505092959194509250565b6000806040838503121561447d5761447c61553b565b5b600061448b85828601614208565b925050602061449c85828601614273565b9150509250929050565b600080604083850312156144bd576144bc61553b565b5b60006144cb85828601614208565b92505060206144dc8582860161430e565b9150509250929050565b600080602083850312156144fd576144fc61553b565b5b600083013567ffffffffffffffff81111561451b5761451a615536565b5b6145278582860161421d565b92509250509250929050565b6000602082840312156145495761454861553b565b5b600061455784828501614273565b91505092915050565b6000602082840312156145765761457561553b565b5b600061458484828501614288565b91505092915050565b6000602082840312156145a3576145a261553b565b5b60006145b18482850161429d565b91505092915050565b6000602082840312156145d0576145cf61553b565b5b600082013567ffffffffffffffff8111156145ee576145ed615536565b5b6145fa848285016142e0565b91505092915050565b6000602082840312156146195761461861553b565b5b60006146278482850161430e565b91505092915050565b600061463c8383614b6d565b60208301905092915050565b61465181615275565b82525050565b61466081615263565b82525050565b6000614671826150d7565b61467b8185615105565b9350614686836150c7565b8060005b838110156146b757815161469e8882614630565b97506146a9836150f8565b92505060018101905061468a565b5085935050505092915050565b6146cd81615287565b82525050565b60006146de826150e2565b6146e88185615116565b93506146f88185602086016152f8565b61470181615540565b840191505092915050565b6000614717826150ed565b6147218185615132565b93506147318185602086016152f8565b61473a81615540565b840191505092915050565b6000614750826150ed565b61475a8185615143565b935061476a8185602086016152f8565b80840191505092915050565b6000614783602083615132565b915061478e82615551565b602082019050919050565b60006147a6602b83615132565b91506147b18261557a565b604082019050919050565b60006147c9603283615132565b91506147d4826155c9565b604082019050919050565b60006147ec602683615132565b91506147f782615618565b604082019050919050565b600061480f602583615132565b915061481a82615667565b604082019050919050565b6000614832601c83615132565b915061483d826156b6565b602082019050919050565b6000614855602483615132565b9150614860826156df565b604082019050919050565b6000614878601983615132565b91506148838261572e565b602082019050919050565b600061489b602c83615132565b91506148a682615757565b604082019050919050565b60006148be603883615132565b91506148c9826157a6565b604082019050919050565b60006148e1602a83615132565b91506148ec826157f5565b604082019050919050565b6000614904602983615132565b915061490f82615844565b604082019050919050565b6000614927602083615132565b915061493282615893565b602082019050919050565b600061494a602c83615132565b9150614955826158bc565b604082019050919050565b600061496d603583615132565b91506149788261590b565b604082019050919050565b6000614990602083615132565b915061499b8261595a565b602082019050919050565b60006149b3601683615132565b91506149be82615983565b602082019050919050565b60006149d6602f83615132565b91506149e1826159ac565b604082019050919050565b60006149f9602183615132565b9150614a04826159fb565b604082019050919050565b6000614a1c602383615132565b9150614a2782615a4a565b604082019050919050565b6000614a3f601083615132565b9150614a4a82615a99565b602082019050919050565b6000614a62600083615127565b9150614a6d82615ac2565b600082019050919050565b6000614a85601283615132565b9150614a9082615ac5565b602082019050919050565b6000614aa8603183615132565b9150614ab382615aee565b604082019050919050565b6000614acb602f83615132565b9150614ad682615b3d565b604082019050919050565b6000614aee603783615132565b9150614af982615b8c565b604082019050919050565b6000614b11602c83615132565b9150614b1c82615bdb565b604082019050919050565b6000614b34603183615132565b9150614b3f82615c2a565b604082019050919050565b6000614b57601783615132565b9150614b6282615c79565b602082019050919050565b614b76816152df565b82525050565b614b85816152df565b82525050565b6000614b978285614745565b9150614ba38284614745565b91508190509392505050565b6000614bba82614a55565b9150819050919050565b6000602082019050614bd96000830184614657565b92915050565b6000602082019050614bf46000830184614648565b92915050565b6000608082019050614c0f6000830187614657565b614c1c6020830186614657565b614c296040830185614b7c565b8181036060830152614c3b81846146d3565b905095945050505050565b60006020820190508181036000830152614c608184614666565b905092915050565b6000602082019050614c7d60008301846146c4565b92915050565b60006020820190508181036000830152614c9d818461470c565b905092915050565b60006020820190508181036000830152614cbe81614776565b9050919050565b60006020820190508181036000830152614cde81614799565b9050919050565b60006020820190508181036000830152614cfe816147bc565b9050919050565b60006020820190508181036000830152614d1e816147df565b9050919050565b60006020820190508181036000830152614d3e81614802565b9050919050565b60006020820190508181036000830152614d5e81614825565b9050919050565b60006020820190508181036000830152614d7e81614848565b9050919050565b60006020820190508181036000830152614d9e8161486b565b9050919050565b60006020820190508181036000830152614dbe8161488e565b9050919050565b60006020820190508181036000830152614dde816148b1565b9050919050565b60006020820190508181036000830152614dfe816148d4565b9050919050565b60006020820190508181036000830152614e1e816148f7565b9050919050565b60006020820190508181036000830152614e3e8161491a565b9050919050565b60006020820190508181036000830152614e5e8161493d565b9050919050565b60006020820190508181036000830152614e7e81614960565b9050919050565b60006020820190508181036000830152614e9e81614983565b9050919050565b60006020820190508181036000830152614ebe816149a6565b9050919050565b60006020820190508181036000830152614ede816149c9565b9050919050565b60006020820190508181036000830152614efe816149ec565b9050919050565b60006020820190508181036000830152614f1e81614a0f565b9050919050565b60006020820190508181036000830152614f3e81614a32565b9050919050565b60006020820190508181036000830152614f5e81614a78565b9050919050565b60006020820190508181036000830152614f7e81614a9b565b9050919050565b60006020820190508181036000830152614f9e81614abe565b9050919050565b60006020820190508181036000830152614fbe81614ae1565b9050919050565b60006020820190508181036000830152614fde81614b04565b9050919050565b60006020820190508181036000830152614ffe81614b27565b9050919050565b6000602082019050818103600083015261501e81614b4a565b9050919050565b600060208201905061503a6000830184614b7c565b92915050565b600061504a61505b565b9050615056828261535d565b919050565b6000604051905090565b600067ffffffffffffffff8211156150805761507f6154f3565b5b61508982615540565b9050602081019050919050565b600067ffffffffffffffff8211156150b1576150b06154f3565b5b6150ba82615540565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615159826152df565b9150615164836152df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561519957615198615408565b5b828201905092915050565b60006151af826152df565b91506151ba836152df565b9250826151ca576151c9615437565b5b828204905092915050565b60006151e0826152df565b91506151eb836152df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561522457615223615408565b5b828202905092915050565b600061523a826152df565b9150615245836152df565b92508282101561525857615257615408565b5b828203905092915050565b600061526e826152bf565b9050919050565b6000615280826152bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156153165780820151818401526020810190506152fb565b83811115615325576000848401525b50505050565b6000600282049050600182168061534357607f821691505b6020821081141561535757615356615466565b5b50919050565b61536682615540565b810181811067ffffffffffffffff82111715615385576153846154f3565b5b80604052505050565b6000615399826152df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153cc576153cb615408565b5b600182019050919050565b60006153e2826152df565b91506153ed836152df565b9250826153fd576153fc615437565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7468652070726573616c6520686173206e6f7420737461727465642079657421600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203120677265656e206475646573207065722060008201527f77616c6c657420696e207075626c69632073616c650000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c65617374203120677265656e20647560008201527f6465730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e65722063616e2774206d696e7400000000000000000000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620677265656e2064756465730000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662070726573616c6520677265656e206475646573000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203220677265656e206475646573207065722060008201527f77616c6c657420696e2070726573616c65000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b615cab81615263565b8114615cb657600080fd5b50565b615cc281615287565b8114615ccd57600080fd5b50565b615cd981615293565b8114615ce457600080fd5b50565b615cf0816152df565b8114615cfb57600080fd5b5056fea2646970667358221220c1d6f416eee6368e4e6be3fbbc236b05a618f39b5b5422129e853431431dc7d564736f6c63430008070033697066733a2f2f62616679626569646f3476356272376d6168636b657534366e6d716f6e336a656e363671763372696c6a336b326d32726e6665347867696e3673652f697066733a2f2f6261666b726569663737336d66787a6f756336747572773262616c627a76626a77706e716934797766376c7864697a767869746a776a726e356b61000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000098110ddfa582f46559306d31f7e2e2e7ad52821b000000000000000000000000000000000000000000000000000000000000000e677265656e64756465732e777466000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000647442e5754460000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103805760003560e01c806365f13097116101d1578063a70f1fbe11610102578063ca777e21116100a0578063edec5f271161006f578063edec5f2714610ce6578063f2c4ce1e14610d0f578063f2fde38b14610d38578063f9d38e9714610d6157610380565b8063ca777e2114610c4b578063e29a376414610c74578063e985e9c514610c9f578063ec8c890414610cdc57610380565b8063b88d4fde116100dc578063b88d4fde14610b91578063c4e41b2214610bba578063c627525514610be5578063c87b56dd14610c0e57610380565b8063a70f1fbe14610b10578063a945bf8014610b3b578063b138d50014610b6657610380565b80638895283f1161016f57806395d89b411161014957806395d89b4114610a75578063a0712d6814610aa0578063a22cb46514610abc578063a6d23e1014610ae557610380565b80638895283f146109f85780638b52310414610a215780638da5cb5b14610a4a57610380565b806370a08231116101ab57806370a082311461093e578063715018a61461097b5780637c8d78b0146109925780638059cbac146109cf57610380565b806365f13097146108bf5780636c0360eb146108ea5780636f8b44b01461091557610380565b80632eb7c7e3116102b6578063438b63001161025457806357dc41341161022357806357dc4134146108035780635c975abb1461082c57806361cb9161146108575780636352211e1461088257610380565b8063438b6300146107355780634f6ccce71461077257806351830227146107af57806355f804b3146107da57610380565b80633549345e116102905780633549345e1461069c5780633af32abf146106c55780633ccfd60b1461070257806342842e0e1461070c57610380565b80632eb7c7e31461060b5780632f745c591461063457806332cb6b0c1461067157610380565b8063095ea7b31161032357806318160ddd116102fd57806318160ddd1461055157806318cae2691461057c57806323b872dd146105b95780632a3f300c146105e257610380565b8063095ea7b3146104d45780630bc04d15146104fd57806314b020161461052657610380565b806304549d6f1161035f57806304549d6f1461041657806306fdde0314610441578063081812fc1461046c578063081c8c44146104a957610380565b80620e7fa81461038557806301ffc9a7146103b057806302329a29146103ed575b600080fd5b34801561039157600080fd5b5061039a610d9e565b6040516103a79190615025565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190614560565b610da4565b6040516103e49190614c68565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190614533565b610e1e565b005b34801561042257600080fd5b5061042b610eb7565b6040516104389190614c68565b60405180910390f35b34801561044d57600080fd5b50610456610eca565b6040516104639190614c83565b60405180910390f35b34801561047857600080fd5b50610493600480360381019061048e9190614603565b610f5c565b6040516104a09190614bc4565b60405180910390f35b3480156104b557600080fd5b506104be610fe1565b6040516104cb9190614c83565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f691906144a6565b61106f565b005b34801561050957600080fd5b50610524600480360381019061051f9190614603565b611187565b005b34801561053257600080fd5b5061053b61120d565b6040516105489190614c68565b60405180910390f35b34801561055d57600080fd5b50610566611220565b6040516105739190615025565b60405180910390f35b34801561058857600080fd5b506105a3600480360381019061059e9190614323565b61122d565b6040516105b09190615025565b60405180910390f35b3480156105c557600080fd5b506105e060048036038101906105db9190614390565b611245565b005b3480156105ee57600080fd5b5061060960048036038101906106049190614533565b6112a5565b005b34801561061757600080fd5b50610632600480360381019061062d9190614533565b61133e565b005b34801561064057600080fd5b5061065b600480360381019061065691906144a6565b6113d7565b6040516106689190615025565b60405180910390f35b34801561067d57600080fd5b5061068661147c565b6040516106939190615025565b60405180910390f35b3480156106a857600080fd5b506106c360048036038101906106be9190614603565b611482565b005b3480156106d157600080fd5b506106ec60048036038101906106e79190614323565b611508565b6040516106f99190614c68565b60405180910390f35b61070a6115b7565b005b34801561071857600080fd5b50610733600480360381019061072e9190614390565b6116ce565b005b34801561074157600080fd5b5061075c60048036038101906107579190614323565b6116ee565b6040516107699190614c46565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190614603565b61179c565b6040516107a69190615025565b60405180910390f35b3480156107bb57600080fd5b506107c461180d565b6040516107d19190614c68565b60405180910390f35b3480156107e657600080fd5b5061080160048036038101906107fc91906145ba565b611820565b005b34801561080f57600080fd5b5061082a60048036038101906108259190614603565b6118b6565b005b34801561083857600080fd5b5061084161193c565b60405161084e9190614c68565b60405180910390f35b34801561086357600080fd5b5061086c61194f565b6040516108799190614c68565b60405180910390f35b34801561088e57600080fd5b506108a960048036038101906108a49190614603565b611962565b6040516108b69190614bc4565b60405180910390f35b3480156108cb57600080fd5b506108d4611a14565b6040516108e19190615025565b60405180910390f35b3480156108f657600080fd5b506108ff611a1a565b60405161090c9190614c83565b60405180910390f35b34801561092157600080fd5b5061093c60048036038101906109379190614603565b611aa8565b005b34801561094a57600080fd5b5061096560048036038101906109609190614323565b611b2e565b6040516109729190615025565b60405180910390f35b34801561098757600080fd5b50610990611be6565b005b34801561099e57600080fd5b506109b960048036038101906109b49190614603565b611c6e565b6040516109c69190614bc4565b60405180910390f35b3480156109db57600080fd5b506109f660048036038101906109f19190614603565b611cad565b005b348015610a0457600080fd5b50610a1f6004803603810190610a1a9190614533565b611d33565b005b348015610a2d57600080fd5b50610a486004803603810190610a439190614603565b611dcc565b005b348015610a5657600080fd5b50610a5f611e52565b604051610a6c9190614bc4565b60405180910390f35b348015610a8157600080fd5b50610a8a611e7c565b604051610a979190614c83565b60405180910390f35b610aba6004803603810190610ab59190614603565b611f0e565b005b348015610ac857600080fd5b50610ae36004803603810190610ade9190614466565b612508565b005b348015610af157600080fd5b50610afa61251e565b604051610b079190614bdf565b60405180910390f35b348015610b1c57600080fd5b50610b25612544565b604051610b329190615025565b60405180910390f35b348015610b4757600080fd5b50610b5061254a565b604051610b5d9190615025565b60405180910390f35b348015610b7257600080fd5b50610b7b612550565b604051610b889190615025565b60405180910390f35b348015610b9d57600080fd5b50610bb86004803603810190610bb391906143e3565b612556565b005b348015610bc657600080fd5b50610bcf6125b8565b604051610bdc9190615025565b60405180910390f35b348015610bf157600080fd5b50610c0c6004803603810190610c079190614603565b6125c7565b005b348015610c1a57600080fd5b50610c356004803603810190610c309190614603565b61264d565b604051610c429190614c83565b60405180910390f35b348015610c5757600080fd5b50610c726004803603810190610c6d9190614533565b6127a3565b005b348015610c8057600080fd5b50610c8961283c565b604051610c969190615025565b60405180910390f35b348015610cab57600080fd5b50610cc66004803603810190610cc19190614350565b612842565b604051610cd39190614c68565b60405180910390f35b610ce46128d6565b005b348015610cf257600080fd5b50610d0d6004803603810190610d0891906144e6565b612b69565b005b348015610d1b57600080fd5b50610d366004803603810190610d3191906145ba565b612c09565b005b348015610d4457600080fd5b50610d5f6004803603810190610d5a9190614323565b612c9f565b005b348015610d6d57600080fd5b50610d886004803603810190610d839190614323565b612d97565b604051610d959190615025565b60405180910390f35b60105481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e175750610e1682612daf565b5b9050919050565b610e26612e91565b73ffffffffffffffffffffffffffffffffffffffff16610e44611e52565b73ffffffffffffffffffffffffffffffffffffffff1614610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190614e85565b60405180910390fd5b80601660006101000a81548160ff02191690831515021790555050565b601660039054906101000a900460ff1681565b606060008054610ed99061532b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f059061532b565b8015610f525780601f10610f2757610100808354040283529160200191610f52565b820191906000526020600020905b815481529060010190602001808311610f3557829003601f168201915b5050505050905090565b6000610f6782612e99565b610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d90614e45565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610fee9061532b565b80601f016020809104026020016040519081016040528092919081815260200182805461101a9061532b565b80156110675780601f1061103c57610100808354040283529160200191611067565b820191906000526020600020905b81548152906001019060200180831161104a57829003601f168201915b505050505081565b600061107a82611962565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290614ee5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661110a612e91565b73ffffffffffffffffffffffffffffffffffffffff161480611139575061113881611133612e91565b612842565b5b611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116f90614dc5565b60405180910390fd5b6111828383612f05565b505050565b61118f612e91565b73ffffffffffffffffffffffffffffffffffffffff166111ad611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90614e85565b60405180910390fd5b8060138190555050565b601660049054906101000a900460ff1681565b6000600880549050905090565b600e6020528060005260406000206000915090505481565b611256611250612e91565b82612fbe565b611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90614f65565b60405180910390fd5b6112a083838361309c565b505050565b6112ad612e91565b73ffffffffffffffffffffffffffffffffffffffff166112cb611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890614e85565b60405180910390fd5b80601660016101000a81548160ff02191690831515021790555050565b611346612e91565b73ffffffffffffffffffffffffffffffffffffffff16611364611e52565b73ffffffffffffffffffffffffffffffffffffffff16146113ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b190614e85565b60405180910390fd5b80601660046101000a81548160ff02191690831515021790555050565b60006113e283611b2e565b8210611423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141a90614cc5565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60115481565b61148a612e91565b73ffffffffffffffffffffffffffffffffffffffff166114a8611e52565b73ffffffffffffffffffffffffffffffffffffffff16146114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590614e85565b60405180910390fd5b8060108190555050565b600080600090505b6017805490508110156115ac578273ffffffffffffffffffffffffffffffffffffffff1660178281548110611548576115476154c4565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156115995760019150506115b2565b80806115a49061538e565b915050611510565b50600090505b919050565b6115bf612e91565b73ffffffffffffffffffffffffffffffffffffffff166115dd611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90614e85565b60405180910390fd5b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161167b90614baf565b60006040518083038185875af1925050503d80600081146116b8576040519150601f19603f3d011682016040523d82523d6000602084013e6116bd565b606091505b50509050806116cb57600080fd5b50565b6116e983838360405180602001604052806000815250612556565b505050565b606060006116fb83611b2e565b905060008167ffffffffffffffff811115611719576117186154f3565b5b6040519080825280602002602001820160405280156117475781602001602082028036833780820191505090505b50905060005b828110156117915761175f85826113d7565b828281518110611772576117716154c4565b5b60200260200101818152505080806117899061538e565b91505061174d565b508092505050919050565b60006117a6611220565b82106117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90614fc5565b60405180910390fd5b600882815481106117fb576117fa6154c4565b5b90600052602060002001549050919050565b601660019054906101000a900460ff1681565b611828612e91565b73ffffffffffffffffffffffffffffffffffffffff16611846611e52565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390614e85565b60405180910390fd5b80600b90805190602001906118b2929190614020565b5050565b6118be612e91565b73ffffffffffffffffffffffffffffffffffffffff166118dc611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192990614e85565b60405180910390fd5b8060128190555050565b601660009054906101000a900460ff1681565b601660029054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290614e05565b60405180910390fd5b80915050919050565b60145481565b600b8054611a279061532b565b80601f0160208091040260200160405190810160405280929190818152602001828054611a539061532b565b8015611aa05780601f10611a7557610100808354040283529160200191611aa0565b820191906000526020600020905b815481529060010190602001808311611a8357829003601f168201915b505050505081565b611ab0612e91565b73ffffffffffffffffffffffffffffffffffffffff16611ace611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1b90614e85565b60405180910390fd5b8060118190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9690614de5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611bee612e91565b73ffffffffffffffffffffffffffffffffffffffff16611c0c611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5990614e85565b60405180910390fd5b611c6c6000613303565b565b60178181548110611c7e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611cb5612e91565b73ffffffffffffffffffffffffffffffffffffffff16611cd3611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2090614e85565b60405180910390fd5b8060148190555050565b611d3b612e91565b73ffffffffffffffffffffffffffffffffffffffff16611d59611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690614e85565b60405180910390fd5b80601660036101000a81548160ff02191690831515021790555050565b611dd4612e91565b73ffffffffffffffffffffffffffffffffffffffff16611df2611e52565b73ffffffffffffffffffffffffffffffffffffffff1614611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90614e85565b60405180910390fd5b8060158190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611e8b9061532b565b80601f0160208091040260200160405190810160405280929190818152602001828054611eb79061532b565b8015611f045780601f10611ed957610100808354040283529160200191611f04565b820191906000526020600020905b815481529060010190602001808311611ee757829003601f168201915b5050505050905090565b601660009054906101000a900460ff1615611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5590614ea5565b60405180910390fd5b6000611f68611220565b905060008211611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490614f05565b60405180910390fd5b611fb5611e52565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90614f25565b60405180910390fd5b60011515601660029054906101000a900460ff161515141561229657601660039054906101000a900460ff1661208e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208590614ca5565b60405180910390fd5b61209733611508565b6120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90615005565b60405180910390fd5b60135482600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612124919061514e565b1115612165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215c90614fe5565b60405180910390fd5b6012548282612174919061514e565b11156121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac90614fa5565b60405180910390fd5b34826010546121c491906151d5565b1115612205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fc90614f45565b60405180910390fd5b6000600190505b82811161229057600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906122639061538e565b919050555061227d338284612278919061514e565b6133c9565b80806122889061538e565b91505061220c565b50612452565b60115482826122a5919061514e565b11156122e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dd90614f85565b60405180910390fd5b81600f546122f491906151d5565b341015612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90614f45565b60405180910390fd5b60145482600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612384919061514e565b11156123c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bc90614e65565b60405180910390fd5b6000600190505b82811161245057600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906124239061538e565b919050555061243d338284612438919061514e565b6133c9565b80806124489061538e565b9150506123cc565b505b6000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e8604b3461249d91906151d5565b6124a791906151a4565b6040516124b390614baf565b60006040518083038185875af1925050503d80600081146124f0576040519150601f19603f3d011682016040523d82523d6000602084013e6124f5565b606091505b505090508061250357600080fd5b505050565b61251a612513612e91565b83836133e7565b5050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600f5481565b60125481565b612567612561612e91565b83612fbe565b6125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d90614f65565b60405180910390fd5b6125b284848484613554565b50505050565b60006125c2611220565b905090565b6125cf612e91565b73ffffffffffffffffffffffffffffffffffffffff166125ed611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612643576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263a90614e85565b60405180910390fd5b80600f8190555050565b606061265882612e99565b612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90614ec5565b60405180910390fd5b60001515601660019054906101000a900460ff161515141561274557600c80546126c09061532b565b80601f01602080910402602001604051908101604052809291908181526020018280546126ec9061532b565b80156127395780601f1061270e57610100808354040283529160200191612739565b820191906000526020600020905b81548152906001019060200180831161271c57829003601f168201915b5050505050905061279e565b600061274f6135b0565b9050600081511161276f576040518060200160405280600081525061279a565b8061277984613642565b60405160200161278a929190614b8b565b6040516020818303038152906040525b9150505b919050565b6127ab612e91565b73ffffffffffffffffffffffffffffffffffffffff166127c9611e52565b73ffffffffffffffffffffffffffffffffffffffff161461281f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281690614e85565b60405180910390fd5b80601660026101000a81548160ff02191690831515021790555050565b60155481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6128de612e91565b73ffffffffffffffffffffffffffffffffffffffff166128fc611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294990614e85565b60405180910390fd5b600061295c611220565b90506000601554116129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a90614f05565b60405180910390fd5b601660049054906101000a900460ff1615612b6657346015546010546129c991906151d5565b1115612a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0190614f45565b60405180910390fd5b6000600190505b6015548111612a9757600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190612a6a9061538e565b9190505550612a84338284612a7f919061514e565b6133c9565b8080612a8f9061538e565b915050612a11565b506000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103e8604b34612ae391906151d5565b612aed91906151a4565b604051612af990614baf565b60006040518083038185875af1925050503d8060008114612b36576040519150601f19603f3d011682016040523d82523d6000602084013e612b3b565b606091505b505090506000601660046101000a81548160ff02191690831515021790555080612b6457600080fd5b505b50565b612b71612e91565b73ffffffffffffffffffffffffffffffffffffffff16612b8f611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614e85565b60405180910390fd5b60176000612bf391906140a6565b818160179190612c049291906140c7565b505050565b612c11612e91565b73ffffffffffffffffffffffffffffffffffffffff16612c2f611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c90614e85565b60405180910390fd5b80600c9080519060200190612c9b929190614020565b5050565b612ca7612e91565b73ffffffffffffffffffffffffffffffffffffffff16612cc5611e52565b73ffffffffffffffffffffffffffffffffffffffff1614612d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1290614e85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8290614d05565b60405180910390fd5b612d9481613303565b50565b600d6020528060005260406000206000915090505481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e7a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e8a5750612e89826137a3565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f7883611962565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612fc982612e99565b613008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fff90614da5565b60405180910390fd5b600061301383611962565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061305557506130548185612842565b5b8061309357508373ffffffffffffffffffffffffffffffffffffffff1661307b84610f5c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166130bc82611962565b73ffffffffffffffffffffffffffffffffffffffff1614613112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161310990614d25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317990614d65565b60405180910390fd5b61318d83838361380d565b613198600082612f05565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131e8919061522f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461323f919061514e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132fe838383613921565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6133e3828260405180602001604052806000815250613926565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344d90614d85565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516135479190614c68565b60405180910390a3505050565b61355f84848461309c565b61356b84848484613981565b6135aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a190614ce5565b60405180910390fd5b50505050565b6060600b80546135bf9061532b565b80601f01602080910402602001604051908101604052809291908181526020018280546135eb9061532b565b80156136385780601f1061360d57610100808354040283529160200191613638565b820191906000526020600020905b81548152906001019060200180831161361b57829003601f168201915b5050505050905090565b6060600082141561368a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061379e565b600082905060005b600082146136bc5780806136a59061538e565b915050600a826136b591906151a4565b9150613692565b60008167ffffffffffffffff8111156136d8576136d76154f3565b5b6040519080825280601f01601f19166020018201604052801561370a5781602001600182028036833780820191505090505b5090505b6000851461379757600182613723919061522f565b9150600a8561373291906153d7565b603061373e919061514e565b60f81b818381518110613754576137536154c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561379091906151a4565b945061370e565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b613818838383613b18565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561385b5761385681613b1d565b61389a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613899576138988382613b66565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156138dd576138d881613cd3565b61391c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461391b5761391a8282613da4565b5b5b505050565b505050565b6139308383613e23565b61393d6000848484613981565b61397c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161397390614ce5565b60405180910390fd5b505050565b60006139a28473ffffffffffffffffffffffffffffffffffffffff16613ffd565b15613b0b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026139cb612e91565b8786866040518563ffffffff1660e01b81526004016139ed9493929190614bfa565b602060405180830381600087803b158015613a0757600080fd5b505af1925050508015613a3857506040513d601f19601f82011682018060405250810190613a35919061458d565b60015b613abb573d8060008114613a68576040519150601f19603f3d011682016040523d82523d6000602084013e613a6d565b606091505b50600081511415613ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aaa90614ce5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613b10565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613b7384611b2e565b613b7d919061522f565b9050600060076000848152602001908152602001600020549050818114613c62576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613ce7919061522f565b9050600060096000848152602001908152602001600020549050600060088381548110613d1757613d166154c4565b5b906000526020600020015490508060088381548110613d3957613d386154c4565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d8857613d87615495565b5b6001900381819060005260206000200160009055905550505050565b6000613daf83611b2e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e8a90614e25565b60405180910390fd5b613e9c81612e99565b15613edc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ed390614d45565b60405180910390fd5b613ee86000838361380d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f38919061514e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613ff960008383613921565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461402c9061532b565b90600052602060002090601f01602090048101928261404e5760008555614095565b82601f1061406757805160ff1916838001178555614095565b82800160010185558215614095579182015b82811115614094578251825591602001919060010190614079565b5b5090506140a29190614167565b5090565b50805460008255906000526020600020908101906140c49190614167565b50565b828054828255906000526020600020908101928215614156579160200282015b8281111561415557823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906140e7565b5b5090506141639190614167565b5090565b5b80821115614180576000816000905550600101614168565b5090565b600061419761419284615065565b615040565b9050828152602081018484840111156141b3576141b2615531565b5b6141be8482856152e9565b509392505050565b60006141d96141d484615096565b615040565b9050828152602081018484840111156141f5576141f4615531565b5b6142008482856152e9565b509392505050565b60008135905061421781615ca2565b92915050565b60008083601f84011261423357614232615527565b5b8235905067ffffffffffffffff8111156142505761424f615522565b5b60208301915083602082028301111561426c5761426b61552c565b5b9250929050565b60008135905061428281615cb9565b92915050565b60008135905061429781615cd0565b92915050565b6000815190506142ac81615cd0565b92915050565b600082601f8301126142c7576142c6615527565b5b81356142d7848260208601614184565b91505092915050565b600082601f8301126142f5576142f4615527565b5b81356143058482602086016141c6565b91505092915050565b60008135905061431d81615ce7565b92915050565b6000602082840312156143395761433861553b565b5b600061434784828501614208565b91505092915050565b600080604083850312156143675761436661553b565b5b600061437585828601614208565b925050602061438685828601614208565b9150509250929050565b6000806000606084860312156143a9576143a861553b565b5b60006143b786828701614208565b93505060206143c886828701614208565b92505060406143d98682870161430e565b9150509250925092565b600080600080608085870312156143fd576143fc61553b565b5b600061440b87828801614208565b945050602061441c87828801614208565b935050604061442d8782880161430e565b925050606085013567ffffffffffffffff81111561444e5761444d615536565b5b61445a878288016142b2565b91505092959194509250565b6000806040838503121561447d5761447c61553b565b5b600061448b85828601614208565b925050602061449c85828601614273565b9150509250929050565b600080604083850312156144bd576144bc61553b565b5b60006144cb85828601614208565b92505060206144dc8582860161430e565b9150509250929050565b600080602083850312156144fd576144fc61553b565b5b600083013567ffffffffffffffff81111561451b5761451a615536565b5b6145278582860161421d565b92509250509250929050565b6000602082840312156145495761454861553b565b5b600061455784828501614273565b91505092915050565b6000602082840312156145765761457561553b565b5b600061458484828501614288565b91505092915050565b6000602082840312156145a3576145a261553b565b5b60006145b18482850161429d565b91505092915050565b6000602082840312156145d0576145cf61553b565b5b600082013567ffffffffffffffff8111156145ee576145ed615536565b5b6145fa848285016142e0565b91505092915050565b6000602082840312156146195761461861553b565b5b60006146278482850161430e565b91505092915050565b600061463c8383614b6d565b60208301905092915050565b61465181615275565b82525050565b61466081615263565b82525050565b6000614671826150d7565b61467b8185615105565b9350614686836150c7565b8060005b838110156146b757815161469e8882614630565b97506146a9836150f8565b92505060018101905061468a565b5085935050505092915050565b6146cd81615287565b82525050565b60006146de826150e2565b6146e88185615116565b93506146f88185602086016152f8565b61470181615540565b840191505092915050565b6000614717826150ed565b6147218185615132565b93506147318185602086016152f8565b61473a81615540565b840191505092915050565b6000614750826150ed565b61475a8185615143565b935061476a8185602086016152f8565b80840191505092915050565b6000614783602083615132565b915061478e82615551565b602082019050919050565b60006147a6602b83615132565b91506147b18261557a565b604082019050919050565b60006147c9603283615132565b91506147d4826155c9565b604082019050919050565b60006147ec602683615132565b91506147f782615618565b604082019050919050565b600061480f602583615132565b915061481a82615667565b604082019050919050565b6000614832601c83615132565b915061483d826156b6565b602082019050919050565b6000614855602483615132565b9150614860826156df565b604082019050919050565b6000614878601983615132565b91506148838261572e565b602082019050919050565b600061489b602c83615132565b91506148a682615757565b604082019050919050565b60006148be603883615132565b91506148c9826157a6565b604082019050919050565b60006148e1602a83615132565b91506148ec826157f5565b604082019050919050565b6000614904602983615132565b915061490f82615844565b604082019050919050565b6000614927602083615132565b915061493282615893565b602082019050919050565b600061494a602c83615132565b9150614955826158bc565b604082019050919050565b600061496d603583615132565b91506149788261590b565b604082019050919050565b6000614990602083615132565b915061499b8261595a565b602082019050919050565b60006149b3601683615132565b91506149be82615983565b602082019050919050565b60006149d6602f83615132565b91506149e1826159ac565b604082019050919050565b60006149f9602183615132565b9150614a04826159fb565b604082019050919050565b6000614a1c602383615132565b9150614a2782615a4a565b604082019050919050565b6000614a3f601083615132565b9150614a4a82615a99565b602082019050919050565b6000614a62600083615127565b9150614a6d82615ac2565b600082019050919050565b6000614a85601283615132565b9150614a9082615ac5565b602082019050919050565b6000614aa8603183615132565b9150614ab382615aee565b604082019050919050565b6000614acb602f83615132565b9150614ad682615b3d565b604082019050919050565b6000614aee603783615132565b9150614af982615b8c565b604082019050919050565b6000614b11602c83615132565b9150614b1c82615bdb565b604082019050919050565b6000614b34603183615132565b9150614b3f82615c2a565b604082019050919050565b6000614b57601783615132565b9150614b6282615c79565b602082019050919050565b614b76816152df565b82525050565b614b85816152df565b82525050565b6000614b978285614745565b9150614ba38284614745565b91508190509392505050565b6000614bba82614a55565b9150819050919050565b6000602082019050614bd96000830184614657565b92915050565b6000602082019050614bf46000830184614648565b92915050565b6000608082019050614c0f6000830187614657565b614c1c6020830186614657565b614c296040830185614b7c565b8181036060830152614c3b81846146d3565b905095945050505050565b60006020820190508181036000830152614c608184614666565b905092915050565b6000602082019050614c7d60008301846146c4565b92915050565b60006020820190508181036000830152614c9d818461470c565b905092915050565b60006020820190508181036000830152614cbe81614776565b9050919050565b60006020820190508181036000830152614cde81614799565b9050919050565b60006020820190508181036000830152614cfe816147bc565b9050919050565b60006020820190508181036000830152614d1e816147df565b9050919050565b60006020820190508181036000830152614d3e81614802565b9050919050565b60006020820190508181036000830152614d5e81614825565b9050919050565b60006020820190508181036000830152614d7e81614848565b9050919050565b60006020820190508181036000830152614d9e8161486b565b9050919050565b60006020820190508181036000830152614dbe8161488e565b9050919050565b60006020820190508181036000830152614dde816148b1565b9050919050565b60006020820190508181036000830152614dfe816148d4565b9050919050565b60006020820190508181036000830152614e1e816148f7565b9050919050565b60006020820190508181036000830152614e3e8161491a565b9050919050565b60006020820190508181036000830152614e5e8161493d565b9050919050565b60006020820190508181036000830152614e7e81614960565b9050919050565b60006020820190508181036000830152614e9e81614983565b9050919050565b60006020820190508181036000830152614ebe816149a6565b9050919050565b60006020820190508181036000830152614ede816149c9565b9050919050565b60006020820190508181036000830152614efe816149ec565b9050919050565b60006020820190508181036000830152614f1e81614a0f565b9050919050565b60006020820190508181036000830152614f3e81614a32565b9050919050565b60006020820190508181036000830152614f5e81614a78565b9050919050565b60006020820190508181036000830152614f7e81614a9b565b9050919050565b60006020820190508181036000830152614f9e81614abe565b9050919050565b60006020820190508181036000830152614fbe81614ae1565b9050919050565b60006020820190508181036000830152614fde81614b04565b9050919050565b60006020820190508181036000830152614ffe81614b27565b9050919050565b6000602082019050818103600083015261501e81614b4a565b9050919050565b600060208201905061503a6000830184614b7c565b92915050565b600061504a61505b565b9050615056828261535d565b919050565b6000604051905090565b600067ffffffffffffffff8211156150805761507f6154f3565b5b61508982615540565b9050602081019050919050565b600067ffffffffffffffff8211156150b1576150b06154f3565b5b6150ba82615540565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615159826152df565b9150615164836152df565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561519957615198615408565b5b828201905092915050565b60006151af826152df565b91506151ba836152df565b9250826151ca576151c9615437565b5b828204905092915050565b60006151e0826152df565b91506151eb836152df565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561522457615223615408565b5b828202905092915050565b600061523a826152df565b9150615245836152df565b92508282101561525857615257615408565b5b828203905092915050565b600061526e826152bf565b9050919050565b6000615280826152bf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156153165780820151818401526020810190506152fb565b83811115615325576000848401525b50505050565b6000600282049050600182168061534357607f821691505b6020821081141561535757615356615466565b5b50919050565b61536682615540565b810181811067ffffffffffffffff82111715615385576153846154f3565b5b80604052505050565b6000615399826152df565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153cc576153cb615408565b5b600182019050919050565b60006153e2826152df565b91506153ed836152df565b9250826153fd576153fc615437565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f7468652070726573616c6520686173206e6f7420737461727465642079657421600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203120677265656e206475646573207065722060008201527f77616c6c657420696e207075626c69632073616c650000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c65617374203120677265656e20647560008201527f6465730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e65722063616e2774206d696e7400000000000000000000000000000000600082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f6620677265656e2064756465730000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662070726573616c6520677265656e206475646573000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74203220677265656e206475646573207065722060008201527f77616c6c657420696e2070726573616c65000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b615cab81615263565b8114615cb657600080fd5b50565b615cc281615287565b8114615ccd57600080fd5b50565b615cd981615293565b8114615ce457600080fd5b50565b615cf0816152df565b8114615cfb57600080fd5b5056fea2646970667358221220c1d6f416eee6368e4e6be3fbbc236b05a618f39b5b5422129e853431431dc7d564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000098110ddfa582f46559306d31f7e2e2e7ad52821b000000000000000000000000000000000000000000000000000000000000000e677265656e64756465732e777466000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000647442e5754460000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): greendudes.wtf
Arg [1] : _symbol (string): GD.WTF
Arg [2] : _payments (address): 0x98110dDFA582F46559306d31f7E2E2e7Ad52821b

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000098110ddfa582f46559306d31f7e2e2e7ad52821b
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 677265656e64756465732e777466000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 47442e5754460000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

45610:7969:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46338:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39353:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52761:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46899:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26172:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27732:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45859:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27255:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52099:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46942:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39993:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46159:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28482:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51529:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52848:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39661:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46411:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51858:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50128:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53386:190;;;:::i;:::-;;28892:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50420:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40183:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46823:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52515:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52385:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46789:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46860:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25866:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46687:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45703:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51984:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25596:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;46988:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52244:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51750:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52953:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26341:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47518:1843;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28025:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47039:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46571:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46263:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46455:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29148:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47416:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51628:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50818:685;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53108:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46731:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28251:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49369:751;;;:::i;:::-;;53214:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52627:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46026:62;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46338:38;;;;:::o;39353:224::-;39455:4;39494:35;39479:50;;;:11;:50;;;;:90;;;;39533:36;39557:11;39533:23;:36::i;:::-;39479:90;39472:97;;39353:224;;;:::o;52761:79::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52826:6:::1;52817;;:15;;;;;;;;;;;;;;;;;;52761:79:::0;:::o;46899:34::-;;;;;;;;;;;;;:::o;26172:100::-;26226:13;26259:5;26252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26172:100;:::o;27732:221::-;27808:7;27836:16;27844:7;27836;:16::i;:::-;27828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27921:15;:24;27937:7;27921:24;;;;;;;;;;;;;;;;;;;;;27914:31;;27732:221;;;:::o;45859:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27255:411::-;27336:13;27352:23;27367:7;27352:14;:23::i;:::-;27336:39;;27400:5;27394:11;;:2;:11;;;;27386:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27494:5;27478:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27503:37;27520:5;27527:12;:10;:12::i;:::-;27503:16;:37::i;:::-;27478:62;27456:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27637:21;27646:2;27650:7;27637:8;:21::i;:::-;27325:341;27255:411;;:::o;52099:137::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52213:15:::1;52194:16;:34;;;;52099:137:::0;:::o;46942:37::-;;;;;;;;;;;;;:::o;39993:113::-;40054:7;40081:10;:17;;;;40074:24;;39993:113;:::o;46159:55::-;;;;;;;;;;;;;;;;;:::o;28482:339::-;28677:41;28696:12;:10;:12::i;:::-;28710:7;28677:18;:41::i;:::-;28669:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28785:28;28795:4;28801:2;28805:7;28785:9;:28::i;:::-;28482:339;;;:::o;51529:91::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51603:9:::1;51592:8;;:20;;;;;;;;;;;;;;;;;;51529:91:::0;:::o;52848:97::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52931:6:::1;52910:18;;:27;;;;;;;;;;;;;;;;;;52848:97:::0;:::o;39661:256::-;39758:7;39794:23;39811:5;39794:16;:23::i;:::-;39786:5;:31;39778:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;39883:12;:19;39896:5;39883:19;;;;;;;;;;;;;;;:26;39903:5;39883:26;;;;;;;;;;;;39876:33;;39661:256;;;;:::o;46411:34::-;;;;:::o;51858:118::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51952:16:::1;51937:12;:31;;;;51858:118:::0;:::o;50128:284::-;50187:4;50209:9;50221:1;50209:13;;50204:178;50228:25;:32;;;;50224:1;:36;50204:178;;;50318:5;50286:37;;:25;50312:1;50286:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:37;;;50282:89;;;50351:4;50344:11;;;;;50282:89;50262:3;;;;;:::i;:::-;;;;50204:178;;;;50399:5;50392:12;;50128:284;;;;:::o;53386:190::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53443:12:::1;53469:8;;;;;;;;;;;53461:22;;53491:21;53461:80;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53442:99;;;53560:7;53552:16;;;::::0;::::1;;53431:145;53386:190::o:0;28892:185::-;29030:39;29047:4;29053:2;29057:7;29030:39;;;;;;;;;;;;:16;:39::i;:::-;28892:185;;;:::o;50420:390::-;50507:16;50541:23;50567:17;50577:6;50567:9;:17::i;:::-;50541:43;;50595:25;50637:15;50623:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50595:58;;50669:9;50664:113;50684:15;50680:1;:19;50664:113;;;50735:30;50755:6;50763:1;50735:19;:30::i;:::-;50721:8;50730:1;50721:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;50701:3;;;;;:::i;:::-;;;;50664:113;;;;50794:8;50787:15;;;;50420:390;;;:::o;40183:233::-;40258:7;40294:30;:28;:30::i;:::-;40286:5;:38;40278:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40391:10;40402:5;40391:17;;;;;;;;:::i;:::-;;;;;;;;;;40384:24;;40183:233;;;:::o;46823:28::-;;;;;;;;;;;;;:::o;52515:104::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52600:11:::1;52590:7;:21;;;;;;;;;;;;:::i;:::-;;52515:104:::0;:::o;52385:122::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52482:17:::1;52466:13;:33;;;;52385:122:::0;:::o;46789:25::-;;;;;;;;;;;;;:::o;46860:30::-;;;;;;;;;;;;;:::o;25866:239::-;25938:7;25958:13;25974:7;:16;25982:7;25974:16;;;;;;;;;;;;;;;;;;;;;25958:32;;26026:1;26009:19;;:5;:19;;;;26001:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26092:5;26085:12;;;25866:239;;;:::o;46687:35::-;;;;:::o;45703:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51984:107::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52070:13:::1;52057:10;:26;;;;51984:107:::0;:::o;25596:208::-;25668:7;25713:1;25696:19;;:5;:19;;;;25688:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25780:9;:16;25790:5;25780:16;;;;;;;;;;;;;;;;25773:23;;25596:208;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;46988:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52244:133::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52355:14:::1;52337:15;:32;;;;52244:133:::0;:::o;51750:100::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51835:7:::1;51818:14;;:24;;;;;;;;;;;;;;;;;;51750:100:::0;:::o;52953:147::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53072:20:::1;53040:29;:52;;;;52953:147:::0;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;26341:104::-;26397:13;26430:7;26423:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26341:104;:::o;47518:1843::-;47588:6;;;;;;;;;;;47587:7;47579:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;47632:14;47649:13;:11;:13::i;:::-;47632:30;;47695:1;47681:11;:15;47673:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47769:7;:5;:7::i;:::-;47755:21;;:10;:21;;;;47747:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;47833:4;47818:19;;:11;;;;;;;;;;;:19;;;47814:1368;;;47866:14;;;;;;;;;;;47858:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;47944:25;47958:10;47944:13;:25::i;:::-;47936:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48081:16;;48066:11;48024:27;:39;48052:10;48024:39;;;;;;;;;;;;;;;;:53;;;;:::i;:::-;:73;;48016:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;48202:13;;48187:11;48178:6;:20;;;;:::i;:::-;:37;;48170:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;48331:9;48316:11;48302:12;;:25;;;;:::i;:::-;:38;;48294:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48403:9;48415:1;48403:13;;48398:183;48423:11;48418:1;:16;48398:183;;48464:27;:39;48492:10;48464:39;;;;;;;;;;;;;;;;:41;;;;;;;;;:::i;:::-;;;;;;48528:33;48538:10;48559:1;48550:6;:10;;;;:::i;:::-;48528:9;:33::i;:::-;48436:3;;;;;:::i;:::-;;;;48398:183;;;;47814:1368;;;48653:10;;48638:11;48629:6;:20;;;;:::i;:::-;:34;;48621:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;48769:11;48755;;:25;;;;:::i;:::-;48742:9;:38;;48733:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;48896:15;;48881:11;48846:20;:32;48867:10;48846:32;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:65;;48838:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;48996:9;49008:1;48996:13;;48991:176;49016:11;49011:1;:16;48991:176;;49057:20;:32;49078:10;49057:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;49114:33;49124:10;49145:1;49136:6;:10;;;;:::i;:::-;49114:9;:33::i;:::-;49029:3;;;;;:::i;:::-;;;;48991:176;;;;47814:1368;49226:12;49252:8;;;;;;;;;;;49244:22;;49293:4;49287:2;49275:9;:14;;;;:::i;:::-;49274:23;;;;:::i;:::-;49244:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49225:101;;;49345:7;49337:16;;;;;;47568:1793;;47518:1843;:::o;28025:155::-;28120:52;28139:12;:10;:12::i;:::-;28153:8;28163;28120:18;:52::i;:::-;28025:155;;:::o;47039:31::-;;;;;;;;;;;;;:::o;46571:36::-;;;;:::o;46263:37::-;;;;:::o;46455:36::-;;;;:::o;29148:328::-;29323:41;29342:12;:10;:12::i;:::-;29356:7;29323:18;:41::i;:::-;29315:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29429:39;29443:4;29449:2;29453:7;29462:5;29429:13;:39::i;:::-;29148:328;;;;:::o;47416:94::-;47462:7;47489:13;:11;:13::i;:::-;47482:20;;47416:94;:::o;51628:114::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51719:15:::1;51705:11;:29;;;;51628:114:::0;:::o;50818:685::-;50936:13;50989:16;50997:7;50989;:16::i;:::-;50967:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;51109:5;51097:17;;:8;;;;;;;;;;;:17;;;51093:71;;;51138:14;51131:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51093:71;51176:28;51207:10;:8;:10::i;:::-;51176:41;;51279:1;51254:14;51248:28;:32;:247;;;;;;;;;;;;;;;;;51372:14;51413:18;:7;:16;:18::i;:::-;51329:125;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51248:247;51228:267;;;50818:685;;;;:::o;53108:93::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53187:6:::1;53173:11;;:20;;;;;;;;;;;;;;;;;;53108:93:::0;:::o;46731:49::-;;;;:::o;28251:164::-;28348:4;28372:18;:25;28391:5;28372:25;;;;;;;;;;;;;;;:35;28398:8;28372:35;;;;;;;;;;;;;;;;;;;;;;;;;28365:42;;28251:164;;;;:::o;49369:751::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49429:14:::1;49446:13;:11;:13::i;:::-;49429:30;;49510:1;49478:29;;:33;49470:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49568:18;;;;;;;;;;;49564:549;;;49658:9;49625:29;;49611:12;;:43;;;;:::i;:::-;:56;;49603:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;49710:9;49722:1;49710:13;;49705:201;49730:29;;49725:1;:34;49705:201;;49789:27;:39;49817:10;49789:39;;;;;;;;;;;;;;;;:41;;;;;;;;;:::i;:::-;;;;;;49853:33;49863:10;49884:1;49875:6;:10;;;;:::i;:::-;49853:9;:33::i;:::-;49761:3;;;;;:::i;:::-;;;;49705:201;;;;49923:12;49949:8;;;;;;;;;;;49941:22;;49990:4;49984:2;49972:9;:14;;;;:::i;:::-;49971:23;;;;:::i;:::-;49941:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49922:107;;;50065:5;50044:18;;:26;;;;;;;;;;;;;;;;;;50093:7;50085:16;;;::::0;::::1;;49588:525;49564:549;49418:702;49369:751::o:0;53214:164::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53300:25:::1;;53293:32;;;;:::i;:::-;53364:6;;53336:25;:34;;;;;;;:::i;:::-;;53214:164:::0;;:::o;52627:126::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52730:15:::1;52713:14;:32;;;;;;;;;;;;:::i;:::-;;52627:126:::0;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;46026:62::-;;;;;;;;;;;;;;;;;:::o;25227:305::-;25329:4;25381:25;25366:40;;;:11;:40;;;;:105;;;;25438:33;25423:48;;;:11;:48;;;;25366:105;:158;;;;25488:36;25512:11;25488:23;:36::i;:::-;25366:158;25346:178;;25227:305;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;30986:127::-;31051:4;31103:1;31075:30;;:7;:16;31083:7;31075:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31068:37;;30986:127;;;:::o;35132:174::-;35234:2;35207:15;:24;35223:7;35207:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35290:7;35286:2;35252:46;;35261:23;35276:7;35261:14;:23::i;:::-;35252:46;;;;;;;;;;;;35132:174;;:::o;31280:348::-;31373:4;31398:16;31406:7;31398;:16::i;:::-;31390:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31474:13;31490:23;31505:7;31490:14;:23::i;:::-;31474:39;;31543:5;31532:16;;:7;:16;;;:52;;;;31552:32;31569:5;31576:7;31552:16;:32::i;:::-;31532:52;:87;;;;31612:7;31588:31;;:20;31600:7;31588:11;:20::i;:::-;:31;;;31532:87;31524:96;;;31280:348;;;;:::o;34389:625::-;34548:4;34521:31;;:23;34536:7;34521:14;:23::i;:::-;:31;;;34513:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34627:1;34613:16;;:2;:16;;;;34605:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34683:39;34704:4;34710:2;34714:7;34683:20;:39::i;:::-;34787:29;34804:1;34808:7;34787:8;:29::i;:::-;34848:1;34829:9;:15;34839:4;34829:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34877:1;34860:9;:13;34870:2;34860:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34908:2;34889:7;:16;34897:7;34889:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34947:7;34943:2;34928:27;;34937:4;34928:27;;;;;;;;;;;;34968:38;34988:4;34994:2;34998:7;34968:19;:38::i;:::-;34389:625;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;31970:110::-;32046:26;32056:2;32060:7;32046:26;;;;;;;;;;;;:9;:26::i;:::-;31970:110;;:::o;35448:315::-;35603:8;35594:17;;:5;:17;;;;35586:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35690:8;35652:18;:25;35671:5;35652:25;;;;;;;;;;;;;;;:35;35678:8;35652:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35736:8;35714:41;;35729:5;35714:41;;;35746:8;35714:41;;;;;;:::i;:::-;;;;;;;;35448:315;;;:::o;30358:::-;30515:28;30525:4;30531:2;30535:7;30515:9;:28::i;:::-;30562:48;30585:4;30591:2;30595:7;30604:5;30562:22;:48::i;:::-;30554:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30358:315;;;;:::o;47284:108::-;47344:13;47377:7;47370:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47284:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;41029:589::-;41173:45;41200:4;41206:2;41210:7;41173:26;:45::i;:::-;41251:1;41235:18;;:4;:18;;;41231:187;;;41270:40;41302:7;41270:31;:40::i;:::-;41231:187;;;41340:2;41332:10;;:4;:10;;;41328:90;;41359:47;41392:4;41398:7;41359:32;:47::i;:::-;41328:90;41231:187;41446:1;41432:16;;:2;:16;;;41428:183;;;41465:45;41502:7;41465:36;:45::i;:::-;41428:183;;;41538:4;41532:10;;:2;:10;;;41528:83;;41559:40;41587:2;41591:7;41559:27;:40::i;:::-;41528:83;41428:183;41029:589;;;:::o;38210:125::-;;;;:::o;32307:321::-;32437:18;32443:2;32447:7;32437:5;:18::i;:::-;32488:54;32519:1;32523:2;32527:7;32536:5;32488:22;:54::i;:::-;32466:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32307:321;;;:::o;36328:799::-;36483:4;36504:15;:2;:13;;;:15::i;:::-;36500:620;;;36556:2;36540:36;;;36577:12;:10;:12::i;:::-;36591:4;36597:7;36606:5;36540:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36536:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36799:1;36782:6;:13;:18;36778:272;;;36825:60;;;;;;;;;;:::i;:::-;;;;;;;;36778:272;37000:6;36994:13;36985:6;36981:2;36977:15;36970:38;36536:529;36673:41;;;36663:51;;;:6;:51;;;;36656:58;;;;;36500:620;37104:4;37097:11;;36328:799;;;;;;;:::o;37699:126::-;;;;:::o;42341:164::-;42445:10;:17;;;;42418:15;:24;42434:7;42418:24;;;;;;;;;;;:44;;;;42473:10;42489:7;42473:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42341:164;:::o;43132:988::-;43398:22;43448:1;43423:22;43440:4;43423:16;:22::i;:::-;:26;;;;:::i;:::-;43398:51;;43460:18;43481:17;:26;43499:7;43481:26;;;;;;;;;;;;43460:47;;43628:14;43614:10;:28;43610:328;;43659:19;43681:12;:18;43694:4;43681:18;;;;;;;;;;;;;;;:34;43700:14;43681:34;;;;;;;;;;;;43659:56;;43765:11;43732:12;:18;43745:4;43732:18;;;;;;;;;;;;;;;:30;43751:10;43732:30;;;;;;;;;;;:44;;;;43882:10;43849:17;:30;43867:11;43849:30;;;;;;;;;;;:43;;;;43644:294;43610:328;44034:17;:26;44052:7;44034:26;;;;;;;;;;;44027:33;;;44078:12;:18;44091:4;44078:18;;;;;;;;;;;;;;;:34;44097:14;44078:34;;;;;;;;;;;44071:41;;;43213:907;;43132:988;;:::o;44415:1079::-;44668:22;44713:1;44693:10;:17;;;;:21;;;;:::i;:::-;44668:46;;44725:18;44746:15;:24;44762:7;44746:24;;;;;;;;;;;;44725:45;;45097:19;45119:10;45130:14;45119:26;;;;;;;;:::i;:::-;;;;;;;;;;45097:48;;45183:11;45158:10;45169;45158:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45294:10;45263:15;:28;45279:11;45263:28;;;;;;;;;;;:41;;;;45435:15;:24;45451:7;45435:24;;;;;;;;;;;45428:31;;;45470:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44486:1008;;;44415:1079;:::o;41919:221::-;42004:14;42021:20;42038:2;42021:16;:20::i;:::-;42004:37;;42079:7;42052:12;:16;42065:2;42052:16;;;;;;;;;;;;;;;:24;42069:6;42052:24;;;;;;;;;;;:34;;;;42126:6;42097:17;:26;42115:7;42097:26;;;;;;;;;;;:35;;;;41993:147;41919:221;;:::o;32964:439::-;33058:1;33044:16;;:2;:16;;;;33036:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33117:16;33125:7;33117;:16::i;:::-;33116:17;33108:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33179:45;33208:1;33212:2;33216:7;33179:20;:45::i;:::-;33254:1;33237:9;:13;33247:2;33237:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33285:2;33266:7;:16;33274:7;33266:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33330:7;33326:2;33305:33;;33322:1;33305:33;;;;;;;;;;;;33351:44;33379:1;33383:2;33387:7;33351:19;:44::i;:::-;32964:439;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:142::-;8931:32;8957:5;8931:32;:::i;:::-;8926:3;8919:45;8828:142;;:::o;8976:118::-;9063:24;9081:5;9063:24;:::i;:::-;9058:3;9051:37;8976:118;;:::o;9130:732::-;9249:3;9278:54;9326:5;9278:54;:::i;:::-;9348:86;9427:6;9422:3;9348:86;:::i;:::-;9341:93;;9458:56;9508:5;9458:56;:::i;:::-;9537:7;9568:1;9553:284;9578:6;9575:1;9572:13;9553:284;;;9654:6;9648:13;9681:63;9740:3;9725:13;9681:63;:::i;:::-;9674:70;;9767:60;9820:6;9767:60;:::i;:::-;9757:70;;9613:224;9600:1;9597;9593:9;9588:14;;9553:284;;;9557:14;9853:3;9846:10;;9254:608;;;9130:732;;;;:::o;9868:109::-;9949:21;9964:5;9949:21;:::i;:::-;9944:3;9937:34;9868:109;;:::o;9983:360::-;10069:3;10097:38;10129:5;10097:38;:::i;:::-;10151:70;10214:6;10209:3;10151:70;:::i;:::-;10144:77;;10230:52;10275:6;10270:3;10263:4;10256:5;10252:16;10230:52;:::i;:::-;10307:29;10329:6;10307:29;:::i;:::-;10302:3;10298:39;10291:46;;10073:270;9983:360;;;;:::o;10349:364::-;10437:3;10465:39;10498:5;10465:39;:::i;:::-;10520:71;10584:6;10579:3;10520:71;:::i;:::-;10513:78;;10600:52;10645:6;10640:3;10633:4;10626:5;10622:16;10600:52;:::i;:::-;10677:29;10699:6;10677:29;:::i;:::-;10672:3;10668:39;10661:46;;10441:272;10349:364;;;;:::o;10719:377::-;10825:3;10853:39;10886:5;10853:39;:::i;:::-;10908:89;10990:6;10985:3;10908:89;:::i;:::-;10901:96;;11006:52;11051:6;11046:3;11039:4;11032:5;11028:16;11006:52;:::i;:::-;11083:6;11078:3;11074:16;11067:23;;10829:267;10719:377;;;;:::o;11102:366::-;11244:3;11265:67;11329:2;11324:3;11265:67;:::i;:::-;11258:74;;11341:93;11430:3;11341:93;:::i;:::-;11459:2;11454:3;11450:12;11443:19;;11102:366;;;:::o;11474:::-;11616:3;11637:67;11701:2;11696:3;11637:67;:::i;:::-;11630:74;;11713:93;11802:3;11713:93;:::i;:::-;11831:2;11826:3;11822:12;11815:19;;11474:366;;;:::o;11846:::-;11988:3;12009:67;12073:2;12068:3;12009:67;:::i;:::-;12002:74;;12085:93;12174:3;12085:93;:::i;:::-;12203:2;12198:3;12194:12;12187:19;;11846:366;;;:::o;12218:::-;12360:3;12381:67;12445:2;12440:3;12381:67;:::i;:::-;12374:74;;12457:93;12546:3;12457:93;:::i;:::-;12575:2;12570:3;12566:12;12559:19;;12218:366;;;:::o;12590:::-;12732:3;12753:67;12817:2;12812:3;12753:67;:::i;:::-;12746:74;;12829:93;12918:3;12829:93;:::i;:::-;12947:2;12942:3;12938:12;12931:19;;12590:366;;;:::o;12962:::-;13104:3;13125:67;13189:2;13184:3;13125:67;:::i;:::-;13118:74;;13201:93;13290:3;13201:93;:::i;:::-;13319:2;13314:3;13310:12;13303:19;;12962:366;;;:::o;13334:::-;13476:3;13497:67;13561:2;13556:3;13497:67;:::i;:::-;13490:74;;13573:93;13662:3;13573:93;:::i;:::-;13691:2;13686:3;13682:12;13675:19;;13334:366;;;:::o;13706:::-;13848:3;13869:67;13933:2;13928:3;13869:67;:::i;:::-;13862:74;;13945:93;14034:3;13945:93;:::i;:::-;14063:2;14058:3;14054:12;14047:19;;13706:366;;;:::o;14078:::-;14220:3;14241:67;14305:2;14300:3;14241:67;:::i;:::-;14234:74;;14317:93;14406:3;14317:93;:::i;:::-;14435:2;14430:3;14426:12;14419:19;;14078:366;;;:::o;14450:::-;14592:3;14613:67;14677:2;14672:3;14613:67;:::i;:::-;14606:74;;14689:93;14778:3;14689:93;:::i;:::-;14807:2;14802:3;14798:12;14791:19;;14450:366;;;:::o;14822:::-;14964:3;14985:67;15049:2;15044:3;14985:67;:::i;:::-;14978:74;;15061:93;15150:3;15061:93;:::i;:::-;15179:2;15174:3;15170:12;15163:19;;14822:366;;;:::o;15194:::-;15336:3;15357:67;15421:2;15416:3;15357:67;:::i;:::-;15350:74;;15433:93;15522:3;15433:93;:::i;:::-;15551:2;15546:3;15542:12;15535:19;;15194:366;;;:::o;15566:::-;15708:3;15729:67;15793:2;15788:3;15729:67;:::i;:::-;15722:74;;15805:93;15894:3;15805:93;:::i;:::-;15923:2;15918:3;15914:12;15907:19;;15566:366;;;:::o;15938:::-;16080:3;16101:67;16165:2;16160:3;16101:67;:::i;:::-;16094:74;;16177:93;16266:3;16177:93;:::i;:::-;16295:2;16290:3;16286:12;16279:19;;15938:366;;;:::o;16310:::-;16452:3;16473:67;16537:2;16532:3;16473:67;:::i;:::-;16466:74;;16549:93;16638:3;16549:93;:::i;:::-;16667:2;16662:3;16658:12;16651:19;;16310:366;;;:::o;16682:::-;16824:3;16845:67;16909:2;16904:3;16845:67;:::i;:::-;16838:74;;16921:93;17010:3;16921:93;:::i;:::-;17039:2;17034:3;17030:12;17023:19;;16682:366;;;:::o;17054:::-;17196:3;17217:67;17281:2;17276:3;17217:67;:::i;:::-;17210:74;;17293:93;17382:3;17293:93;:::i;:::-;17411:2;17406:3;17402:12;17395:19;;17054:366;;;:::o;17426:::-;17568:3;17589:67;17653:2;17648:3;17589:67;:::i;:::-;17582:74;;17665:93;17754:3;17665:93;:::i;:::-;17783:2;17778:3;17774:12;17767:19;;17426:366;;;:::o;17798:::-;17940:3;17961:67;18025:2;18020:3;17961:67;:::i;:::-;17954:74;;18037:93;18126:3;18037:93;:::i;:::-;18155:2;18150:3;18146:12;18139:19;;17798:366;;;:::o;18170:::-;18312:3;18333:67;18397:2;18392:3;18333:67;:::i;:::-;18326:74;;18409:93;18498:3;18409:93;:::i;:::-;18527:2;18522:3;18518:12;18511:19;;18170:366;;;:::o;18542:::-;18684:3;18705:67;18769:2;18764:3;18705:67;:::i;:::-;18698:74;;18781:93;18870:3;18781:93;:::i;:::-;18899:2;18894:3;18890:12;18883:19;;18542:366;;;:::o;18914:398::-;19073:3;19094:83;19175:1;19170:3;19094:83;:::i;:::-;19087:90;;19186:93;19275:3;19186:93;:::i;:::-;19304:1;19299:3;19295:11;19288:18;;18914:398;;;:::o;19318:366::-;19460:3;19481:67;19545:2;19540:3;19481:67;:::i;:::-;19474:74;;19557:93;19646:3;19557:93;:::i;:::-;19675:2;19670:3;19666:12;19659:19;;19318:366;;;:::o;19690:::-;19832:3;19853:67;19917:2;19912:3;19853:67;:::i;:::-;19846:74;;19929:93;20018:3;19929:93;:::i;:::-;20047:2;20042:3;20038:12;20031:19;;19690:366;;;:::o;20062:::-;20204:3;20225:67;20289:2;20284:3;20225:67;:::i;:::-;20218:74;;20301:93;20390:3;20301:93;:::i;:::-;20419:2;20414:3;20410:12;20403:19;;20062:366;;;:::o;20434:::-;20576:3;20597:67;20661:2;20656:3;20597:67;:::i;:::-;20590:74;;20673:93;20762:3;20673:93;:::i;:::-;20791:2;20786:3;20782:12;20775:19;;20434:366;;;:::o;20806:::-;20948:3;20969:67;21033:2;21028:3;20969:67;:::i;:::-;20962:74;;21045:93;21134:3;21045:93;:::i;:::-;21163:2;21158:3;21154:12;21147:19;;20806:366;;;:::o;21178:::-;21320:3;21341:67;21405:2;21400:3;21341:67;:::i;:::-;21334:74;;21417:93;21506:3;21417:93;:::i;:::-;21535:2;21530:3;21526:12;21519:19;;21178:366;;;:::o;21550:::-;21692:3;21713:67;21777:2;21772:3;21713:67;:::i;:::-;21706:74;;21789:93;21878:3;21789:93;:::i;:::-;21907:2;21902:3;21898:12;21891:19;;21550:366;;;:::o;21922:108::-;21999:24;22017:5;21999:24;:::i;:::-;21994:3;21987:37;21922:108;;:::o;22036:118::-;22123:24;22141:5;22123:24;:::i;:::-;22118:3;22111:37;22036:118;;:::o;22160:435::-;22340:3;22362:95;22453:3;22444:6;22362:95;:::i;:::-;22355:102;;22474:95;22565:3;22556:6;22474:95;:::i;:::-;22467:102;;22586:3;22579:10;;22160:435;;;;;:::o;22601:379::-;22785:3;22807:147;22950:3;22807:147;:::i;:::-;22800:154;;22971:3;22964:10;;22601:379;;;:::o;22986:222::-;23079:4;23117:2;23106:9;23102:18;23094:26;;23130:71;23198:1;23187:9;23183:17;23174:6;23130:71;:::i;:::-;22986:222;;;;:::o;23214:254::-;23323:4;23361:2;23350:9;23346:18;23338:26;;23374:87;23458:1;23447:9;23443:17;23434:6;23374:87;:::i;:::-;23214:254;;;;:::o;23474:640::-;23669:4;23707:3;23696:9;23692:19;23684:27;;23721:71;23789:1;23778:9;23774:17;23765:6;23721:71;:::i;:::-;23802:72;23870:2;23859:9;23855:18;23846:6;23802:72;:::i;:::-;23884;23952:2;23941:9;23937:18;23928:6;23884:72;:::i;:::-;24003:9;23997:4;23993:20;23988:2;23977:9;23973:18;23966:48;24031:76;24102:4;24093:6;24031:76;:::i;:::-;24023:84;;23474:640;;;;;;;:::o;24120:373::-;24263:4;24301:2;24290:9;24286:18;24278:26;;24350:9;24344:4;24340:20;24336:1;24325:9;24321:17;24314:47;24378:108;24481:4;24472:6;24378:108;:::i;:::-;24370:116;;24120:373;;;;:::o;24499:210::-;24586:4;24624:2;24613:9;24609:18;24601:26;;24637:65;24699:1;24688:9;24684:17;24675:6;24637:65;:::i;:::-;24499:210;;;;:::o;24715:313::-;24828:4;24866:2;24855:9;24851:18;24843:26;;24915:9;24909:4;24905:20;24901:1;24890:9;24886:17;24879:47;24943:78;25016:4;25007:6;24943:78;:::i;:::-;24935:86;;24715:313;;;;:::o;25034:419::-;25200:4;25238:2;25227:9;25223:18;25215:26;;25287:9;25281:4;25277:20;25273:1;25262:9;25258:17;25251:47;25315:131;25441:4;25315:131;:::i;:::-;25307:139;;25034:419;;;:::o;25459:::-;25625:4;25663:2;25652:9;25648:18;25640:26;;25712:9;25706:4;25702:20;25698:1;25687:9;25683:17;25676:47;25740:131;25866:4;25740:131;:::i;:::-;25732:139;;25459:419;;;:::o;25884:::-;26050:4;26088:2;26077:9;26073:18;26065:26;;26137:9;26131:4;26127:20;26123:1;26112:9;26108:17;26101:47;26165:131;26291:4;26165:131;:::i;:::-;26157:139;;25884:419;;;:::o;26309:::-;26475:4;26513:2;26502:9;26498:18;26490:26;;26562:9;26556:4;26552:20;26548:1;26537:9;26533:17;26526:47;26590:131;26716:4;26590:131;:::i;:::-;26582:139;;26309:419;;;:::o;26734:::-;26900:4;26938:2;26927:9;26923:18;26915:26;;26987:9;26981:4;26977:20;26973:1;26962:9;26958:17;26951:47;27015:131;27141:4;27015:131;:::i;:::-;27007:139;;26734:419;;;:::o;27159:::-;27325:4;27363:2;27352:9;27348:18;27340:26;;27412:9;27406:4;27402:20;27398:1;27387:9;27383:17;27376:47;27440:131;27566:4;27440:131;:::i;:::-;27432:139;;27159:419;;;:::o;27584:::-;27750:4;27788:2;27777:9;27773:18;27765:26;;27837:9;27831:4;27827:20;27823:1;27812:9;27808:17;27801:47;27865:131;27991:4;27865:131;:::i;:::-;27857:139;;27584:419;;;:::o;28009:::-;28175:4;28213:2;28202:9;28198:18;28190:26;;28262:9;28256:4;28252:20;28248:1;28237:9;28233:17;28226:47;28290:131;28416:4;28290:131;:::i;:::-;28282:139;;28009:419;;;:::o;28434:::-;28600:4;28638:2;28627:9;28623:18;28615:26;;28687:9;28681:4;28677:20;28673:1;28662:9;28658:17;28651:47;28715:131;28841:4;28715:131;:::i;:::-;28707:139;;28434:419;;;:::o;28859:::-;29025:4;29063:2;29052:9;29048:18;29040:26;;29112:9;29106:4;29102:20;29098:1;29087:9;29083:17;29076:47;29140:131;29266:4;29140:131;:::i;:::-;29132:139;;28859:419;;;:::o;29284:::-;29450:4;29488:2;29477:9;29473:18;29465:26;;29537:9;29531:4;29527:20;29523:1;29512:9;29508:17;29501:47;29565:131;29691:4;29565:131;:::i;:::-;29557:139;;29284:419;;;:::o;29709:::-;29875:4;29913:2;29902:9;29898:18;29890:26;;29962:9;29956:4;29952:20;29948:1;29937:9;29933:17;29926:47;29990:131;30116:4;29990:131;:::i;:::-;29982:139;;29709:419;;;:::o;30134:::-;30300:4;30338:2;30327:9;30323:18;30315:26;;30387:9;30381:4;30377:20;30373:1;30362:9;30358:17;30351:47;30415:131;30541:4;30415:131;:::i;:::-;30407:139;;30134:419;;;:::o;30559:::-;30725:4;30763:2;30752:9;30748:18;30740:26;;30812:9;30806:4;30802:20;30798:1;30787:9;30783:17;30776:47;30840:131;30966:4;30840:131;:::i;:::-;30832:139;;30559:419;;;:::o;30984:::-;31150:4;31188:2;31177:9;31173:18;31165:26;;31237:9;31231:4;31227:20;31223:1;31212:9;31208:17;31201:47;31265:131;31391:4;31265:131;:::i;:::-;31257:139;;30984:419;;;:::o;31409:::-;31575:4;31613:2;31602:9;31598:18;31590:26;;31662:9;31656:4;31652:20;31648:1;31637:9;31633:17;31626:47;31690:131;31816:4;31690:131;:::i;:::-;31682:139;;31409:419;;;:::o;31834:::-;32000:4;32038:2;32027:9;32023:18;32015:26;;32087:9;32081:4;32077:20;32073:1;32062:9;32058:17;32051:47;32115:131;32241:4;32115:131;:::i;:::-;32107:139;;31834:419;;;:::o;32259:::-;32425:4;32463:2;32452:9;32448:18;32440:26;;32512:9;32506:4;32502:20;32498:1;32487:9;32483:17;32476:47;32540:131;32666:4;32540:131;:::i;:::-;32532:139;;32259:419;;;:::o;32684:::-;32850:4;32888:2;32877:9;32873:18;32865:26;;32937:9;32931:4;32927:20;32923:1;32912:9;32908:17;32901:47;32965:131;33091:4;32965:131;:::i;:::-;32957:139;;32684:419;;;:::o;33109:::-;33275:4;33313:2;33302:9;33298:18;33290:26;;33362:9;33356:4;33352:20;33348:1;33337:9;33333:17;33326:47;33390:131;33516:4;33390:131;:::i;:::-;33382:139;;33109:419;;;:::o;33534:::-;33700:4;33738:2;33727:9;33723:18;33715:26;;33787:9;33781:4;33777:20;33773:1;33762:9;33758:17;33751:47;33815:131;33941:4;33815:131;:::i;:::-;33807:139;;33534:419;;;:::o;33959:::-;34125:4;34163:2;34152:9;34148:18;34140:26;;34212:9;34206:4;34202:20;34198:1;34187:9;34183:17;34176:47;34240:131;34366:4;34240:131;:::i;:::-;34232:139;;33959:419;;;:::o;34384:::-;34550:4;34588:2;34577:9;34573:18;34565:26;;34637:9;34631:4;34627:20;34623:1;34612:9;34608:17;34601:47;34665:131;34791:4;34665:131;:::i;:::-;34657:139;;34384:419;;;:::o;34809:::-;34975:4;35013:2;35002:9;34998:18;34990:26;;35062:9;35056:4;35052:20;35048:1;35037:9;35033:17;35026:47;35090:131;35216:4;35090:131;:::i;:::-;35082:139;;34809:419;;;:::o;35234:::-;35400:4;35438:2;35427:9;35423:18;35415:26;;35487:9;35481:4;35477:20;35473:1;35462:9;35458:17;35451:47;35515:131;35641:4;35515:131;:::i;:::-;35507:139;;35234:419;;;:::o;35659:::-;35825:4;35863:2;35852:9;35848:18;35840:26;;35912:9;35906:4;35902:20;35898:1;35887:9;35883:17;35876:47;35940:131;36066:4;35940:131;:::i;:::-;35932:139;;35659:419;;;:::o;36084:::-;36250:4;36288:2;36277:9;36273:18;36265:26;;36337:9;36331:4;36327:20;36323:1;36312:9;36308:17;36301:47;36365:131;36491:4;36365:131;:::i;:::-;36357:139;;36084:419;;;:::o;36509:::-;36675:4;36713:2;36702:9;36698:18;36690:26;;36762:9;36756:4;36752:20;36748:1;36737:9;36733:17;36726:47;36790:131;36916:4;36790:131;:::i;:::-;36782:139;;36509:419;;;:::o;36934:222::-;37027:4;37065:2;37054:9;37050:18;37042:26;;37078:71;37146:1;37135:9;37131:17;37122:6;37078:71;:::i;:::-;36934:222;;;;:::o;37162:129::-;37196:6;37223:20;;:::i;:::-;37213:30;;37252:33;37280:4;37272:6;37252:33;:::i;:::-;37162:129;;;:::o;37297:75::-;37330:6;37363:2;37357:9;37347:19;;37297:75;:::o;37378:307::-;37439:4;37529:18;37521:6;37518:30;37515:56;;;37551:18;;:::i;:::-;37515:56;37589:29;37611:6;37589:29;:::i;:::-;37581:37;;37673:4;37667;37663:15;37655:23;;37378:307;;;:::o;37691:308::-;37753:4;37843:18;37835:6;37832:30;37829:56;;;37865:18;;:::i;:::-;37829:56;37903:29;37925:6;37903:29;:::i;:::-;37895:37;;37987:4;37981;37977:15;37969:23;;37691:308;;;:::o;38005:132::-;38072:4;38095:3;38087:11;;38125:4;38120:3;38116:14;38108:22;;38005:132;;;:::o;38143:114::-;38210:6;38244:5;38238:12;38228:22;;38143:114;;;:::o;38263:98::-;38314:6;38348:5;38342:12;38332:22;;38263:98;;;:::o;38367:99::-;38419:6;38453:5;38447:12;38437:22;;38367:99;;;:::o;38472:113::-;38542:4;38574;38569:3;38565:14;38557:22;;38472:113;;;:::o;38591:184::-;38690:11;38724:6;38719:3;38712:19;38764:4;38759:3;38755:14;38740:29;;38591:184;;;;:::o;38781:168::-;38864:11;38898:6;38893:3;38886:19;38938:4;38933:3;38929:14;38914:29;;38781:168;;;;:::o;38955:147::-;39056:11;39093:3;39078:18;;38955:147;;;;:::o;39108:169::-;39192:11;39226:6;39221:3;39214:19;39266:4;39261:3;39257:14;39242:29;;39108:169;;;;:::o;39283:148::-;39385:11;39422:3;39407:18;;39283:148;;;;:::o;39437:305::-;39477:3;39496:20;39514:1;39496:20;:::i;:::-;39491:25;;39530:20;39548:1;39530:20;:::i;:::-;39525:25;;39684:1;39616:66;39612:74;39609:1;39606:81;39603:107;;;39690:18;;:::i;:::-;39603:107;39734:1;39731;39727:9;39720:16;;39437:305;;;;:::o;39748:185::-;39788:1;39805:20;39823:1;39805:20;:::i;:::-;39800:25;;39839:20;39857:1;39839:20;:::i;:::-;39834:25;;39878:1;39868:35;;39883:18;;:::i;:::-;39868:35;39925:1;39922;39918:9;39913:14;;39748:185;;;;:::o;39939:348::-;39979:7;40002:20;40020:1;40002:20;:::i;:::-;39997:25;;40036:20;40054:1;40036:20;:::i;:::-;40031:25;;40224:1;40156:66;40152:74;40149:1;40146:81;40141:1;40134:9;40127:17;40123:105;40120:131;;;40231:18;;:::i;:::-;40120:131;40279:1;40276;40272:9;40261:20;;39939:348;;;;:::o;40293:191::-;40333:4;40353:20;40371:1;40353:20;:::i;:::-;40348:25;;40387:20;40405:1;40387:20;:::i;:::-;40382:25;;40426:1;40423;40420:8;40417:34;;;40431:18;;:::i;:::-;40417:34;40476:1;40473;40469:9;40461:17;;40293:191;;;;:::o;40490:96::-;40527:7;40556:24;40574:5;40556:24;:::i;:::-;40545:35;;40490:96;;;:::o;40592:104::-;40637:7;40666:24;40684:5;40666:24;:::i;:::-;40655:35;;40592:104;;;:::o;40702:90::-;40736:7;40779:5;40772:13;40765:21;40754:32;;40702:90;;;:::o;40798:149::-;40834:7;40874:66;40867:5;40863:78;40852:89;;40798:149;;;:::o;40953:126::-;40990:7;41030:42;41023:5;41019:54;41008:65;;40953:126;;;:::o;41085:77::-;41122:7;41151:5;41140:16;;41085:77;;;:::o;41168:154::-;41252:6;41247:3;41242;41229:30;41314:1;41305:6;41300:3;41296:16;41289:27;41168:154;;;:::o;41328:307::-;41396:1;41406:113;41420:6;41417:1;41414:13;41406:113;;;41505:1;41500:3;41496:11;41490:18;41486:1;41481:3;41477:11;41470:39;41442:2;41439:1;41435:10;41430:15;;41406:113;;;41537:6;41534:1;41531:13;41528:101;;;41617:1;41608:6;41603:3;41599:16;41592:27;41528:101;41377:258;41328:307;;;:::o;41641:320::-;41685:6;41722:1;41716:4;41712:12;41702:22;;41769:1;41763:4;41759:12;41790:18;41780:81;;41846:4;41838:6;41834:17;41824:27;;41780:81;41908:2;41900:6;41897:14;41877:18;41874:38;41871:84;;;41927:18;;:::i;:::-;41871:84;41692:269;41641:320;;;:::o;41967:281::-;42050:27;42072:4;42050:27;:::i;:::-;42042:6;42038:40;42180:6;42168:10;42165:22;42144:18;42132:10;42129:34;42126:62;42123:88;;;42191:18;;:::i;:::-;42123:88;42231:10;42227:2;42220:22;42010:238;41967:281;;:::o;42254:233::-;42293:3;42316:24;42334:5;42316:24;:::i;:::-;42307:33;;42362:66;42355:5;42352:77;42349:103;;;42432:18;;:::i;:::-;42349:103;42479:1;42472:5;42468:13;42461:20;;42254:233;;;:::o;42493:176::-;42525:1;42542:20;42560:1;42542:20;:::i;:::-;42537:25;;42576:20;42594:1;42576:20;:::i;:::-;42571:25;;42615:1;42605:35;;42620:18;;:::i;:::-;42605:35;42661:1;42658;42654:9;42649:14;;42493:176;;;;:::o;42675:180::-;42723:77;42720:1;42713:88;42820:4;42817:1;42810:15;42844:4;42841:1;42834:15;42861:180;42909:77;42906:1;42899:88;43006:4;43003:1;42996:15;43030:4;43027:1;43020:15;43047:180;43095:77;43092:1;43085:88;43192:4;43189:1;43182:15;43216:4;43213:1;43206:15;43233:180;43281:77;43278:1;43271:88;43378:4;43375:1;43368:15;43402:4;43399:1;43392:15;43419:180;43467:77;43464:1;43457:88;43564:4;43561:1;43554:15;43588:4;43585:1;43578:15;43605:180;43653:77;43650:1;43643:88;43750:4;43747:1;43740:15;43774:4;43771:1;43764:15;43791:117;43900:1;43897;43890:12;43914:117;44023:1;44020;44013:12;44037:117;44146:1;44143;44136:12;44160:117;44269:1;44266;44259:12;44283:117;44392:1;44389;44382:12;44406:117;44515:1;44512;44505:12;44529:102;44570:6;44621:2;44617:7;44612:2;44605:5;44601:14;44597:28;44587:38;;44529:102;;;:::o;44637:182::-;44777:34;44773:1;44765:6;44761:14;44754:58;44637:182;:::o;44825:230::-;44965:34;44961:1;44953:6;44949:14;44942:58;45034:13;45029:2;45021:6;45017:15;45010:38;44825:230;:::o;45061:237::-;45201:34;45197:1;45189:6;45185:14;45178:58;45270:20;45265:2;45257:6;45253:15;45246:45;45061:237;:::o;45304:225::-;45444:34;45440:1;45432:6;45428:14;45421:58;45513:8;45508:2;45500:6;45496:15;45489:33;45304:225;:::o;45535:224::-;45675:34;45671:1;45663:6;45659:14;45652:58;45744:7;45739:2;45731:6;45727:15;45720:32;45535:224;:::o;45765:178::-;45905:30;45901:1;45893:6;45889:14;45882:54;45765:178;:::o;45949:223::-;46089:34;46085:1;46077:6;46073:14;46066:58;46158:6;46153:2;46145:6;46141:15;46134:31;45949:223;:::o;46178:175::-;46318:27;46314:1;46306:6;46302:14;46295:51;46178:175;:::o;46359:231::-;46499:34;46495:1;46487:6;46483:14;46476:58;46568:14;46563:2;46555:6;46551:15;46544:39;46359:231;:::o;46596:243::-;46736:34;46732:1;46724:6;46720:14;46713:58;46805:26;46800:2;46792:6;46788:15;46781:51;46596:243;:::o;46845:229::-;46985:34;46981:1;46973:6;46969:14;46962:58;47054:12;47049:2;47041:6;47037:15;47030:37;46845:229;:::o;47080:228::-;47220:34;47216:1;47208:6;47204:14;47197:58;47289:11;47284:2;47276:6;47272:15;47265:36;47080:228;:::o;47314:182::-;47454:34;47450:1;47442:6;47438:14;47431:58;47314:182;:::o;47502:231::-;47642:34;47638:1;47630:6;47626:14;47619:58;47711:14;47706:2;47698:6;47694:15;47687:39;47502:231;:::o;47739:240::-;47879:34;47875:1;47867:6;47863:14;47856:58;47948:23;47943:2;47935:6;47931:15;47924:48;47739:240;:::o;47985:182::-;48125:34;48121:1;48113:6;48109:14;48102:58;47985:182;:::o;48173:172::-;48313:24;48309:1;48301:6;48297:14;48290:48;48173:172;:::o;48351:234::-;48491:34;48487:1;48479:6;48475:14;48468:58;48560:17;48555:2;48547:6;48543:15;48536:42;48351:234;:::o;48591:220::-;48731:34;48727:1;48719:6;48715:14;48708:58;48800:3;48795:2;48787:6;48783:15;48776:28;48591:220;:::o;48817:222::-;48957:34;48953:1;48945:6;48941:14;48934:58;49026:5;49021:2;49013:6;49009:15;49002:30;48817:222;:::o;49045:166::-;49185:18;49181:1;49173:6;49169:14;49162:42;49045:166;:::o;49217:114::-;;:::o;49337:168::-;49477:20;49473:1;49465:6;49461:14;49454:44;49337:168;:::o;49511:236::-;49651:34;49647:1;49639:6;49635:14;49628:58;49720:19;49715:2;49707:6;49703:15;49696:44;49511:236;:::o;49753:234::-;49893:34;49889:1;49881:6;49877:14;49870:58;49962:17;49957:2;49949:6;49945:15;49938:42;49753:234;:::o;49993:242::-;50133:34;50129:1;50121:6;50117:14;50110:58;50202:25;50197:2;50189:6;50185:15;50178:50;49993:242;:::o;50241:231::-;50381:34;50377:1;50369:6;50365:14;50358:58;50450:14;50445:2;50437:6;50433:15;50426:39;50241:231;:::o;50478:236::-;50618:34;50614:1;50606:6;50602:14;50595:58;50687:19;50682:2;50674:6;50670:15;50663:44;50478:236;:::o;50720:173::-;50860:25;50856:1;50848:6;50844:14;50837:49;50720:173;:::o;50899:122::-;50972:24;50990:5;50972:24;:::i;:::-;50965:5;50962:35;50952:63;;51011:1;51008;51001:12;50952:63;50899:122;:::o;51027:116::-;51097:21;51112:5;51097:21;:::i;:::-;51090:5;51087:32;51077:60;;51133:1;51130;51123:12;51077:60;51027:116;:::o;51149:120::-;51221:23;51238:5;51221:23;:::i;:::-;51214:5;51211:34;51201:62;;51259:1;51256;51249:12;51201:62;51149:120;:::o;51275:122::-;51348:24;51366:5;51348:24;:::i;:::-;51341:5;51338:35;51328:63;;51387:1;51384;51377:12;51328:63;51275:122;:::o

Swarm Source

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