ETH Price: $3,314.29 (-3.49%)
Gas: 16 Gwei

Token

KevFellaz (KFELLAZ)
 

Overview

Max Total Supply

778 KFELLAZ

Holders

278

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wa1do.eth
Balance
2 KFELLAZ
0x85b826b5eb230d03ce1bb41ded646909bf0c3f4e
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:
KevFellaz

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: contracts/KevFellaz.sol

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

// File: KevFellaz_flat.sol


// File: contracts/KevFellaz.sol

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

// File: contracts/Sybermon789.sol

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

// File @openzeppelin/contracts/utils/[email protected]

// 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/[email protected]


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



/**
 * @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/[email protected]


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



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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)



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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)



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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


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



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

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


// File @openzeppelin/contracts/utils/[email protected]


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



/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]


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



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


// Creator: Chiru Labs


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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 1;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract KevFellaz is ERC721A, Ownable {

    string public baseURI = "ipfs://QmdxujyZvUe5T2iG7NjK93A2wHcXHik7ynJtU7XuQm9Jpb/";
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    uint256 public constant MAX_PER_TX = 2;
    uint256 public constant MAX_PER_WALLET = 4;
    uint256 public constant MAX_SUPPLY = 778;
    uint256 public constant price = 0.00 ether;

    bool public paused = true;

    mapping(address => uint256) public addressMinted;

    constructor() ERC721A("KevFellaz", "KFELLAZ") {}

    function mint(uint256 _amount) external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");
        require(tx.origin == _caller, "No contracts");
        require(addressMinted[msg.sender] + _amount <= MAX_PER_WALLET, "Exceeds max per wallet");
        require(MAX_PER_TX >= _amount , "Excess max per paid tx");
        require(_amount * price == msg.value, "Invalid funds provided");
         addressMinted[msg.sender] += _amount;
        _safeMint(_caller, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

contract OwnableDelegateProxy { }
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMinted","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"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":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600160005560405180606001604052806036815260200162004ac760369139600890805190602001906200003a929190620001f8565b506001600960006101000a81548160ff0219169083151502179055503480156200006357600080fd5b506040518060400160405280600981526020017f4b657646656c6c617a00000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4b46454c4c415a000000000000000000000000000000000000000000000000008152508160019080519060200190620000e8929190620001f8565b50806002908051906020019062000101929190620001f8565b50505062000124620001186200012a60201b60201c565b6200013260201b60201c565b6200030d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020690620002a8565b90600052602060002090601f0160209004810192826200022a576000855562000276565b82601f106200024557805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027557825182559160200191906001019062000258565b5b50905062000285919062000289565b5090565b5b80821115620002a45760008160009055506001016200028a565b5090565b60006002820490506001821680620002c157607f821691505b60208210811415620002d857620002d7620002de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6147aa806200031d6000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146106d5578063f2fde38b14610712578063f43a22dc1461073b578063fa30297e14610766576101e3565b8063b88d4fde14610619578063c668286214610642578063c87b56dd1461066d578063cd7c0326146106aa576101e3565b806395d89b41116100d157806395d89b411461057e578063a035b1fe146105a9578063a0712d68146105d4578063a22cb465146105f0576101e3565b80636c0360eb146104d457806370a08231146104ff578063715018a61461053c5780638da5cb5b14610553576101e3565b80632f745c591161017a5780634f6ccce7116101495780634f6ccce71461040657806355f804b3146104435780635c975abb1461046c5780636352211e14610497576101e3565b80632f745c591461035e57806332cb6b0c1461039b5780633ccfd60b146103c657806342842e0e146103dd576101e3565b8063095ea7b3116101b6578063095ea7b3146102b65780630f2cdd6c146102df57806318160ddd1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906130ac565b6107a3565b60405161021c9190613779565b60405180910390f35b34801561023157600080fd5b5061024c6004803603810190610247919061307f565b6108ed565b005b34801561025a57600080fd5b50610263610986565b6040516102709190613794565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b919061317c565b610a18565b6040516102ad9190613712565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d8919061303f565b610a9d565b005b3480156102eb57600080fd5b506102f4610bb6565b6040516103019190613b16565b60405180910390f35b34801561031657600080fd5b5061031f610bbb565b60405161032c9190613b16565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612f29565b610bc4565b005b34801561036a57600080fd5b506103856004803603810190610380919061303f565b610bd4565b6040516103929190613b16565b60405180910390f35b3480156103a757600080fd5b506103b0610dd2565b6040516103bd9190613b16565b60405180910390f35b3480156103d257600080fd5b506103db610dd8565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612f29565b610f10565b005b34801561041257600080fd5b5061042d6004803603810190610428919061317c565b610f30565b60405161043a9190613b16565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190613133565b610f83565b005b34801561047857600080fd5b50610481611019565b60405161048e9190613779565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b9919061317c565b61102c565b6040516104cb9190613712565b60405180910390f35b3480156104e057600080fd5b506104e9611042565b6040516104f69190613794565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190612ebc565b6110d0565b6040516105339190613b16565b60405180910390f35b34801561054857600080fd5b506105516111b9565b005b34801561055f57600080fd5b50610568611241565b6040516105759190613712565b60405180910390f35b34801561058a57600080fd5b5061059361126b565b6040516105a09190613794565b60405180910390f35b3480156105b557600080fd5b506105be6112fd565b6040516105cb9190613b16565b60405180910390f35b6105ee60048036038101906105e9919061317c565b611302565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612fff565b6115ea565b005b34801561062557600080fd5b50610640600480360381019061063b9190612f7c565b61176b565b005b34801561064e57600080fd5b506106576117c7565b6040516106649190613794565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f919061317c565b611800565b6040516106a19190613794565b60405180910390f35b3480156106b657600080fd5b506106bf6118df565b6040516106cc9190613712565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190612ee9565b6118f7565b6040516107099190613779565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612ebc565b6119eb565b005b34801561074757600080fd5b50610750611ae3565b60405161075d9190613b16565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612ebc565b611ae8565b60405161079a9190613b16565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e657506108e582611b00565b5b9050919050565b6108f5611b6a565b73ffffffffffffffffffffffffffffffffffffffff16610913611241565b73ffffffffffffffffffffffffffffffffffffffff1614610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090613956565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b60606001805461099590613e84565b80601f01602080910402602001604051908101604052809291908181526020018280546109c190613e84565b8015610a0e5780601f106109e357610100808354040283529160200191610a0e565b820191906000526020600020905b8154815290600101906020018083116109f157829003601f168201915b5050505050905090565b6000610a2382611b72565b610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613ad6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa88261102c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b10906139d6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b38611b6a565b73ffffffffffffffffffffffffffffffffffffffff161480610b675750610b6681610b61611b6a565b6118f7565b5b610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906138b6565b60405180910390fd5b610bb1838383611b7f565b505050565b600481565b60008054905090565b610bcf838383611c31565b505050565b6000610bdf836110d0565b8210610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c17906137b6565b60405180910390fd5b6000610c2a610bbb565b905060008060005b83811015610d90576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d2457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d7c5786841415610d6d578195505050505050610dcc565b8380610d7890613ee7565b9450505b508080610d8890613ee7565b915050610c32565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390613a96565b60405180910390fd5b92915050565b61030a81565b610de0611b6a565b73ffffffffffffffffffffffffffffffffffffffff16610dfe611241565b73ffffffffffffffffffffffffffffffffffffffff1614610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613956565b60405180910390fd5b60004790506000610e63611b6a565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e86906136fd565b60006040518083038185875af1925050503d8060008114610ec3576040519150601f19603f3d011682016040523d82523d6000602084013e610ec8565b606091505b5050905080610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390613a76565b60405180910390fd5b5050565b610f2b8383836040518060200160405280600081525061176b565b505050565b6000610f3a610bbb565b8210610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613876565b60405180910390fd5b819050919050565b610f8b611b6a565b73ffffffffffffffffffffffffffffffffffffffff16610fa9611241565b73ffffffffffffffffffffffffffffffffffffffff1614610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690613956565b60405180910390fd5b8060089080519060200190611015929190612c81565b5050565b600960009054906101000a900460ff1681565b6000611037826121d8565b600001519050919050565b6008805461104f90613e84565b80601f016020809104026020016040519081016040528092919081815260200182805461107b90613e84565b80156110c85780601f1061109d576101008083540402835291602001916110c8565b820191906000526020600020905b8154815290600101906020018083116110ab57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611138906138f6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111c1611b6a565b73ffffffffffffffffffffffffffffffffffffffff166111df611241565b73ffffffffffffffffffffffffffffffffffffffff1614611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90613956565b60405180910390fd5b61123f6000612333565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461127a90613e84565b80601f01602080910402602001604051908101604052809291908181526020018280546112a690613e84565b80156112f35780601f106112c8576101008083540402835291602001916112f3565b820191906000526020600020905b8154815290600101906020018083116112d657829003601f168201915b5050505050905090565b600081565b600061130c611b6a565b9050600960009054906101000a900460ff161561135e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611355906137d6565b60405180910390fd5b81611367610bbb565b6113719190613c61565b61030a10156113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac906138d6565b60405180910390fd5b600082116113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90613836565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90613af6565b60405180910390fd5b600482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114b39190613c61565b11156114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90613ab6565b60405180910390fd5b8160021015611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90613856565b60405180910390fd5b346000836115469190613ce8565b14611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906139b6565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115d59190613c61565b925050819055506115e681836123f9565b5050565b6115f2611b6a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790613976565b60405180910390fd5b806006600061166d611b6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661171a611b6a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175f9190613779565b60405180910390a35050565b611776848484611c31565b61178284848484612417565b6117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890613a16565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061180b82611b72565b61184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190613916565b60405180910390fd5b60006008805461185990613e84565b90501161187557604051806020016040528060008152506118d8565b6008611880836125ae565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016118c8939291906136cc565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119619190613712565b60206040518083038186803b15801561197957600080fd5b505afa15801561198d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b19190613106565b73ffffffffffffffffffffffffffffffffffffffff1614156119d75760019150506119e5565b6119e1848461270f565b9150505b92915050565b6119f3611b6a565b73ffffffffffffffffffffffffffffffffffffffff16611a11611241565b73ffffffffffffffffffffffffffffffffffffffff1614611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90613956565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906137f6565b60405180910390fd5b611ae081612333565b50565b600281565b600a6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c3c826121d8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c63611b6a565b73ffffffffffffffffffffffffffffffffffffffff161480611cbf5750611c88611b6a565b73ffffffffffffffffffffffffffffffffffffffff16611ca784610a18565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cdb5750611cda8260000151611cd5611b6a565b6118f7565b5b905080611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490613996565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8690613936565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df690613896565b60405180910390fd5b611e0c85858560016127a3565b611e1c6000848460000151611b7f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120229190613c61565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121685761209881611b72565b15612167576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121d086868660016127a9565b505050505050565b6121e0612d07565b6121e982611b72565b612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90613816565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231a57809250505061232e565b50808061232690613e5a565b91505061222e565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124138282604051806020016040528060008152506127af565b5050565b60006124388473ffffffffffffffffffffffffffffffffffffffff16612c6e565b156125a1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612461611b6a565b8786866040518563ffffffff1660e01b8152600401612483949392919061372d565b602060405180830381600087803b15801561249d57600080fd5b505af19250505080156124ce57506040513d601f19601f820116820180604052508101906124cb91906130d9565b60015b612551573d80600081146124fe576040519150601f19603f3d011682016040523d82523d6000602084013e612503565b606091505b50600081511415612549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254090613a16565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125a6565b600190505b949350505050565b606060008214156125f6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270a565b600082905060005b6000821461262857808061261190613ee7565b915050600a826126219190613cb7565b91506125fe565b60008167ffffffffffffffff8111156126445761264361401d565b5b6040519080825280601f01601f1916602001820160405280156126765781602001600182028036833780820191505090505b5090505b600085146127035760018261268f9190613d42565b9150600a8561269e9190613f30565b60306126aa9190613c61565b60f81b8183815181106126c0576126bf613fee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126fc9190613cb7565b945061267a565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281c90613a56565b60405180910390fd5b61282e81611b72565b1561286e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286590613a36565b60405180910390fd5b600083116128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a8906139f6565b60405180910390fd5b6128be60008583866127a3565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129bb9190613c1b565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129e29190613c1b565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c5157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bf16000888488612417565b612c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2790613a16565b60405180910390fd5b8180612c3b90613ee7565b9250508080612c4990613ee7565b915050612b80565b5080600081905550612c6660008785886127a9565b505050505050565b600080823b905060008111915050919050565b828054612c8d90613e84565b90600052602060002090601f016020900481019282612caf5760008555612cf6565b82601f10612cc857805160ff1916838001178555612cf6565b82800160010185558215612cf6579182015b82811115612cf5578251825591602001919060010190612cda565b5b509050612d039190612d41565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d5a576000816000905550600101612d42565b5090565b6000612d71612d6c84613b56565b613b31565b905082815260208101848484011115612d8d57612d8c614051565b5b612d98848285613e18565b509392505050565b6000612db3612dae84613b87565b613b31565b905082815260208101848484011115612dcf57612dce614051565b5b612dda848285613e18565b509392505050565b600081359050612df181614701565b92915050565b600081359050612e0681614718565b92915050565b600081359050612e1b8161472f565b92915050565b600081519050612e308161472f565b92915050565b600082601f830112612e4b57612e4a61404c565b5b8135612e5b848260208601612d5e565b91505092915050565b600081519050612e7381614746565b92915050565b600082601f830112612e8e57612e8d61404c565b5b8135612e9e848260208601612da0565b91505092915050565b600081359050612eb68161475d565b92915050565b600060208284031215612ed257612ed161405b565b5b6000612ee084828501612de2565b91505092915050565b60008060408385031215612f0057612eff61405b565b5b6000612f0e85828601612de2565b9250506020612f1f85828601612de2565b9150509250929050565b600080600060608486031215612f4257612f4161405b565b5b6000612f5086828701612de2565b9350506020612f6186828701612de2565b9250506040612f7286828701612ea7565b9150509250925092565b60008060008060808587031215612f9657612f9561405b565b5b6000612fa487828801612de2565b9450506020612fb587828801612de2565b9350506040612fc687828801612ea7565b925050606085013567ffffffffffffffff811115612fe757612fe6614056565b5b612ff387828801612e36565b91505092959194509250565b600080604083850312156130165761301561405b565b5b600061302485828601612de2565b925050602061303585828601612df7565b9150509250929050565b600080604083850312156130565761305561405b565b5b600061306485828601612de2565b925050602061307585828601612ea7565b9150509250929050565b6000602082840312156130955761309461405b565b5b60006130a384828501612df7565b91505092915050565b6000602082840312156130c2576130c161405b565b5b60006130d084828501612e0c565b91505092915050565b6000602082840312156130ef576130ee61405b565b5b60006130fd84828501612e21565b91505092915050565b60006020828403121561311c5761311b61405b565b5b600061312a84828501612e64565b91505092915050565b6000602082840312156131495761314861405b565b5b600082013567ffffffffffffffff81111561316757613166614056565b5b61317384828501612e79565b91505092915050565b6000602082840312156131925761319161405b565b5b60006131a084828501612ea7565b91505092915050565b6131b281613d76565b82525050565b6131c181613d88565b82525050565b60006131d282613bcd565b6131dc8185613be3565b93506131ec818560208601613e27565b6131f581614060565b840191505092915050565b600061320b82613bd8565b6132158185613bff565b9350613225818560208601613e27565b61322e81614060565b840191505092915050565b600061324482613bd8565b61324e8185613c10565b935061325e818560208601613e27565b80840191505092915050565b6000815461327781613e84565b6132818186613c10565b9450600182166000811461329c57600181146132ad576132e0565b60ff198316865281860193506132e0565b6132b685613bb8565b60005b838110156132d8578154818901526001820191506020810190506132b9565b838801955050505b50505092915050565b60006132f6602283613bff565b915061330182614071565b604082019050919050565b6000613319600683613bff565b9150613324826140c0565b602082019050919050565b600061333c602683613bff565b9150613347826140e9565b604082019050919050565b600061335f602a83613bff565b915061336a82614138565b604082019050919050565b6000613382600a83613bff565b915061338d82614187565b602082019050919050565b60006133a5601683613bff565b91506133b0826141b0565b602082019050919050565b60006133c8602383613bff565b91506133d3826141d9565b604082019050919050565b60006133eb602583613bff565b91506133f682614228565b604082019050919050565b600061340e603983613bff565b915061341982614277565b604082019050919050565b6000613431601283613bff565b915061343c826142c6565b602082019050919050565b6000613454602b83613bff565b915061345f826142ef565b604082019050919050565b6000613477601583613bff565b91506134828261433e565b602082019050919050565b600061349a602683613bff565b91506134a582614367565b604082019050919050565b60006134bd602083613bff565b91506134c8826143b6565b602082019050919050565b60006134e0601a83613bff565b91506134eb826143df565b602082019050919050565b6000613503603283613bff565b915061350e82614408565b604082019050919050565b6000613526601683613bff565b915061353182614457565b602082019050919050565b6000613549602283613bff565b915061355482614480565b604082019050919050565b600061356c600083613bf4565b9150613577826144cf565b600082019050919050565b600061358f602383613bff565b915061359a826144d2565b604082019050919050565b60006135b2603383613bff565b91506135bd82614521565b604082019050919050565b60006135d5601d83613bff565b91506135e082614570565b602082019050919050565b60006135f8602183613bff565b915061360382614599565b604082019050919050565b600061361b600e83613bff565b9150613626826145e8565b602082019050919050565b600061363e602e83613bff565b915061364982614611565b604082019050919050565b6000613661601683613bff565b915061366c82614660565b602082019050919050565b6000613684602d83613bff565b915061368f82614689565b604082019050919050565b60006136a7600c83613bff565b91506136b2826146d8565b602082019050919050565b6136c681613e0e565b82525050565b60006136d8828661326a565b91506136e48285613239565b91506136f08284613239565b9150819050949350505050565b60006137088261355f565b9150819050919050565b600060208201905061372760008301846131a9565b92915050565b600060808201905061374260008301876131a9565b61374f60208301866131a9565b61375c60408301856136bd565b818103606083015261376e81846131c7565b905095945050505050565b600060208201905061378e60008301846131b8565b92915050565b600060208201905081810360008301526137ae8184613200565b905092915050565b600060208201905081810360008301526137cf816132e9565b9050919050565b600060208201905081810360008301526137ef8161330c565b9050919050565b6000602082019050818103600083015261380f8161332f565b9050919050565b6000602082019050818103600083015261382f81613352565b9050919050565b6000602082019050818103600083015261384f81613375565b9050919050565b6000602082019050818103600083015261386f81613398565b9050919050565b6000602082019050818103600083015261388f816133bb565b9050919050565b600060208201905081810360008301526138af816133de565b9050919050565b600060208201905081810360008301526138cf81613401565b9050919050565b600060208201905081810360008301526138ef81613424565b9050919050565b6000602082019050818103600083015261390f81613447565b9050919050565b6000602082019050818103600083015261392f8161346a565b9050919050565b6000602082019050818103600083015261394f8161348d565b9050919050565b6000602082019050818103600083015261396f816134b0565b9050919050565b6000602082019050818103600083015261398f816134d3565b9050919050565b600060208201905081810360008301526139af816134f6565b9050919050565b600060208201905081810360008301526139cf81613519565b9050919050565b600060208201905081810360008301526139ef8161353c565b9050919050565b60006020820190508181036000830152613a0f81613582565b9050919050565b60006020820190508181036000830152613a2f816135a5565b9050919050565b60006020820190508181036000830152613a4f816135c8565b9050919050565b60006020820190508181036000830152613a6f816135eb565b9050919050565b60006020820190508181036000830152613a8f8161360e565b9050919050565b60006020820190508181036000830152613aaf81613631565b9050919050565b60006020820190508181036000830152613acf81613654565b9050919050565b60006020820190508181036000830152613aef81613677565b9050919050565b60006020820190508181036000830152613b0f8161369a565b9050919050565b6000602082019050613b2b60008301846136bd565b92915050565b6000613b3b613b4c565b9050613b478282613eb6565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7157613b7061401d565b5b613b7a82614060565b9050602081019050919050565b600067ffffffffffffffff821115613ba257613ba161401d565b5b613bab82614060565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c2682613dd2565b9150613c3183613dd2565b9250826fffffffffffffffffffffffffffffffff03821115613c5657613c55613f61565b5b828201905092915050565b6000613c6c82613e0e565b9150613c7783613e0e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cac57613cab613f61565b5b828201905092915050565b6000613cc282613e0e565b9150613ccd83613e0e565b925082613cdd57613cdc613f90565b5b828204905092915050565b6000613cf382613e0e565b9150613cfe83613e0e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d3757613d36613f61565b5b828202905092915050565b6000613d4d82613e0e565b9150613d5883613e0e565b925082821015613d6b57613d6a613f61565b5b828203905092915050565b6000613d8182613dee565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dcb82613d76565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e45578082015181840152602081019050613e2a565b83811115613e54576000848401525b50505050565b6000613e6582613e0e565b91506000821415613e7957613e78613f61565b5b600182039050919050565b60006002820490506001821680613e9c57607f821691505b60208210811415613eb057613eaf613fbf565b5b50919050565b613ebf82614060565b810181811067ffffffffffffffff82111715613ede57613edd61401d565b5b80604052505050565b6000613ef282613e0e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2557613f24613f61565b5b600182019050919050565b6000613f3b82613e0e565b9150613f4683613e0e565b925082613f5657613f55613f90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61470a81613d76565b811461471557600080fd5b50565b61472181613d88565b811461472c57600080fd5b50565b61473881613d94565b811461474357600080fd5b50565b61474f81613dc0565b811461475a57600080fd5b50565b61476681613e0e565b811461477157600080fd5b5056fea264697066735822122095cbfdec186ef5c286404c439d28626b13ba02caa59386597cacae5a90f225a864736f6c63430008070033697066733a2f2f516d6478756a795a7655653554326947374e6a4b393341327748635848696b37796e4a7455375875516d394a70622f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146106d5578063f2fde38b14610712578063f43a22dc1461073b578063fa30297e14610766576101e3565b8063b88d4fde14610619578063c668286214610642578063c87b56dd1461066d578063cd7c0326146106aa576101e3565b806395d89b41116100d157806395d89b411461057e578063a035b1fe146105a9578063a0712d68146105d4578063a22cb465146105f0576101e3565b80636c0360eb146104d457806370a08231146104ff578063715018a61461053c5780638da5cb5b14610553576101e3565b80632f745c591161017a5780634f6ccce7116101495780634f6ccce71461040657806355f804b3146104435780635c975abb1461046c5780636352211e14610497576101e3565b80632f745c591461035e57806332cb6b0c1461039b5780633ccfd60b146103c657806342842e0e146103dd576101e3565b8063095ea7b3116101b6578063095ea7b3146102b65780630f2cdd6c146102df57806318160ddd1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906130ac565b6107a3565b60405161021c9190613779565b60405180910390f35b34801561023157600080fd5b5061024c6004803603810190610247919061307f565b6108ed565b005b34801561025a57600080fd5b50610263610986565b6040516102709190613794565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b919061317c565b610a18565b6040516102ad9190613712565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d8919061303f565b610a9d565b005b3480156102eb57600080fd5b506102f4610bb6565b6040516103019190613b16565b60405180910390f35b34801561031657600080fd5b5061031f610bbb565b60405161032c9190613b16565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612f29565b610bc4565b005b34801561036a57600080fd5b506103856004803603810190610380919061303f565b610bd4565b6040516103929190613b16565b60405180910390f35b3480156103a757600080fd5b506103b0610dd2565b6040516103bd9190613b16565b60405180910390f35b3480156103d257600080fd5b506103db610dd8565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190612f29565b610f10565b005b34801561041257600080fd5b5061042d6004803603810190610428919061317c565b610f30565b60405161043a9190613b16565b60405180910390f35b34801561044f57600080fd5b5061046a60048036038101906104659190613133565b610f83565b005b34801561047857600080fd5b50610481611019565b60405161048e9190613779565b60405180910390f35b3480156104a357600080fd5b506104be60048036038101906104b9919061317c565b61102c565b6040516104cb9190613712565b60405180910390f35b3480156104e057600080fd5b506104e9611042565b6040516104f69190613794565b60405180910390f35b34801561050b57600080fd5b5061052660048036038101906105219190612ebc565b6110d0565b6040516105339190613b16565b60405180910390f35b34801561054857600080fd5b506105516111b9565b005b34801561055f57600080fd5b50610568611241565b6040516105759190613712565b60405180910390f35b34801561058a57600080fd5b5061059361126b565b6040516105a09190613794565b60405180910390f35b3480156105b557600080fd5b506105be6112fd565b6040516105cb9190613b16565b60405180910390f35b6105ee60048036038101906105e9919061317c565b611302565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612fff565b6115ea565b005b34801561062557600080fd5b50610640600480360381019061063b9190612f7c565b61176b565b005b34801561064e57600080fd5b506106576117c7565b6040516106649190613794565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f919061317c565b611800565b6040516106a19190613794565b60405180910390f35b3480156106b657600080fd5b506106bf6118df565b6040516106cc9190613712565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190612ee9565b6118f7565b6040516107099190613779565b60405180910390f35b34801561071e57600080fd5b5061073960048036038101906107349190612ebc565b6119eb565b005b34801561074757600080fd5b50610750611ae3565b60405161075d9190613b16565b60405180910390f35b34801561077257600080fd5b5061078d60048036038101906107889190612ebc565b611ae8565b60405161079a9190613b16565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e657506108e582611b00565b5b9050919050565b6108f5611b6a565b73ffffffffffffffffffffffffffffffffffffffff16610913611241565b73ffffffffffffffffffffffffffffffffffffffff1614610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090613956565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b60606001805461099590613e84565b80601f01602080910402602001604051908101604052809291908181526020018280546109c190613e84565b8015610a0e5780601f106109e357610100808354040283529160200191610a0e565b820191906000526020600020905b8154815290600101906020018083116109f157829003601f168201915b5050505050905090565b6000610a2382611b72565b610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990613ad6565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa88261102c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b10906139d6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b38611b6a565b73ffffffffffffffffffffffffffffffffffffffff161480610b675750610b6681610b61611b6a565b6118f7565b5b610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906138b6565b60405180910390fd5b610bb1838383611b7f565b505050565b600481565b60008054905090565b610bcf838383611c31565b505050565b6000610bdf836110d0565b8210610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c17906137b6565b60405180910390fd5b6000610c2a610bbb565b905060008060005b83811015610d90576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d2457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d7c5786841415610d6d578195505050505050610dcc565b8380610d7890613ee7565b9450505b508080610d8890613ee7565b915050610c32565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390613a96565b60405180910390fd5b92915050565b61030a81565b610de0611b6a565b73ffffffffffffffffffffffffffffffffffffffff16610dfe611241565b73ffffffffffffffffffffffffffffffffffffffff1614610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613956565b60405180910390fd5b60004790506000610e63611b6a565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e86906136fd565b60006040518083038185875af1925050503d8060008114610ec3576040519150601f19603f3d011682016040523d82523d6000602084013e610ec8565b606091505b5050905080610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0390613a76565b60405180910390fd5b5050565b610f2b8383836040518060200160405280600081525061176b565b505050565b6000610f3a610bbb565b8210610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613876565b60405180910390fd5b819050919050565b610f8b611b6a565b73ffffffffffffffffffffffffffffffffffffffff16610fa9611241565b73ffffffffffffffffffffffffffffffffffffffff1614610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690613956565b60405180910390fd5b8060089080519060200190611015929190612c81565b5050565b600960009054906101000a900460ff1681565b6000611037826121d8565b600001519050919050565b6008805461104f90613e84565b80601f016020809104026020016040519081016040528092919081815260200182805461107b90613e84565b80156110c85780601f1061109d576101008083540402835291602001916110c8565b820191906000526020600020905b8154815290600101906020018083116110ab57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611141576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611138906138f6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111c1611b6a565b73ffffffffffffffffffffffffffffffffffffffff166111df611241565b73ffffffffffffffffffffffffffffffffffffffff1614611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c90613956565b60405180910390fd5b61123f6000612333565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461127a90613e84565b80601f01602080910402602001604051908101604052809291908181526020018280546112a690613e84565b80156112f35780601f106112c8576101008083540402835291602001916112f3565b820191906000526020600020905b8154815290600101906020018083116112d657829003601f168201915b5050505050905090565b600081565b600061130c611b6a565b9050600960009054906101000a900460ff161561135e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611355906137d6565b60405180910390fd5b81611367610bbb565b6113719190613c61565b61030a10156113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac906138d6565b60405180910390fd5b600082116113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90613836565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145d90613af6565b60405180910390fd5b600482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114b39190613c61565b11156114f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114eb90613ab6565b60405180910390fd5b8160021015611538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152f90613856565b60405180910390fd5b346000836115469190613ce8565b14611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906139b6565b60405180910390fd5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115d59190613c61565b925050819055506115e681836123f9565b5050565b6115f2611b6a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165790613976565b60405180910390fd5b806006600061166d611b6a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661171a611b6a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175f9190613779565b60405180910390a35050565b611776848484611c31565b61178284848484612417565b6117c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b890613a16565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061180b82611b72565b61184a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184190613916565b60405180910390fd5b60006008805461185990613e84565b90501161187557604051806020016040528060008152506118d8565b6008611880836125ae565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016118c8939291906136cc565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119619190613712565b60206040518083038186803b15801561197957600080fd5b505afa15801561198d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b19190613106565b73ffffffffffffffffffffffffffffffffffffffff1614156119d75760019150506119e5565b6119e1848461270f565b9150505b92915050565b6119f3611b6a565b73ffffffffffffffffffffffffffffffffffffffff16611a11611241565b73ffffffffffffffffffffffffffffffffffffffff1614611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90613956565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906137f6565b60405180910390fd5b611ae081612333565b50565b600281565b600a6020528060005260406000206000915090505481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c3c826121d8565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611c63611b6a565b73ffffffffffffffffffffffffffffffffffffffff161480611cbf5750611c88611b6a565b73ffffffffffffffffffffffffffffffffffffffff16611ca784610a18565b73ffffffffffffffffffffffffffffffffffffffff16145b80611cdb5750611cda8260000151611cd5611b6a565b6118f7565b5b905080611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1490613996565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8690613936565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df690613896565b60405180910390fd5b611e0c85858560016127a3565b611e1c6000848460000151611b7f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846120229190613c61565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121685761209881611b72565b15612167576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121d086868660016127a9565b505050505050565b6121e0612d07565b6121e982611b72565b612228576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221f90613816565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461231a57809250505061232e565b50808061232690613e5a565b91505061222e565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124138282604051806020016040528060008152506127af565b5050565b60006124388473ffffffffffffffffffffffffffffffffffffffff16612c6e565b156125a1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612461611b6a565b8786866040518563ffffffff1660e01b8152600401612483949392919061372d565b602060405180830381600087803b15801561249d57600080fd5b505af19250505080156124ce57506040513d601f19601f820116820180604052508101906124cb91906130d9565b60015b612551573d80600081146124fe576040519150601f19603f3d011682016040523d82523d6000602084013e612503565b606091505b50600081511415612549576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254090613a16565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125a6565b600190505b949350505050565b606060008214156125f6576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061270a565b600082905060005b6000821461262857808061261190613ee7565b915050600a826126219190613cb7565b91506125fe565b60008167ffffffffffffffff8111156126445761264361401d565b5b6040519080825280601f01601f1916602001820160405280156126765781602001600182028036833780820191505090505b5090505b600085146127035760018261268f9190613d42565b9150600a8561269e9190613f30565b60306126aa9190613c61565b60f81b8183815181106126c0576126bf613fee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126fc9190613cb7565b945061267a565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281c90613a56565b60405180910390fd5b61282e81611b72565b1561286e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286590613a36565b60405180910390fd5b600083116128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a8906139f6565b60405180910390fd5b6128be60008583866127a3565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129bb9190613c1b565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129e29190613c1b565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612c5157818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bf16000888488612417565b612c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2790613a16565b60405180910390fd5b8180612c3b90613ee7565b9250508080612c4990613ee7565b915050612b80565b5080600081905550612c6660008785886127a9565b505050505050565b600080823b905060008111915050919050565b828054612c8d90613e84565b90600052602060002090601f016020900481019282612caf5760008555612cf6565b82601f10612cc857805160ff1916838001178555612cf6565b82800160010185558215612cf6579182015b82811115612cf5578251825591602001919060010190612cda565b5b509050612d039190612d41565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612d5a576000816000905550600101612d42565b5090565b6000612d71612d6c84613b56565b613b31565b905082815260208101848484011115612d8d57612d8c614051565b5b612d98848285613e18565b509392505050565b6000612db3612dae84613b87565b613b31565b905082815260208101848484011115612dcf57612dce614051565b5b612dda848285613e18565b509392505050565b600081359050612df181614701565b92915050565b600081359050612e0681614718565b92915050565b600081359050612e1b8161472f565b92915050565b600081519050612e308161472f565b92915050565b600082601f830112612e4b57612e4a61404c565b5b8135612e5b848260208601612d5e565b91505092915050565b600081519050612e7381614746565b92915050565b600082601f830112612e8e57612e8d61404c565b5b8135612e9e848260208601612da0565b91505092915050565b600081359050612eb68161475d565b92915050565b600060208284031215612ed257612ed161405b565b5b6000612ee084828501612de2565b91505092915050565b60008060408385031215612f0057612eff61405b565b5b6000612f0e85828601612de2565b9250506020612f1f85828601612de2565b9150509250929050565b600080600060608486031215612f4257612f4161405b565b5b6000612f5086828701612de2565b9350506020612f6186828701612de2565b9250506040612f7286828701612ea7565b9150509250925092565b60008060008060808587031215612f9657612f9561405b565b5b6000612fa487828801612de2565b9450506020612fb587828801612de2565b9350506040612fc687828801612ea7565b925050606085013567ffffffffffffffff811115612fe757612fe6614056565b5b612ff387828801612e36565b91505092959194509250565b600080604083850312156130165761301561405b565b5b600061302485828601612de2565b925050602061303585828601612df7565b9150509250929050565b600080604083850312156130565761305561405b565b5b600061306485828601612de2565b925050602061307585828601612ea7565b9150509250929050565b6000602082840312156130955761309461405b565b5b60006130a384828501612df7565b91505092915050565b6000602082840312156130c2576130c161405b565b5b60006130d084828501612e0c565b91505092915050565b6000602082840312156130ef576130ee61405b565b5b60006130fd84828501612e21565b91505092915050565b60006020828403121561311c5761311b61405b565b5b600061312a84828501612e64565b91505092915050565b6000602082840312156131495761314861405b565b5b600082013567ffffffffffffffff81111561316757613166614056565b5b61317384828501612e79565b91505092915050565b6000602082840312156131925761319161405b565b5b60006131a084828501612ea7565b91505092915050565b6131b281613d76565b82525050565b6131c181613d88565b82525050565b60006131d282613bcd565b6131dc8185613be3565b93506131ec818560208601613e27565b6131f581614060565b840191505092915050565b600061320b82613bd8565b6132158185613bff565b9350613225818560208601613e27565b61322e81614060565b840191505092915050565b600061324482613bd8565b61324e8185613c10565b935061325e818560208601613e27565b80840191505092915050565b6000815461327781613e84565b6132818186613c10565b9450600182166000811461329c57600181146132ad576132e0565b60ff198316865281860193506132e0565b6132b685613bb8565b60005b838110156132d8578154818901526001820191506020810190506132b9565b838801955050505b50505092915050565b60006132f6602283613bff565b915061330182614071565b604082019050919050565b6000613319600683613bff565b9150613324826140c0565b602082019050919050565b600061333c602683613bff565b9150613347826140e9565b604082019050919050565b600061335f602a83613bff565b915061336a82614138565b604082019050919050565b6000613382600a83613bff565b915061338d82614187565b602082019050919050565b60006133a5601683613bff565b91506133b0826141b0565b602082019050919050565b60006133c8602383613bff565b91506133d3826141d9565b604082019050919050565b60006133eb602583613bff565b91506133f682614228565b604082019050919050565b600061340e603983613bff565b915061341982614277565b604082019050919050565b6000613431601283613bff565b915061343c826142c6565b602082019050919050565b6000613454602b83613bff565b915061345f826142ef565b604082019050919050565b6000613477601583613bff565b91506134828261433e565b602082019050919050565b600061349a602683613bff565b91506134a582614367565b604082019050919050565b60006134bd602083613bff565b91506134c8826143b6565b602082019050919050565b60006134e0601a83613bff565b91506134eb826143df565b602082019050919050565b6000613503603283613bff565b915061350e82614408565b604082019050919050565b6000613526601683613bff565b915061353182614457565b602082019050919050565b6000613549602283613bff565b915061355482614480565b604082019050919050565b600061356c600083613bf4565b9150613577826144cf565b600082019050919050565b600061358f602383613bff565b915061359a826144d2565b604082019050919050565b60006135b2603383613bff565b91506135bd82614521565b604082019050919050565b60006135d5601d83613bff565b91506135e082614570565b602082019050919050565b60006135f8602183613bff565b915061360382614599565b604082019050919050565b600061361b600e83613bff565b9150613626826145e8565b602082019050919050565b600061363e602e83613bff565b915061364982614611565b604082019050919050565b6000613661601683613bff565b915061366c82614660565b602082019050919050565b6000613684602d83613bff565b915061368f82614689565b604082019050919050565b60006136a7600c83613bff565b91506136b2826146d8565b602082019050919050565b6136c681613e0e565b82525050565b60006136d8828661326a565b91506136e48285613239565b91506136f08284613239565b9150819050949350505050565b60006137088261355f565b9150819050919050565b600060208201905061372760008301846131a9565b92915050565b600060808201905061374260008301876131a9565b61374f60208301866131a9565b61375c60408301856136bd565b818103606083015261376e81846131c7565b905095945050505050565b600060208201905061378e60008301846131b8565b92915050565b600060208201905081810360008301526137ae8184613200565b905092915050565b600060208201905081810360008301526137cf816132e9565b9050919050565b600060208201905081810360008301526137ef8161330c565b9050919050565b6000602082019050818103600083015261380f8161332f565b9050919050565b6000602082019050818103600083015261382f81613352565b9050919050565b6000602082019050818103600083015261384f81613375565b9050919050565b6000602082019050818103600083015261386f81613398565b9050919050565b6000602082019050818103600083015261388f816133bb565b9050919050565b600060208201905081810360008301526138af816133de565b9050919050565b600060208201905081810360008301526138cf81613401565b9050919050565b600060208201905081810360008301526138ef81613424565b9050919050565b6000602082019050818103600083015261390f81613447565b9050919050565b6000602082019050818103600083015261392f8161346a565b9050919050565b6000602082019050818103600083015261394f8161348d565b9050919050565b6000602082019050818103600083015261396f816134b0565b9050919050565b6000602082019050818103600083015261398f816134d3565b9050919050565b600060208201905081810360008301526139af816134f6565b9050919050565b600060208201905081810360008301526139cf81613519565b9050919050565b600060208201905081810360008301526139ef8161353c565b9050919050565b60006020820190508181036000830152613a0f81613582565b9050919050565b60006020820190508181036000830152613a2f816135a5565b9050919050565b60006020820190508181036000830152613a4f816135c8565b9050919050565b60006020820190508181036000830152613a6f816135eb565b9050919050565b60006020820190508181036000830152613a8f8161360e565b9050919050565b60006020820190508181036000830152613aaf81613631565b9050919050565b60006020820190508181036000830152613acf81613654565b9050919050565b60006020820190508181036000830152613aef81613677565b9050919050565b60006020820190508181036000830152613b0f8161369a565b9050919050565b6000602082019050613b2b60008301846136bd565b92915050565b6000613b3b613b4c565b9050613b478282613eb6565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7157613b7061401d565b5b613b7a82614060565b9050602081019050919050565b600067ffffffffffffffff821115613ba257613ba161401d565b5b613bab82614060565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c2682613dd2565b9150613c3183613dd2565b9250826fffffffffffffffffffffffffffffffff03821115613c5657613c55613f61565b5b828201905092915050565b6000613c6c82613e0e565b9150613c7783613e0e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613cac57613cab613f61565b5b828201905092915050565b6000613cc282613e0e565b9150613ccd83613e0e565b925082613cdd57613cdc613f90565b5b828204905092915050565b6000613cf382613e0e565b9150613cfe83613e0e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d3757613d36613f61565b5b828202905092915050565b6000613d4d82613e0e565b9150613d5883613e0e565b925082821015613d6b57613d6a613f61565b5b828203905092915050565b6000613d8182613dee565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dcb82613d76565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e45578082015181840152602081019050613e2a565b83811115613e54576000848401525b50505050565b6000613e6582613e0e565b91506000821415613e7957613e78613f61565b5b600182039050919050565b60006002820490506001821680613e9c57607f821691505b60208210811415613eb057613eaf613fbf565b5b50919050565b613ebf82614060565b810181811067ffffffffffffffff82111715613ede57613edd61401d565b5b80604052505050565b6000613ef282613e0e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2557613f24613f61565b5b600182019050919050565b6000613f3b82613e0e565b9150613f4683613e0e565b925082613f5657613f55613f90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722077616c6c657400000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b61470a81613d76565b811461471557600080fd5b50565b61472181613d88565b811461472c57600080fd5b50565b61473881613d94565b811461474357600080fd5b50565b61474f81613dc0565b811461475a57600080fd5b50565b61476681613e0e565b811461477157600080fd5b5056fea264697066735822122095cbfdec186ef5c286404c439d28626b13ba02caa59386597cacae5a90f225a864736f6c63430008070033

Deployed Bytecode Sourcemap

38991:2506:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27003:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40935:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28630:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30191:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29712:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39322:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25444:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31067:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26108:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39371:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40718:209;;;;;;;;;;;;;:::i;:::-;;31300:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25621:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41024:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39469:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28439:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39039:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27439:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2982:103;;;;;;;;;;;;;:::i;:::-;;2331:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28799:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39418:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39616:641;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30477:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31548:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39126:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41132:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39179:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40265:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3240:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39277:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39503:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27003:372;27105:4;27157:25;27142:40;;;:11;:40;;;;:105;;;;27214:33;27199:48;;;:11;:48;;;;27142:105;:172;;;;27279:35;27264:50;;;:11;:50;;;;27142:172;:225;;;;27331:36;27355:11;27331:23;:36::i;:::-;27142:225;27122:245;;27003:372;;;:::o;40935:81::-;2562:12;:10;:12::i;:::-;2551:23;;:7;:5;:7::i;:::-;:23;;;2543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41002:6:::1;40993;;:15;;;;;;;;;;;;;;;;;;40935:81:::0;:::o;28630:100::-;28684:13;28717:5;28710:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28630:100;:::o;30191:214::-;30259:7;30287:16;30295:7;30287;:16::i;:::-;30279:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30373:15;:24;30389:7;30373:24;;;;;;;;;;;;;;;;;;;;;30366:31;;30191:214;;;:::o;29712:413::-;29785:13;29801:24;29817:7;29801:15;:24::i;:::-;29785:40;;29850:5;29844:11;;:2;:11;;;;29836:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29945:5;29929:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29954:37;29971:5;29978:12;:10;:12::i;:::-;29954:16;:37::i;:::-;29929:62;29907:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;30089:28;30098:2;30102:7;30111:5;30089:8;:28::i;:::-;29774:351;29712:413;;:::o;39322:42::-;39363:1;39322:42;:::o;25444:100::-;25497:7;25524:12;;25517:19;;25444:100;:::o;31067:162::-;31193:28;31203:4;31209:2;31213:7;31193:9;:28::i;:::-;31067:162;;;:::o;26108:823::-;26197:7;26233:16;26243:5;26233:9;:16::i;:::-;26225:5;:24;26217:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26299:22;26324:13;:11;:13::i;:::-;26299:38;;26348:19;26382:25;26436:9;26431:426;26455:14;26451:1;:18;26431:426;;;26491:31;26525:11;:14;26537:1;26525:14;;;;;;;;;;;26491:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26584:1;26558:28;;:9;:14;;;:28;;;26554:103;;26627:9;:14;;;26607:34;;26554:103;26696:5;26675:26;;:17;:26;;;26671:175;;;26741:5;26726:11;:20;26722:77;;;26778:1;26771:8;;;;;;;;;26722:77;26817:13;;;;;:::i;:::-;;;;26671:175;26476:381;26471:3;;;;;:::i;:::-;;;;26431:426;;;;26867:56;;;;;;;;;;:::i;:::-;;;;;;;;26108:823;;;;;:::o;39371:40::-;39408:3;39371:40;:::o;40718:209::-;2562:12;:10;:12::i;:::-;2551:23;;:7;:5;:7::i;:::-;:23;;;2543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40768:15:::1;40786:21;40768:39;;40819:12;40837;:10;:12::i;:::-;:17;;40862:7;40837:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40818:56;;;40893:7;40885:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;40757:170;;40718:209::o:0;31300:177::-;31430:39;31447:4;31453:2;31457:7;31430:39;;;;;;;;;;;;:16;:39::i;:::-;31300:177;;;:::o;25621:187::-;25688:7;25724:13;:11;:13::i;:::-;25716:5;:21;25708:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;25795:5;25788:12;;25621:187;;;:::o;41024:100::-;2562:12;:10;:12::i;:::-;2551:23;;:7;:5;:7::i;:::-;:23;;;2543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41108:8:::1;41098:7;:18;;;;;;;;;;;;:::i;:::-;;41024:100:::0;:::o;39469:25::-;;;;;;;;;;;;;:::o;28439:124::-;28503:7;28530:20;28542:7;28530:11;:20::i;:::-;:25;;;28523:32;;28439:124;;;:::o;39039:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27439:221::-;27503:7;27548:1;27531:19;;:5;:19;;;;27523:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27624:12;:19;27637:5;27624:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27616:36;;27609:43;;27439:221;;;:::o;2982:103::-;2562:12;:10;:12::i;:::-;2551:23;;:7;:5;:7::i;:::-;:23;;;2543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3047:30:::1;3074:1;3047:18;:30::i;:::-;2982:103::o:0;2331:87::-;2377:7;2404:6;;;;;;;;;;;2397:13;;2331:87;:::o;28799:104::-;28855:13;28888:7;28881:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28799:104;:::o;39418:42::-;39450:10;39418:42;:::o;39616:641::-;39675:15;39693:12;:10;:12::i;:::-;39675:30;;39725:6;;;;;;;;;;;39724:7;39716:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;39791:7;39775:13;:11;:13::i;:::-;:23;;;;:::i;:::-;39408:3;39761:37;;39753:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39850:1;39840:7;:11;39832:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;39898:7;39885:20;;:9;:20;;;39877:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;39363:1;39969:7;39941:13;:25;39955:10;39941:25;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:53;;39933:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;40054:7;39314:1;40040:21;;40032:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40127:9;39450:10;40108:7;:15;;;;:::i;:::-;:28;40100:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40204:7;40175:13;:25;40189:10;40175:25;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;40222:27;40232:7;40241;40222:9;:27::i;:::-;39664:593;39616:641;:::o;30477:288::-;30584:12;:10;:12::i;:::-;30572:24;;:8;:24;;;;30564:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30685:8;30640:18;:32;30659:12;:10;:12::i;:::-;30640:32;;;;;;;;;;;;;;;:42;30673:8;30640:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30738:8;30709:48;;30724:12;:10;:12::i;:::-;30709:48;;;30748:8;30709:48;;;;;;:::i;:::-;;;;;;;;30477:288;;:::o;31548:355::-;31707:28;31717:4;31723:2;31727:7;31707:9;:28::i;:::-;31768:48;31791:4;31797:2;31801:7;31810:5;31768:22;:48::i;:::-;31746:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;31548:355;;;;:::o;39126:46::-;;;;;;;;;;;;;;;;;;;:::o;41132:362::-;41198:13;41232:17;41240:8;41232:7;:17::i;:::-;41224:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;41317:1;41299:7;41293:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;41375:7;41399:26;41416:8;41399:16;:26::i;:::-;41442:13;;;;;;;;;;;;;;;;;41342:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41293:193;41286:200;;41132:362;;;:::o;39179:89::-;39226:42;39179:89;:::o;40265:445::-;40390:4;40475:27;39226:42;40475:65;;40596:8;40555:49;;40563:13;:21;;;40585:5;40563:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40555:49;;;40551:93;;;40628:4;40621:11;;;;;40551:93;40663:39;40686:5;40693:8;40663:22;:39::i;:::-;40656:46;;;40265:445;;;;;:::o;3240:201::-;2562:12;:10;:12::i;:::-;2551:23;;:7;:5;:7::i;:::-;:23;;;2543:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3349:1:::1;3329:22;;:8;:22;;;;3321:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3405:28;3424:8;3405:18;:28::i;:::-;3240:201:::0;:::o;39277:38::-;39314:1;39277:38;:::o;39503:48::-;;;;;;;;;;;;;;;;;:::o;23507:157::-;23592:4;23631:25;23616:40;;;:11;:40;;;;23609:47;;23507:157;;;:::o;1072:98::-;1125:7;1152:10;1145:17;;1072:98;:::o;32158:111::-;32215:4;32249:12;;32239:7;:22;32232:29;;32158:111;;;:::o;36202:196::-;36344:2;36317:15;:24;36333:7;36317:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36382:7;36378:2;36362:28;;36371:5;36362:28;;;;;;;;;;;;36202:196;;;:::o;34301:1783::-;34416:35;34454:20;34466:7;34454:11;:20::i;:::-;34416:58;;34487:22;34529:13;:18;;;34513:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;34588:12;:10;:12::i;:::-;34564:36;;:20;34576:7;34564:11;:20::i;:::-;:36;;;34513:87;:154;;;;34617:50;34634:13;:18;;;34654:12;:10;:12::i;:::-;34617:16;:50::i;:::-;34513:154;34487:181;;34689:17;34681:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;34804:4;34782:26;;:13;:18;;;:26;;;34774:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;34884:1;34870:16;;:2;:16;;;;34862:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34941:43;34963:4;34969:2;34973:7;34982:1;34941:21;:43::i;:::-;35049:49;35066:1;35070:7;35079:13;:18;;;35049:8;:49::i;:::-;35333:1;35303:12;:18;35316:4;35303:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35377:1;35349:12;:16;35362:2;35349:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35425:43;;;;;;;;35440:2;35425:43;;;;;;35451:15;35425:43;;;;;35402:11;:20;35414:7;35402:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35708:19;35740:1;35730:7;:11;;;;:::i;:::-;35708:33;;35797:1;35756:43;;:11;:24;35768:11;35756:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35752:227;;;35820:20;35828:11;35820:7;:20::i;:::-;35816:152;;;35888:64;;;;;;;;35903:13;:18;;;35888:64;;;;;;35923:13;:28;;;35888:64;;;;;35861:11;:24;35873:11;35861:24;;;;;;;;;;;:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35816:152;35752:227;36015:7;36011:2;35996:27;;36005:4;35996:27;;;;;;;;;;;;36034:42;36055:4;36061:2;36065:7;36074:1;36034:20;:42::i;:::-;34405:1679;;;34301:1783;;;:::o;27905:472::-;27966:21;;:::i;:::-;28008:16;28016:7;28008;:16::i;:::-;28000:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28089:12;28104:7;28089:22;;28084:216;28138:31;28172:11;:17;28184:4;28172:17;;;;;;;;;;;28138:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28234:1;28208:28;;:9;:14;;;:28;;;28204:85;;28264:9;28257:16;;;;;;28204:85;28123:177;28115:6;;;;;:::i;:::-;;;;28084:216;;27905:472;;;;:::o;3601:191::-;3675:16;3694:6;;;;;;;;;;;3675:25;;3720:8;3711:6;;:17;;;;;;;;;;;;;;;;;;3775:8;3744:40;;3765:8;3744:40;;;;;;;;;;;;3664:128;3601:191;:::o;32277:104::-;32346:27;32356:2;32360:8;32346:27;;;;;;;;;;;;:9;:27::i;:::-;32277:104;;:::o;36963:804::-;37118:4;37139:15;:2;:13;;;:15::i;:::-;37135:625;;;37191:2;37175:36;;;37212:12;:10;:12::i;:::-;37226:4;37232:7;37241:5;37175:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37171:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37438:1;37421:6;:13;:18;37417:273;;;37464:61;;;;;;;;;;:::i;:::-;;;;;;;;37417:273;37640:6;37634:13;37625:6;37621:2;37617:15;37610:38;37171:534;37308:45;;;37298:55;;;:6;:55;;;;37291:62;;;;;37135:625;37744:4;37737:11;;36963:804;;;;;;;:::o;4149:723::-;4205:13;4435:1;4426:5;:10;4422:53;;;4453:10;;;;;;;;;;;;;;;;;;;;;4422:53;4485:12;4500:5;4485:20;;4516:14;4541:78;4556:1;4548:4;:9;4541:78;;4574:8;;;;;:::i;:::-;;;;4605:2;4597:10;;;;;:::i;:::-;;;4541:78;;;4629:19;4661:6;4651:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4629:39;;4679:154;4695:1;4686:5;:10;4679:154;;4723:1;4713:11;;;;;:::i;:::-;;;4790:2;4782:5;:10;;;;:::i;:::-;4769:2;:24;;;;:::i;:::-;4756:39;;4739:6;4746;4739:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4819:2;4810:11;;;;;:::i;:::-;;;4679:154;;;4857:6;4843:21;;;;;4149:723;;;;:::o;30836:164::-;30933:4;30957:18;:25;30976:5;30957:25;;;;;;;;;;;;;;;:35;30983:8;30957:35;;;;;;;;;;;;;;;;;;;;;;;;;30950:42;;30836:164;;;;:::o;38255:159::-;;;;;:::o;38826:158::-;;;;;:::o;32658:1389::-;32781:20;32804:12;;32781:35;;32849:1;32835:16;;:2;:16;;;;32827:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33034:21;33042:12;33034:7;:21::i;:::-;33033:22;33025:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33119:1;33108:8;:12;33100:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;33173:61;33203:1;33207:2;33211:12;33225:8;33173:21;:61::i;:::-;33247:30;33280:12;:16;33293:2;33280:16;;;;;;;;;;;;;;;33247:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33326:135;;;;;;;;33382:8;33352:11;:19;;;:39;;;;:::i;:::-;33326:135;;;;;;33441:8;33406:11;:24;;;:44;;;;:::i;:::-;33326:135;;;;;33307:12;:16;33320:2;33307:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33500:43;;;;;;;;33515:2;33500:43;;;;;;33526:15;33500:43;;;;;33472:11;:25;33484:12;33472:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33556:20;33579:12;33556:35;;33609:9;33604:325;33628:8;33624:1;:12;33604:325;;;33688:12;33684:2;33663:38;;33680:1;33663:38;;;;;;;;;;;;33742:59;33773:1;33777:2;33781:12;33795:5;33742:22;:59::i;:::-;33716:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;33903:14;;;;;:::i;:::-;;;;33638:3;;;;;:::i;:::-;;;;33604:325;;;;33956:12;33941;:27;;;;33979:60;34008:1;34012:2;34016:12;34030:8;33979:20;:60::i;:::-;32770:1277;;;32658:1389;;;:::o;15328:387::-;15388:4;15596:12;15663:7;15651:20;15643:28;;15706:1;15699:4;:8;15692:15;;;15328:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:366::-;10484:3;10505:67;10569:2;10564:3;10505:67;:::i;:::-;10498:74;;10581:93;10670:3;10581:93;:::i;:::-;10699:2;10694:3;10690:12;10683:19;;10342:366;;;:::o;10714:365::-;10856:3;10877:66;10941:1;10936:3;10877:66;:::i;:::-;10870:73;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10714:365;;;:::o;11085:366::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:398::-;17196:3;17217:83;17298:1;17293:3;17217:83;:::i;:::-;17210:90;;17309:93;17398:3;17309:93;:::i;:::-;17427:1;17422:3;17418:11;17411:18;;17037:398;;;:::o;17441:366::-;17583:3;17604:67;17668:2;17663:3;17604:67;:::i;:::-;17597:74;;17680:93;17769:3;17680:93;:::i;:::-;17798:2;17793:3;17789:12;17782:19;;17441:366;;;:::o;17813:::-;17955:3;17976:67;18040:2;18035:3;17976:67;:::i;:::-;17969:74;;18052:93;18141:3;18052:93;:::i;:::-;18170:2;18165:3;18161:12;18154:19;;17813:366;;;:::o;18185:::-;18327:3;18348:67;18412:2;18407:3;18348:67;:::i;:::-;18341:74;;18424:93;18513:3;18424:93;:::i;:::-;18542:2;18537:3;18533:12;18526:19;;18185:366;;;:::o;18557:::-;18699:3;18720:67;18784:2;18779:3;18720:67;:::i;:::-;18713:74;;18796:93;18885:3;18796:93;:::i;:::-;18914:2;18909:3;18905:12;18898:19;;18557:366;;;:::o;18929:::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19301:::-;19443:3;19464:67;19528:2;19523:3;19464:67;:::i;:::-;19457:74;;19540:93;19629:3;19540:93;:::i;:::-;19658:2;19653:3;19649:12;19642:19;;19301:366;;;:::o;19673:::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:118::-;21248:24;21266:5;21248:24;:::i;:::-;21243:3;21236:37;21161:118;;:::o;21285:589::-;21510:3;21532:92;21620:3;21611:6;21532:92;:::i;:::-;21525:99;;21641:95;21732:3;21723:6;21641:95;:::i;:::-;21634:102;;21753:95;21844:3;21835:6;21753:95;:::i;:::-;21746:102;;21865:3;21858:10;;21285:589;;;;;;:::o;21880:379::-;22064:3;22086:147;22229:3;22086:147;:::i;:::-;22079:154;;22250:3;22243:10;;21880:379;;;:::o;22265:222::-;22358:4;22396:2;22385:9;22381:18;22373:26;;22409:71;22477:1;22466:9;22462:17;22453:6;22409:71;:::i;:::-;22265:222;;;;:::o;22493:640::-;22688:4;22726:3;22715:9;22711:19;22703:27;;22740:71;22808:1;22797:9;22793:17;22784:6;22740:71;:::i;:::-;22821:72;22889:2;22878:9;22874:18;22865:6;22821:72;:::i;:::-;22903;22971:2;22960:9;22956:18;22947:6;22903:72;:::i;:::-;23022:9;23016:4;23012:20;23007:2;22996:9;22992:18;22985:48;23050:76;23121:4;23112:6;23050:76;:::i;:::-;23042:84;;22493:640;;;;;;;:::o;23139:210::-;23226:4;23264:2;23253:9;23249:18;23241:26;;23277:65;23339:1;23328:9;23324:17;23315:6;23277:65;:::i;:::-;23139:210;;;;:::o;23355:313::-;23468:4;23506:2;23495:9;23491:18;23483:26;;23555:9;23549:4;23545:20;23541:1;23530:9;23526:17;23519:47;23583:78;23656:4;23647:6;23583:78;:::i;:::-;23575:86;;23355:313;;;;:::o;23674:419::-;23840:4;23878:2;23867:9;23863:18;23855:26;;23927:9;23921:4;23917:20;23913:1;23902:9;23898:17;23891:47;23955:131;24081:4;23955:131;:::i;:::-;23947:139;;23674:419;;;:::o;24099:::-;24265:4;24303:2;24292:9;24288:18;24280:26;;24352:9;24346:4;24342:20;24338:1;24327:9;24323:17;24316:47;24380:131;24506:4;24380:131;:::i;:::-;24372:139;;24099:419;;;:::o;24524:::-;24690:4;24728:2;24717:9;24713:18;24705:26;;24777:9;24771:4;24767:20;24763:1;24752:9;24748:17;24741:47;24805:131;24931:4;24805:131;:::i;:::-;24797:139;;24524:419;;;:::o;24949:::-;25115:4;25153:2;25142:9;25138:18;25130:26;;25202:9;25196:4;25192:20;25188:1;25177:9;25173:17;25166:47;25230:131;25356:4;25230:131;:::i;:::-;25222:139;;24949:419;;;:::o;25374:::-;25540:4;25578:2;25567:9;25563:18;25555:26;;25627:9;25621:4;25617:20;25613:1;25602:9;25598:17;25591:47;25655:131;25781:4;25655:131;:::i;:::-;25647:139;;25374:419;;;:::o;25799:::-;25965:4;26003:2;25992:9;25988:18;25980:26;;26052:9;26046:4;26042:20;26038:1;26027:9;26023:17;26016:47;26080:131;26206:4;26080:131;:::i;:::-;26072:139;;25799:419;;;:::o;26224:::-;26390:4;26428:2;26417:9;26413:18;26405:26;;26477:9;26471:4;26467:20;26463:1;26452:9;26448:17;26441:47;26505:131;26631:4;26505:131;:::i;:::-;26497:139;;26224:419;;;:::o;26649:::-;26815:4;26853:2;26842:9;26838:18;26830:26;;26902:9;26896:4;26892:20;26888:1;26877:9;26873:17;26866:47;26930:131;27056:4;26930:131;:::i;:::-;26922:139;;26649:419;;;:::o;27074:::-;27240:4;27278:2;27267:9;27263:18;27255:26;;27327:9;27321:4;27317:20;27313:1;27302:9;27298:17;27291:47;27355:131;27481:4;27355:131;:::i;:::-;27347:139;;27074:419;;;:::o;27499:::-;27665:4;27703:2;27692:9;27688:18;27680:26;;27752:9;27746:4;27742:20;27738:1;27727:9;27723:17;27716:47;27780:131;27906:4;27780:131;:::i;:::-;27772:139;;27499:419;;;:::o;27924:::-;28090:4;28128:2;28117:9;28113:18;28105:26;;28177:9;28171:4;28167:20;28163:1;28152:9;28148:17;28141:47;28205:131;28331:4;28205:131;:::i;:::-;28197:139;;27924:419;;;:::o;28349:::-;28515:4;28553:2;28542:9;28538:18;28530:26;;28602:9;28596:4;28592:20;28588:1;28577:9;28573:17;28566:47;28630:131;28756:4;28630:131;:::i;:::-;28622:139;;28349:419;;;:::o;28774:::-;28940:4;28978:2;28967:9;28963:18;28955:26;;29027:9;29021:4;29017:20;29013:1;29002:9;28998:17;28991:47;29055:131;29181:4;29055:131;:::i;:::-;29047:139;;28774:419;;;:::o;29199:::-;29365:4;29403:2;29392:9;29388:18;29380:26;;29452:9;29446:4;29442:20;29438:1;29427:9;29423:17;29416:47;29480:131;29606:4;29480:131;:::i;:::-;29472:139;;29199:419;;;:::o;29624:::-;29790:4;29828:2;29817:9;29813:18;29805:26;;29877:9;29871:4;29867:20;29863:1;29852:9;29848:17;29841:47;29905:131;30031:4;29905:131;:::i;:::-;29897:139;;29624:419;;;:::o;30049:::-;30215:4;30253:2;30242:9;30238:18;30230:26;;30302:9;30296:4;30292:20;30288:1;30277:9;30273:17;30266:47;30330:131;30456:4;30330:131;:::i;:::-;30322:139;;30049:419;;;:::o;30474:::-;30640:4;30678:2;30667:9;30663:18;30655:26;;30727:9;30721:4;30717:20;30713:1;30702:9;30698:17;30691:47;30755:131;30881:4;30755:131;:::i;:::-;30747:139;;30474:419;;;:::o;30899:::-;31065:4;31103:2;31092:9;31088:18;31080:26;;31152:9;31146:4;31142:20;31138:1;31127:9;31123:17;31116:47;31180:131;31306:4;31180:131;:::i;:::-;31172:139;;30899:419;;;:::o;31324:::-;31490:4;31528:2;31517:9;31513:18;31505:26;;31577:9;31571:4;31567:20;31563:1;31552:9;31548:17;31541:47;31605:131;31731:4;31605:131;:::i;:::-;31597:139;;31324:419;;;:::o;31749:::-;31915:4;31953:2;31942:9;31938:18;31930:26;;32002:9;31996:4;31992:20;31988:1;31977:9;31973:17;31966:47;32030:131;32156:4;32030:131;:::i;:::-;32022:139;;31749:419;;;:::o;32174:::-;32340:4;32378:2;32367:9;32363:18;32355:26;;32427:9;32421:4;32417:20;32413:1;32402:9;32398:17;32391:47;32455:131;32581:4;32455:131;:::i;:::-;32447:139;;32174:419;;;:::o;32599:::-;32765:4;32803:2;32792:9;32788:18;32780:26;;32852:9;32846:4;32842:20;32838:1;32827:9;32823:17;32816:47;32880:131;33006:4;32880:131;:::i;:::-;32872:139;;32599:419;;;:::o;33024:::-;33190:4;33228:2;33217:9;33213:18;33205:26;;33277:9;33271:4;33267:20;33263:1;33252:9;33248:17;33241:47;33305:131;33431:4;33305:131;:::i;:::-;33297:139;;33024:419;;;:::o;33449:::-;33615:4;33653:2;33642:9;33638:18;33630:26;;33702:9;33696:4;33692:20;33688:1;33677:9;33673:17;33666:47;33730:131;33856:4;33730:131;:::i;:::-;33722:139;;33449:419;;;:::o;33874:::-;34040:4;34078:2;34067:9;34063:18;34055:26;;34127:9;34121:4;34117:20;34113:1;34102:9;34098:17;34091:47;34155:131;34281:4;34155:131;:::i;:::-;34147:139;;33874:419;;;:::o;34724:::-;34890:4;34928:2;34917:9;34913:18;34905:26;;34977:9;34971:4;34967:20;34963:1;34952:9;34948:17;34941:47;35005:131;35131:4;35005:131;:::i;:::-;34997:139;;34724:419;;;:::o;35149:::-;35315:4;35353:2;35342:9;35338:18;35330:26;;35402:9;35396:4;35392:20;35388:1;35377:9;35373:17;35366:47;35430:131;35556:4;35430:131;:::i;:::-;35422:139;;35149:419;;;:::o;35574:222::-;35667:4;35705:2;35694:9;35690:18;35682:26;;35718:71;35786:1;35775:9;35771:17;35762:6;35718:71;:::i;:::-;35574:222;;;;:::o;35802:129::-;35836:6;35863:20;;:::i;:::-;35853:30;;35892:33;35920:4;35912:6;35892:33;:::i;:::-;35802:129;;;:::o;35937:75::-;35970:6;36003:2;35997:9;35987:19;;35937:75;:::o;36018:307::-;36079:4;36169:18;36161:6;36158:30;36155:56;;;36191:18;;:::i;:::-;36155:56;36229:29;36251:6;36229:29;:::i;:::-;36221:37;;36313:4;36307;36303:15;36295:23;;36018:307;;;:::o;36331:308::-;36393:4;36483:18;36475:6;36472:30;36469:56;;;36505:18;;:::i;:::-;36469:56;36543:29;36565:6;36543:29;:::i;:::-;36535:37;;36627:4;36621;36617:15;36609:23;;36331:308;;;:::o;36645:141::-;36694:4;36717:3;36709:11;;36740:3;36737:1;36730:14;36774:4;36771:1;36761:18;36753:26;;36645:141;;;:::o;36792:98::-;36843:6;36877:5;36871:12;36861:22;;36792:98;;;:::o;36896:99::-;36948:6;36982:5;36976:12;36966:22;;36896:99;;;:::o;37001:168::-;37084:11;37118:6;37113:3;37106:19;37158:4;37153:3;37149:14;37134:29;;37001:168;;;;:::o;37175:147::-;37276:11;37313:3;37298:18;;37175:147;;;;:::o;37328:169::-;37412:11;37446:6;37441:3;37434:19;37486:4;37481:3;37477:14;37462:29;;37328:169;;;;:::o;37503:148::-;37605:11;37642:3;37627:18;;37503:148;;;;:::o;37657:273::-;37697:3;37716:20;37734:1;37716:20;:::i;:::-;37711:25;;37750:20;37768:1;37750:20;:::i;:::-;37745:25;;37872:1;37836:34;37832:42;37829:1;37826:49;37823:75;;;37878:18;;:::i;:::-;37823:75;37922:1;37919;37915:9;37908:16;;37657:273;;;;:::o;37936:305::-;37976:3;37995:20;38013:1;37995:20;:::i;:::-;37990:25;;38029:20;38047:1;38029:20;:::i;:::-;38024:25;;38183:1;38115:66;38111:74;38108:1;38105:81;38102:107;;;38189:18;;:::i;:::-;38102:107;38233:1;38230;38226:9;38219:16;;37936:305;;;;:::o;38247:185::-;38287:1;38304:20;38322:1;38304:20;:::i;:::-;38299:25;;38338:20;38356:1;38338:20;:::i;:::-;38333:25;;38377:1;38367:35;;38382:18;;:::i;:::-;38367:35;38424:1;38421;38417:9;38412:14;;38247:185;;;;:::o;38438:348::-;38478:7;38501:20;38519:1;38501:20;:::i;:::-;38496:25;;38535:20;38553:1;38535:20;:::i;:::-;38530:25;;38723:1;38655:66;38651:74;38648:1;38645:81;38640:1;38633:9;38626:17;38622:105;38619:131;;;38730:18;;:::i;:::-;38619:131;38778:1;38775;38771:9;38760:20;;38438:348;;;;:::o;38792:191::-;38832:4;38852:20;38870:1;38852:20;:::i;:::-;38847:25;;38886:20;38904:1;38886:20;:::i;:::-;38881:25;;38925:1;38922;38919:8;38916:34;;;38930:18;;:::i;:::-;38916:34;38975:1;38972;38968:9;38960:17;;38792:191;;;;:::o;38989:96::-;39026:7;39055:24;39073:5;39055:24;:::i;:::-;39044:35;;38989:96;;;:::o;39091:90::-;39125:7;39168:5;39161:13;39154:21;39143:32;;39091:90;;;:::o;39187:149::-;39223:7;39263:66;39256:5;39252:78;39241:89;;39187:149;;;:::o;39342:125::-;39408:7;39437:24;39455:5;39437:24;:::i;:::-;39426:35;;39342:125;;;:::o;39473:118::-;39510:7;39550:34;39543:5;39539:46;39528:57;;39473:118;;;:::o;39597:126::-;39634:7;39674:42;39667:5;39663:54;39652:65;;39597:126;;;:::o;39729:77::-;39766:7;39795:5;39784:16;;39729:77;;;:::o;39812:154::-;39896:6;39891:3;39886;39873:30;39958:1;39949:6;39944:3;39940:16;39933:27;39812:154;;;:::o;39972:307::-;40040:1;40050:113;40064:6;40061:1;40058:13;40050:113;;;40149:1;40144:3;40140:11;40134:18;40130:1;40125:3;40121:11;40114:39;40086:2;40083:1;40079:10;40074:15;;40050:113;;;40181:6;40178:1;40175:13;40172:101;;;40261:1;40252:6;40247:3;40243:16;40236:27;40172:101;40021:258;39972:307;;;:::o;40285:171::-;40324:3;40347:24;40365:5;40347:24;:::i;:::-;40338:33;;40393:4;40386:5;40383:15;40380:41;;;40401:18;;:::i;:::-;40380:41;40448:1;40441:5;40437:13;40430:20;;40285:171;;;:::o;40462:320::-;40506:6;40543:1;40537:4;40533:12;40523:22;;40590:1;40584:4;40580:12;40611:18;40601:81;;40667:4;40659:6;40655:17;40645:27;;40601:81;40729:2;40721:6;40718:14;40698:18;40695:38;40692:84;;;40748:18;;:::i;:::-;40692:84;40513:269;40462:320;;;:::o;40788:281::-;40871:27;40893:4;40871:27;:::i;:::-;40863:6;40859:40;41001:6;40989:10;40986:22;40965:18;40953:10;40950:34;40947:62;40944:88;;;41012:18;;:::i;:::-;40944:88;41052:10;41048:2;41041:22;40831:238;40788:281;;:::o;41075:233::-;41114:3;41137:24;41155:5;41137:24;:::i;:::-;41128:33;;41183:66;41176:5;41173:77;41170:103;;;41253:18;;:::i;:::-;41170:103;41300:1;41293:5;41289:13;41282:20;;41075:233;;;:::o;41314:176::-;41346:1;41363:20;41381:1;41363:20;:::i;:::-;41358:25;;41397:20;41415:1;41397:20;:::i;:::-;41392:25;;41436:1;41426:35;;41441:18;;:::i;:::-;41426:35;41482:1;41479;41475:9;41470:14;;41314:176;;;;:::o;41496:180::-;41544:77;41541:1;41534:88;41641:4;41638:1;41631:15;41665:4;41662:1;41655:15;41682:180;41730:77;41727:1;41720:88;41827:4;41824:1;41817:15;41851:4;41848:1;41841:15;41868:180;41916:77;41913:1;41906:88;42013:4;42010:1;42003:15;42037:4;42034:1;42027:15;42054:180;42102:77;42099:1;42092:88;42199:4;42196:1;42189:15;42223:4;42220:1;42213:15;42240:180;42288:77;42285:1;42278:88;42385:4;42382:1;42375:15;42409:4;42406:1;42399:15;42426:117;42535:1;42532;42525:12;42549:117;42658:1;42655;42648:12;42672:117;42781:1;42778;42771:12;42795:117;42904:1;42901;42894:12;42918:102;42959:6;43010:2;43006:7;43001:2;42994:5;42990:14;42986:28;42976:38;;42918:102;;;:::o;43026:221::-;43166:34;43162:1;43154:6;43150:14;43143:58;43235:4;43230:2;43222:6;43218:15;43211:29;43026:221;:::o;43253:156::-;43393:8;43389:1;43381:6;43377:14;43370:32;43253:156;:::o;43415:225::-;43555:34;43551:1;43543:6;43539:14;43532:58;43624:8;43619:2;43611:6;43607:15;43600:33;43415:225;:::o;43646:229::-;43786:34;43782:1;43774:6;43770:14;43763:58;43855:12;43850:2;43842:6;43838:15;43831:37;43646:229;:::o;43881:160::-;44021:12;44017:1;44009:6;44005:14;43998:36;43881:160;:::o;44047:172::-;44187:24;44183:1;44175:6;44171:14;44164:48;44047:172;:::o;44225:222::-;44365:34;44361:1;44353:6;44349:14;44342:58;44434:5;44429:2;44421:6;44417:15;44410:30;44225:222;:::o;44453:224::-;44593:34;44589:1;44581:6;44577:14;44570:58;44662:7;44657:2;44649:6;44645:15;44638:32;44453:224;:::o;44683:244::-;44823:34;44819:1;44811:6;44807:14;44800:58;44892:27;44887:2;44879:6;44875:15;44868:52;44683:244;:::o;44933:168::-;45073:20;45069:1;45061:6;45057:14;45050:44;44933:168;:::o;45107:230::-;45247:34;45243:1;45235:6;45231:14;45224:58;45316:13;45311:2;45303:6;45299:15;45292:38;45107:230;:::o;45343:171::-;45483:23;45479:1;45471:6;45467:14;45460:47;45343:171;:::o;45520:225::-;45660:34;45656:1;45648:6;45644:14;45637:58;45729:8;45724:2;45716:6;45712:15;45705:33;45520:225;:::o;45751:182::-;45891:34;45887:1;45879:6;45875:14;45868:58;45751:182;:::o;45939:176::-;46079:28;46075:1;46067:6;46063:14;46056:52;45939:176;:::o;46121:237::-;46261:34;46257:1;46249:6;46245:14;46238:58;46330:20;46325:2;46317:6;46313:15;46306:45;46121:237;:::o;46364:172::-;46504:24;46500:1;46492:6;46488:14;46481:48;46364:172;:::o;46542:221::-;46682:34;46678:1;46670:6;46666:14;46659:58;46751:4;46746:2;46738:6;46734:15;46727:29;46542:221;:::o;46769:114::-;;:::o;46889:222::-;47029:34;47025:1;47017:6;47013:14;47006:58;47098:5;47093:2;47085:6;47081:15;47074:30;46889:222;:::o;47117:238::-;47257:34;47253:1;47245:6;47241:14;47234:58;47326:21;47321:2;47313:6;47309:15;47302:46;47117:238;:::o;47361:179::-;47501:31;47497:1;47489:6;47485:14;47478:55;47361:179;:::o;47546:220::-;47686:34;47682:1;47674:6;47670:14;47663:58;47755:3;47750:2;47742:6;47738:15;47731:28;47546:220;:::o;47772:164::-;47912:16;47908:1;47900:6;47896:14;47889:40;47772:164;:::o;47942:233::-;48082:34;48078:1;48070:6;48066:14;48059:58;48151:16;48146:2;48138:6;48134:15;48127:41;47942:233;:::o;48181:172::-;48321:24;48317:1;48309:6;48305:14;48298:48;48181:172;:::o;48599:232::-;48739:34;48735:1;48727:6;48723:14;48716:58;48808:15;48803:2;48795:6;48791:15;48784:40;48599:232;:::o;48837:162::-;48977:14;48973:1;48965:6;48961:14;48954:38;48837:162;:::o;49005:122::-;49078:24;49096:5;49078:24;:::i;:::-;49071:5;49068:35;49058:63;;49117:1;49114;49107:12;49058:63;49005:122;:::o;49133:116::-;49203:21;49218:5;49203:21;:::i;:::-;49196:5;49193:32;49183:60;;49239:1;49236;49229:12;49183:60;49133:116;:::o;49255:120::-;49327:23;49344:5;49327:23;:::i;:::-;49320:5;49317:34;49307:62;;49365:1;49362;49355:12;49307:62;49255:120;:::o;49381:180::-;49483:53;49530:5;49483:53;:::i;:::-;49476:5;49473:64;49463:92;;49551:1;49548;49541:12;49463:92;49381:180;:::o;49567:122::-;49640:24;49658:5;49640:24;:::i;:::-;49633:5;49630:35;49620:63;;49679:1;49676;49669:12;49620:63;49567:122;:::o

Swarm Source

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