ETH Price: $3,089.36 (+0.03%)
Gas: 5 Gwei

Token

FlavaTools (FLVA)
 

Overview

Max Total Supply

500 FLVA

Holders

389

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0xczlee.eth
Balance
1 FLVA
0x99b515ddec8839935bc63a95a171b77a9549ce63
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:
Flava

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-28
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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


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


pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File contracts/Flava.sol

pragma solidity ^0.8.0;




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

    Counters.Counter private _tokenIds;
    
    string _baseTokenURI = 'https://api.flava.tools/api/metadata/';

    uint256 private _price = 0.39 ether;
    uint256 private _available_supply = 220;
    uint256 TOTAL_SUPPLY = 1000;
    uint256 private _founder_supply = 19;
    bool public onlyWhitelisted = false;
    address[] public whitelistedWallets;

    event Mint(address indexed _address, uint256 tokenId);

    constructor() ERC721("FlavaTools", "FLVA") {
        for (uint i = 0; i < _founder_supply; i++) {
            _safeMint(msg.sender);
        }
    }

    function mint() whenNotPaused public payable {
        if(onlyWhitelisted == true && msg.sender != owner()) {
            require(isWhitelisted(msg.sender), "Wallet is not whitelisted");
        }
        
        require(_tokenIds.current() < _available_supply, "Can't mint over supply limit");

        if (msg.sender != owner()) {
            require(msg.value == _price, "Wrong amount sent");
            require(balanceOf(msg.sender) == 0, "Can only mint one membership per wallet");
        }
        
        _safeMint(msg.sender);
        emit Mint(msg.sender, _tokenIds.current());
    }

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

    function setOnlyWhitelisted(bool _state) public onlyOwner {
        onlyWhitelisted = _state;
    }

    function setWhitelistWallets(address[] calldata addresses) public onlyOwner {
        delete whitelistedWallets;
        whitelistedWallets = addresses;
    }


    function getWhitelistedWallets() public view onlyOwner returns (address[] memory) {
        return whitelistedWallets;
    }


    function getBalance() public view returns(uint) {
        return address(this).balance;
    }

    function getPrice() public view returns (uint256) {
        return _price;
    }

    function setPrice(uint256 price) public onlyOwner {
        _price = price;
    }

    function getAvailableSupply() public view returns (uint256) {
        return _available_supply;
    }

    function setAvailableSupply(uint256 available_supply) public onlyOwner {
        _available_supply = available_supply;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        
        payable(msg.sender).transfer(balance);
    }

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

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

    function _safeMint(address buyer) internal {
        _tokenIds.increment();
        _safeMint(buyer, _tokenIds.current());
    }

    function pause() public onlyOwner whenNotPaused {
        _pause();
    }

    function unpause()  public onlyOwner whenPaused {
        _unpause();
    }

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

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":"_address","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvailableSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhitelistedWallets","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":"address","name":"wallet","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"available_supply","type":"uint256"}],"name":"setAvailableSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setWhitelistWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedWallets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180606001604052806025815260200162004ec16025913960089080519060200190620000359291906200077e565b506705698eef0667000060095560dc600a556103e8600b556013600c556000600d60006101000a81548160ff0219169083151502179055503480156200007a57600080fd5b506040518060400160405280600a81526020017f466c617661546f6f6c73000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f464c5641000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000ff9291906200077e565b508060019080519060200190620001189291906200077e565b5050506000600660006101000a81548160ff021916908315150217905550620001566200014a6200019260201b60201c565b6200019a60201b60201c565b60005b600c548110156200018b5762000175336200026060201b60201c565b8080620001829062000b63565b91505062000159565b5062000cdb565b600033905090565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002776007620002a260201b62001c2d1760201c565b6200029f81620002936007620002b860201b62001c431760201c565b620002c660201b60201c565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b620002e8828260405180602001604052806000815250620002ec60201b60201c565b5050565b620002fe83836200035a60201b60201c565b6200031360008484846200054060201b60201c565b62000355576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034c906200099d565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c490620009e1565b60405180910390fd5b620003de81620006fa60201b60201c565b1562000421576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041890620009bf565b60405180910390fd5b62000435600083836200076660201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000487919062000a30565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006200056e8473ffffffffffffffffffffffffffffffffffffffff166200076b60201b62001c511760201c565b15620006ed578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005a06200019260201b60201c565b8786866040518563ffffffff1660e01b8152600401620005c4949392919062000949565b602060405180830381600087803b158015620005df57600080fd5b505af19250505080156200061357506040513d601f19601f8201168201806040525081019062000610919062000845565b60015b6200069c573d806000811462000646576040519150601f19603f3d011682016040523d82523d6000602084013e6200064b565b606091505b5060008151141562000694576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200068b906200099d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620006f2565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b8280546200078c9062000b2d565b90600052602060002090601f016020900481019282620007b05760008555620007fc565b82601f10620007cb57805160ff1916838001178555620007fc565b82800160010185558215620007fc579182015b82811115620007fb578251825591602001919060010190620007de565b5b5090506200080b91906200080f565b5090565b5b808211156200082a57600081600090555060010162000810565b5090565b6000815190506200083f8162000cc1565b92915050565b6000602082840312156200085857600080fd5b600062000868848285016200082e565b91505092915050565b6200087c8162000a8d565b82525050565b60006200088f8262000a03565b6200089b818562000a0e565b9350620008ad81856020860162000af7565b620008b88162000c0f565b840191505092915050565b6000620008d260328362000a1f565b9150620008df8262000c20565b604082019050919050565b6000620008f9601c8362000a1f565b9150620009068262000c6f565b602082019050919050565b60006200092060208362000a1f565b91506200092d8262000c98565b602082019050919050565b620009438162000aed565b82525050565b600060808201905062000960600083018762000871565b6200096f602083018662000871565b6200097e604083018562000938565b818103606083015262000992818462000882565b905095945050505050565b60006020820190508181036000830152620009b881620008c3565b9050919050565b60006020820190508181036000830152620009da81620008ea565b9050919050565b60006020820190508181036000830152620009fc8162000911565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000a3d8262000aed565b915062000a4a8362000aed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a825762000a8162000bb1565b5b828201905092915050565b600062000a9a8262000acd565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b1757808201518184015260208101905062000afa565b8381111562000b27576000848401525b50505050565b6000600282049050600182168062000b4657607f821691505b6020821081141562000b5d5762000b5c62000be0565b5b50919050565b600062000b708262000aed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000ba65762000ba562000bb1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000ccc8162000aa1565b811462000cd857600080fd5b50565b6141d68062000ceb6000396000f3fe6080604052600436106101f95760003560e01c80636352211e1161010d5780639c70b512116100a0578063c167d1cd1161006f578063c167d1cd146106b2578063c5922754146106dd578063c87b56dd1461071a578063e985e9c514610757578063f2fde38b14610794576101f9565b80639c70b5121461060a578063a22cb46514610635578063ac928f661461065e578063b88d4fde14610689576101f9565b80638da5cb5b116100dc5780638da5cb5b1461056057806391b7f5ed1461058b57806395d89b41146105b457806398d5fdca146105df576101f9565b80636352211e146104b857806370a08231146104f5578063715018a6146105325780638456cb5914610549576101f9565b806323b872dd116101905780633f4ba83a1161015f5780633f4ba83a146103fb57806342842e0e14610412578063524feed51461043b57806355f804b3146104645780635c975abb1461048d576101f9565b806323b872dd146103555780633af32abf1461037e5780633c952764146103bb5780633ccfd60b146103e4576101f9565b806312065fe0116101cc57806312065fe0146102cc5780631249c58b146102f75780631723934d1461030157806318160ddd1461032a576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612eda565b6107bd565b604051610232919061349a565b60405180910390f35b34801561024757600080fd5b5061025061089f565b60405161025d91906134b5565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612f6d565b610931565b60405161029a9190613411565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612e30565b6109b6565b005b3480156102d857600080fd5b506102e1610ace565b6040516102ee9190613797565b60405180910390f35b6102ff610ad6565b005b34801561030d57600080fd5b5061032860048036038101906103239190612f6d565b610d3b565b005b34801561033657600080fd5b5061033f610dc1565b60405161034c9190613797565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190612d2a565b610dd2565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612cc5565b610e32565b6040516103b2919061349a565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612eb1565b610f07565b005b3480156103f057600080fd5b506103f9610fa0565b005b34801561040757600080fd5b5061041061106b565b005b34801561041e57600080fd5b5061043960048036038101906104349190612d2a565b611138565b005b34801561044757600080fd5b50610462600480360381019061045d9190612e6c565b611158565b005b34801561047057600080fd5b5061048b60048036038101906104869190612f2c565b6111f8565b005b34801561049957600080fd5b506104a261128e565b6040516104af919061349a565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190612f6d565b6112a5565b6040516104ec9190613411565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190612cc5565b611357565b6040516105299190613797565b60405180910390f35b34801561053e57600080fd5b5061054761140f565b005b34801561055557600080fd5b5061055e611497565b005b34801561056c57600080fd5b50610575611565565b6040516105829190613411565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190612f6d565b61158f565b005b3480156105c057600080fd5b506105c9611615565b6040516105d691906134b5565b60405180910390f35b3480156105eb57600080fd5b506105f46116a7565b6040516106019190613797565b60405180910390f35b34801561061657600080fd5b5061061f6116b1565b60405161062c919061349a565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612df4565b6116c4565b005b34801561066a57600080fd5b50610673611845565b6040516106809190613478565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612d79565b61194f565b005b3480156106be57600080fd5b506106c76119b1565b6040516106d49190613797565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190612f6d565b6119bb565b6040516107119190613411565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190612f6d565b6119fa565b60405161074e91906134b5565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190612cee565b611aa1565b60405161078b919061349a565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190612cc5565b611b35565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610898575061089782611c64565b5b9050919050565b6060600080546108ae90613a26565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90613a26565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093c82611cce565b61097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290613697565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c1826112a5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990613737565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a51611d3a565b73ffffffffffffffffffffffffffffffffffffffff161480610a805750610a7f81610a7a611d3a565b611aa1565b5b610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab690613617565b60405180910390fd5b610ac98383611d42565b505050565b600047905090565b610ade61128e565b15610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b15906135f7565b60405180910390fd5b60011515600d60009054906101000a900460ff161515148015610b745750610b44611565565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610bc257610b8233610e32565b610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890613757565b60405180910390fd5b5b600a54610bcf6007611c43565b10610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906134f7565b60405180910390fd5b610c17611565565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cd9576009543414610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490613717565b60405180910390fd5b6000610c9833611357565b14610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf906135d7565b60405180910390fd5b5b610ce233611dfb565b3373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885610d246007611c43565b604051610d319190613797565b60405180910390a2565b610d43611d3a565b73ffffffffffffffffffffffffffffffffffffffff16610d61611565565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906136b7565b60405180910390fd5b80600a8190555050565b6000610dcd6007611c43565b905090565b610de3610ddd611d3a565b82611e1b565b610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613777565b60405180910390fd5b610e2d838383611ef9565b505050565b600080600090505b600e80549050811015610efc578273ffffffffffffffffffffffffffffffffffffffff16600e8281548110610e98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ee9576001915050610f02565b8080610ef490613a89565b915050610e3a565b50600090505b919050565b610f0f611d3a565b73ffffffffffffffffffffffffffffffffffffffff16610f2d611565565b73ffffffffffffffffffffffffffffffffffffffff1614610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906136b7565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b610fa8611d3a565b73ffffffffffffffffffffffffffffffffffffffff16610fc6611565565b73ffffffffffffffffffffffffffffffffffffffff161461101c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611013906136b7565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611067573d6000803e3d6000fd5b5050565b611073611d3a565b73ffffffffffffffffffffffffffffffffffffffff16611091611565565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de906136b7565b60405180910390fd5b6110ef61128e565b61112e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611125906134d7565b60405180910390fd5b611136612155565b565b6111538383836040518060200160405280600081525061194f565b505050565b611160611d3a565b73ffffffffffffffffffffffffffffffffffffffff1661117e611565565b73ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906136b7565b60405180910390fd5b600e60006111e291906129de565b8181600e91906111f39291906129ff565b505050565b611200611d3a565b73ffffffffffffffffffffffffffffffffffffffff1661121e611565565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b906136b7565b60405180910390fd5b806008908051906020019061128a929190612a9f565b5050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590613657565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90613637565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611417611d3a565b73ffffffffffffffffffffffffffffffffffffffff16611435611565565b73ffffffffffffffffffffffffffffffffffffffff161461148b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611482906136b7565b60405180910390fd5b61149560006121f7565b565b61149f611d3a565b73ffffffffffffffffffffffffffffffffffffffff166114bd611565565b73ffffffffffffffffffffffffffffffffffffffff1614611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a906136b7565b60405180910390fd5b61151b61128e565b1561155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906135f7565b60405180910390fd5b6115636122bd565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611597611d3a565b73ffffffffffffffffffffffffffffffffffffffff166115b5611565565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906136b7565b60405180910390fd5b8060098190555050565b60606001805461162490613a26565b80601f016020809104026020016040519081016040528092919081815260200182805461165090613a26565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b5050505050905090565b6000600954905090565b600d60009054906101000a900460ff1681565b6116cc611d3a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173190613597565b60405180910390fd5b8060056000611747611d3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117f4611d3a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611839919061349a565b60405180910390a35050565b606061184f611d3a565b73ffffffffffffffffffffffffffffffffffffffff1661186d611565565b73ffffffffffffffffffffffffffffffffffffffff16146118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba906136b7565b60405180910390fd5b600e80548060200260200160405190810160405280929190818152602001828054801561194557602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116118fb575b5050505050905090565b61196061195a611d3a565b83611e1b565b61199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613777565b60405180910390fd5b6119ab84848484612360565b50505050565b6000600a54905090565b600e81815481106119cb57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611a0582611cce565b611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b906136f7565b60405180910390fd5b6000611a4e6123bc565b90506000815111611a6e5760405180602001604052806000815250611a99565b80611a788461244e565b604051602001611a899291906133ed565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b3d611d3a565b73ffffffffffffffffffffffffffffffffffffffff16611b5b611565565b73ffffffffffffffffffffffffffffffffffffffff1614611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba8906136b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890613537565b60405180910390fd5b611c2a816121f7565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611db5836112a5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e056007611c2d565b611e1881611e136007611c43565b6125fb565b50565b6000611e2682611cce565b611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c906135b7565b60405180910390fd5b6000611e70836112a5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611edf57508373ffffffffffffffffffffffffffffffffffffffff16611ec784610931565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ef05750611eef8185611aa1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f19826112a5565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f66906136d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690613577565b60405180910390fd5b611fea838383612619565b611ff5600082611d42565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612045919061393c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209c91906138b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61215d61128e565b61219c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612193906134d7565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121e0611d3a565b6040516121ed9190613411565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122c561128e565b15612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc906135f7565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612349611d3a565b6040516123569190613411565b60405180910390a1565b61236b848484611ef9565b6123778484848461261e565b6123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90613517565b60405180910390fd5b50505050565b6060600880546123cb90613a26565b80601f01602080910402602001604051908101604052809291908181526020018280546123f790613a26565b80156124445780601f1061241957610100808354040283529160200191612444565b820191906000526020600020905b81548152906001019060200180831161242757829003601f168201915b5050505050905090565b60606000821415612496576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125f6565b600082905060005b600082146124c85780806124b190613a89565b915050600a826124c1919061390b565b915061249e565b60008167ffffffffffffffff81111561250a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561253c5781602001600182028036833780820191505090505b5090505b600085146125ef57600182612555919061393c565b9150600a856125649190613ad2565b603061257091906138b5565b60f81b8183815181106125ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125e8919061390b565b9450612540565b8093505050505b919050565b6126158282604051806020016040528060008152506127b5565b5050565b505050565b600061263f8473ffffffffffffffffffffffffffffffffffffffff16611c51565b156127a8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612668611d3a565b8786866040518563ffffffff1660e01b815260040161268a949392919061342c565b602060405180830381600087803b1580156126a457600080fd5b505af19250505080156126d557506040513d601f19601f820116820180604052508101906126d29190612f03565b60015b612758573d8060008114612705576040519150601f19603f3d011682016040523d82523d6000602084013e61270a565b606091505b50600081511415612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790613517565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127ad565b600190505b949350505050565b6127bf8383612810565b6127cc600084848461261e565b61280b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280290613517565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287790613677565b60405180910390fd5b61288981611cce565b156128c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c090613557565b60405180910390fd5b6128d560008383612619565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461292591906138b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b50805460008255906000526020600020908101906129fc9190612b25565b50565b828054828255906000526020600020908101928215612a8e579160200282015b82811115612a8d57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612a1f565b5b509050612a9b9190612b25565b5090565b828054612aab90613a26565b90600052602060002090601f016020900481019282612acd5760008555612b14565b82601f10612ae657805160ff1916838001178555612b14565b82800160010185558215612b14579182015b82811115612b13578251825591602001919060010190612af8565b5b509050612b219190612b25565b5090565b5b80821115612b3e576000816000905550600101612b26565b5090565b6000612b55612b50846137d7565b6137b2565b905082815260208101848484011115612b6d57600080fd5b612b788482856139e4565b509392505050565b6000612b93612b8e84613808565b6137b2565b905082815260208101848484011115612bab57600080fd5b612bb68482856139e4565b509392505050565b600081359050612bcd81614144565b92915050565b60008083601f840112612be557600080fd5b8235905067ffffffffffffffff811115612bfe57600080fd5b602083019150836020820283011115612c1657600080fd5b9250929050565b600081359050612c2c8161415b565b92915050565b600081359050612c4181614172565b92915050565b600081519050612c5681614172565b92915050565b600082601f830112612c6d57600080fd5b8135612c7d848260208601612b42565b91505092915050565b600082601f830112612c9757600080fd5b8135612ca7848260208601612b80565b91505092915050565b600081359050612cbf81614189565b92915050565b600060208284031215612cd757600080fd5b6000612ce584828501612bbe565b91505092915050565b60008060408385031215612d0157600080fd5b6000612d0f85828601612bbe565b9250506020612d2085828601612bbe565b9150509250929050565b600080600060608486031215612d3f57600080fd5b6000612d4d86828701612bbe565b9350506020612d5e86828701612bbe565b9250506040612d6f86828701612cb0565b9150509250925092565b60008060008060808587031215612d8f57600080fd5b6000612d9d87828801612bbe565b9450506020612dae87828801612bbe565b9350506040612dbf87828801612cb0565b925050606085013567ffffffffffffffff811115612ddc57600080fd5b612de887828801612c5c565b91505092959194509250565b60008060408385031215612e0757600080fd5b6000612e1585828601612bbe565b9250506020612e2685828601612c1d565b9150509250929050565b60008060408385031215612e4357600080fd5b6000612e5185828601612bbe565b9250506020612e6285828601612cb0565b9150509250929050565b60008060208385031215612e7f57600080fd5b600083013567ffffffffffffffff811115612e9957600080fd5b612ea585828601612bd3565b92509250509250929050565b600060208284031215612ec357600080fd5b6000612ed184828501612c1d565b91505092915050565b600060208284031215612eec57600080fd5b6000612efa84828501612c32565b91505092915050565b600060208284031215612f1557600080fd5b6000612f2384828501612c47565b91505092915050565b600060208284031215612f3e57600080fd5b600082013567ffffffffffffffff811115612f5857600080fd5b612f6484828501612c86565b91505092915050565b600060208284031215612f7f57600080fd5b6000612f8d84828501612cb0565b91505092915050565b6000612fa28383612fae565b60208301905092915050565b612fb781613970565b82525050565b612fc681613970565b82525050565b6000612fd782613849565b612fe18185613877565b9350612fec83613839565b8060005b8381101561301d5781516130048882612f96565b975061300f8361386a565b925050600181019050612ff0565b5085935050505092915050565b61303381613982565b82525050565b600061304482613854565b61304e8185613888565b935061305e8185602086016139f3565b61306781613bbf565b840191505092915050565b600061307d8261385f565b6130878185613899565b93506130978185602086016139f3565b6130a081613bbf565b840191505092915050565b60006130b68261385f565b6130c081856138aa565b93506130d08185602086016139f3565b80840191505092915050565b60006130e9601483613899565b91506130f482613bd0565b602082019050919050565b600061310c601c83613899565b915061311782613bf9565b602082019050919050565b600061312f603283613899565b915061313a82613c22565b604082019050919050565b6000613152602683613899565b915061315d82613c71565b604082019050919050565b6000613175601c83613899565b915061318082613cc0565b602082019050919050565b6000613198602483613899565b91506131a382613ce9565b604082019050919050565b60006131bb601983613899565b91506131c682613d38565b602082019050919050565b60006131de602c83613899565b91506131e982613d61565b604082019050919050565b6000613201602783613899565b915061320c82613db0565b604082019050919050565b6000613224601083613899565b915061322f82613dff565b602082019050919050565b6000613247603883613899565b915061325282613e28565b604082019050919050565b600061326a602a83613899565b915061327582613e77565b604082019050919050565b600061328d602983613899565b915061329882613ec6565b604082019050919050565b60006132b0602083613899565b91506132bb82613f15565b602082019050919050565b60006132d3602c83613899565b91506132de82613f3e565b604082019050919050565b60006132f6602083613899565b915061330182613f8d565b602082019050919050565b6000613319602983613899565b915061332482613fb6565b604082019050919050565b600061333c602f83613899565b915061334782614005565b604082019050919050565b600061335f601183613899565b915061336a82614054565b602082019050919050565b6000613382602183613899565b915061338d8261407d565b604082019050919050565b60006133a5601983613899565b91506133b0826140cc565b602082019050919050565b60006133c8603183613899565b91506133d3826140f5565b604082019050919050565b6133e7816139da565b82525050565b60006133f982856130ab565b915061340582846130ab565b91508190509392505050565b60006020820190506134266000830184612fbd565b92915050565b60006080820190506134416000830187612fbd565b61344e6020830186612fbd565b61345b60408301856133de565b818103606083015261346d8184613039565b905095945050505050565b600060208201905081810360008301526134928184612fcc565b905092915050565b60006020820190506134af600083018461302a565b92915050565b600060208201905081810360008301526134cf8184613072565b905092915050565b600060208201905081810360008301526134f0816130dc565b9050919050565b60006020820190508181036000830152613510816130ff565b9050919050565b6000602082019050818103600083015261353081613122565b9050919050565b6000602082019050818103600083015261355081613145565b9050919050565b6000602082019050818103600083015261357081613168565b9050919050565b600060208201905081810360008301526135908161318b565b9050919050565b600060208201905081810360008301526135b0816131ae565b9050919050565b600060208201905081810360008301526135d0816131d1565b9050919050565b600060208201905081810360008301526135f0816131f4565b9050919050565b6000602082019050818103600083015261361081613217565b9050919050565b600060208201905081810360008301526136308161323a565b9050919050565b600060208201905081810360008301526136508161325d565b9050919050565b6000602082019050818103600083015261367081613280565b9050919050565b60006020820190508181036000830152613690816132a3565b9050919050565b600060208201905081810360008301526136b0816132c6565b9050919050565b600060208201905081810360008301526136d0816132e9565b9050919050565b600060208201905081810360008301526136f08161330c565b9050919050565b600060208201905081810360008301526137108161332f565b9050919050565b6000602082019050818103600083015261373081613352565b9050919050565b6000602082019050818103600083015261375081613375565b9050919050565b6000602082019050818103600083015261377081613398565b9050919050565b60006020820190508181036000830152613790816133bb565b9050919050565b60006020820190506137ac60008301846133de565b92915050565b60006137bc6137cd565b90506137c88282613a58565b919050565b6000604051905090565b600067ffffffffffffffff8211156137f2576137f1613b90565b5b6137fb82613bbf565b9050602081019050919050565b600067ffffffffffffffff82111561382357613822613b90565b5b61382c82613bbf565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138c0826139da565b91506138cb836139da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613900576138ff613b03565b5b828201905092915050565b6000613916826139da565b9150613921836139da565b92508261393157613930613b32565b5b828204905092915050565b6000613947826139da565b9150613952836139da565b92508282101561396557613964613b03565b5b828203905092915050565b600061397b826139ba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a115780820151818401526020810190506139f6565b83811115613a20576000848401525b50505050565b60006002820490506001821680613a3e57607f821691505b60208210811415613a5257613a51613b61565b5b50919050565b613a6182613bbf565b810181811067ffffffffffffffff82111715613a8057613a7f613b90565b5b80604052505050565b6000613a94826139da565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ac757613ac6613b03565b5b600182019050919050565b6000613add826139da565b9150613ae8836139da565b925082613af857613af7613b32565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f43616e2774206d696e74206f76657220737570706c79206c696d697400000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74206f6e65206d656d626572736869702070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e742073656e74000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f57616c6c6574206973206e6f742077686974656c697374656400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61414d81613970565b811461415857600080fd5b50565b61416481613982565b811461416f57600080fd5b50565b61417b8161398e565b811461418657600080fd5b50565b614192816139da565b811461419d57600080fd5b5056fea2646970667358221220457aa7ada987d5580dcc4932ec2e404bca3a34c6688674f23c548313bec00ec364736f6c6343000804003368747470733a2f2f6170692e666c6176612e746f6f6c732f6170692f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80636352211e1161010d5780639c70b512116100a0578063c167d1cd1161006f578063c167d1cd146106b2578063c5922754146106dd578063c87b56dd1461071a578063e985e9c514610757578063f2fde38b14610794576101f9565b80639c70b5121461060a578063a22cb46514610635578063ac928f661461065e578063b88d4fde14610689576101f9565b80638da5cb5b116100dc5780638da5cb5b1461056057806391b7f5ed1461058b57806395d89b41146105b457806398d5fdca146105df576101f9565b80636352211e146104b857806370a08231146104f5578063715018a6146105325780638456cb5914610549576101f9565b806323b872dd116101905780633f4ba83a1161015f5780633f4ba83a146103fb57806342842e0e14610412578063524feed51461043b57806355f804b3146104645780635c975abb1461048d576101f9565b806323b872dd146103555780633af32abf1461037e5780633c952764146103bb5780633ccfd60b146103e4576101f9565b806312065fe0116101cc57806312065fe0146102cc5780631249c58b146102f75780631723934d1461030157806318160ddd1461032a576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612eda565b6107bd565b604051610232919061349a565b60405180910390f35b34801561024757600080fd5b5061025061089f565b60405161025d91906134b5565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612f6d565b610931565b60405161029a9190613411565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c59190612e30565b6109b6565b005b3480156102d857600080fd5b506102e1610ace565b6040516102ee9190613797565b60405180910390f35b6102ff610ad6565b005b34801561030d57600080fd5b5061032860048036038101906103239190612f6d565b610d3b565b005b34801561033657600080fd5b5061033f610dc1565b60405161034c9190613797565b60405180910390f35b34801561036157600080fd5b5061037c60048036038101906103779190612d2a565b610dd2565b005b34801561038a57600080fd5b506103a560048036038101906103a09190612cc5565b610e32565b6040516103b2919061349a565b60405180910390f35b3480156103c757600080fd5b506103e260048036038101906103dd9190612eb1565b610f07565b005b3480156103f057600080fd5b506103f9610fa0565b005b34801561040757600080fd5b5061041061106b565b005b34801561041e57600080fd5b5061043960048036038101906104349190612d2a565b611138565b005b34801561044757600080fd5b50610462600480360381019061045d9190612e6c565b611158565b005b34801561047057600080fd5b5061048b60048036038101906104869190612f2c565b6111f8565b005b34801561049957600080fd5b506104a261128e565b6040516104af919061349a565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190612f6d565b6112a5565b6040516104ec9190613411565b60405180910390f35b34801561050157600080fd5b5061051c60048036038101906105179190612cc5565b611357565b6040516105299190613797565b60405180910390f35b34801561053e57600080fd5b5061054761140f565b005b34801561055557600080fd5b5061055e611497565b005b34801561056c57600080fd5b50610575611565565b6040516105829190613411565b60405180910390f35b34801561059757600080fd5b506105b260048036038101906105ad9190612f6d565b61158f565b005b3480156105c057600080fd5b506105c9611615565b6040516105d691906134b5565b60405180910390f35b3480156105eb57600080fd5b506105f46116a7565b6040516106019190613797565b60405180910390f35b34801561061657600080fd5b5061061f6116b1565b60405161062c919061349a565b60405180910390f35b34801561064157600080fd5b5061065c60048036038101906106579190612df4565b6116c4565b005b34801561066a57600080fd5b50610673611845565b6040516106809190613478565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190612d79565b61194f565b005b3480156106be57600080fd5b506106c76119b1565b6040516106d49190613797565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff9190612f6d565b6119bb565b6040516107119190613411565b60405180910390f35b34801561072657600080fd5b50610741600480360381019061073c9190612f6d565b6119fa565b60405161074e91906134b5565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190612cee565b611aa1565b60405161078b919061349a565b60405180910390f35b3480156107a057600080fd5b506107bb60048036038101906107b69190612cc5565b611b35565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610898575061089782611c64565b5b9050919050565b6060600080546108ae90613a26565b80601f01602080910402602001604051908101604052809291908181526020018280546108da90613a26565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b600061093c82611cce565b61097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290613697565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109c1826112a5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990613737565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a51611d3a565b73ffffffffffffffffffffffffffffffffffffffff161480610a805750610a7f81610a7a611d3a565b611aa1565b5b610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab690613617565b60405180910390fd5b610ac98383611d42565b505050565b600047905090565b610ade61128e565b15610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b15906135f7565b60405180910390fd5b60011515600d60009054906101000a900460ff161515148015610b745750610b44611565565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610bc257610b8233610e32565b610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890613757565b60405180910390fd5b5b600a54610bcf6007611c43565b10610c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c06906134f7565b60405180910390fd5b610c17611565565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cd9576009543414610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490613717565b60405180910390fd5b6000610c9833611357565b14610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf906135d7565b60405180910390fd5b5b610ce233611dfb565b3373ffffffffffffffffffffffffffffffffffffffff167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885610d246007611c43565b604051610d319190613797565b60405180910390a2565b610d43611d3a565b73ffffffffffffffffffffffffffffffffffffffff16610d61611565565b73ffffffffffffffffffffffffffffffffffffffff1614610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906136b7565b60405180910390fd5b80600a8190555050565b6000610dcd6007611c43565b905090565b610de3610ddd611d3a565b82611e1b565b610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1990613777565b60405180910390fd5b610e2d838383611ef9565b505050565b600080600090505b600e80549050811015610efc578273ffffffffffffffffffffffffffffffffffffffff16600e8281548110610e98577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ee9576001915050610f02565b8080610ef490613a89565b915050610e3a565b50600090505b919050565b610f0f611d3a565b73ffffffffffffffffffffffffffffffffffffffff16610f2d611565565b73ffffffffffffffffffffffffffffffffffffffff1614610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906136b7565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b610fa8611d3a565b73ffffffffffffffffffffffffffffffffffffffff16610fc6611565565b73ffffffffffffffffffffffffffffffffffffffff161461101c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611013906136b7565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611067573d6000803e3d6000fd5b5050565b611073611d3a565b73ffffffffffffffffffffffffffffffffffffffff16611091611565565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de906136b7565b60405180910390fd5b6110ef61128e565b61112e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611125906134d7565b60405180910390fd5b611136612155565b565b6111538383836040518060200160405280600081525061194f565b505050565b611160611d3a565b73ffffffffffffffffffffffffffffffffffffffff1661117e611565565b73ffffffffffffffffffffffffffffffffffffffff16146111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb906136b7565b60405180910390fd5b600e60006111e291906129de565b8181600e91906111f39291906129ff565b505050565b611200611d3a565b73ffffffffffffffffffffffffffffffffffffffff1661121e611565565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b906136b7565b60405180910390fd5b806008908051906020019061128a929190612a9f565b5050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590613657565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90613637565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611417611d3a565b73ffffffffffffffffffffffffffffffffffffffff16611435611565565b73ffffffffffffffffffffffffffffffffffffffff161461148b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611482906136b7565b60405180910390fd5b61149560006121f7565b565b61149f611d3a565b73ffffffffffffffffffffffffffffffffffffffff166114bd611565565b73ffffffffffffffffffffffffffffffffffffffff1614611513576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150a906136b7565b60405180910390fd5b61151b61128e565b1561155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906135f7565b60405180910390fd5b6115636122bd565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611597611d3a565b73ffffffffffffffffffffffffffffffffffffffff166115b5611565565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611602906136b7565b60405180910390fd5b8060098190555050565b60606001805461162490613a26565b80601f016020809104026020016040519081016040528092919081815260200182805461165090613a26565b801561169d5780601f106116725761010080835404028352916020019161169d565b820191906000526020600020905b81548152906001019060200180831161168057829003601f168201915b5050505050905090565b6000600954905090565b600d60009054906101000a900460ff1681565b6116cc611d3a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561173a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173190613597565b60405180910390fd5b8060056000611747611d3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117f4611d3a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611839919061349a565b60405180910390a35050565b606061184f611d3a565b73ffffffffffffffffffffffffffffffffffffffff1661186d611565565b73ffffffffffffffffffffffffffffffffffffffff16146118c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ba906136b7565b60405180910390fd5b600e80548060200260200160405190810160405280929190818152602001828054801561194557602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116118fb575b5050505050905090565b61196061195a611d3a565b83611e1b565b61199f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199690613777565b60405180910390fd5b6119ab84848484612360565b50505050565b6000600a54905090565b600e81815481106119cb57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611a0582611cce565b611a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3b906136f7565b60405180910390fd5b6000611a4e6123bc565b90506000815111611a6e5760405180602001604052806000815250611a99565b80611a788461244e565b604051602001611a899291906133ed565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b3d611d3a565b73ffffffffffffffffffffffffffffffffffffffff16611b5b611565565b73ffffffffffffffffffffffffffffffffffffffff1614611bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba8906136b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890613537565b60405180910390fd5b611c2a816121f7565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611db5836112a5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e056007611c2d565b611e1881611e136007611c43565b6125fb565b50565b6000611e2682611cce565b611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c906135b7565b60405180910390fd5b6000611e70836112a5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611edf57508373ffffffffffffffffffffffffffffffffffffffff16611ec784610931565b73ffffffffffffffffffffffffffffffffffffffff16145b80611ef05750611eef8185611aa1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611f19826112a5565b73ffffffffffffffffffffffffffffffffffffffff1614611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f66906136d7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690613577565b60405180910390fd5b611fea838383612619565b611ff5600082611d42565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612045919061393c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461209c91906138b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61215d61128e565b61219c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612193906134d7565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121e0611d3a565b6040516121ed9190613411565b60405180910390a1565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122c561128e565b15612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc906135f7565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612349611d3a565b6040516123569190613411565b60405180910390a1565b61236b848484611ef9565b6123778484848461261e565b6123b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ad90613517565b60405180910390fd5b50505050565b6060600880546123cb90613a26565b80601f01602080910402602001604051908101604052809291908181526020018280546123f790613a26565b80156124445780601f1061241957610100808354040283529160200191612444565b820191906000526020600020905b81548152906001019060200180831161242757829003601f168201915b5050505050905090565b60606000821415612496576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125f6565b600082905060005b600082146124c85780806124b190613a89565b915050600a826124c1919061390b565b915061249e565b60008167ffffffffffffffff81111561250a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561253c5781602001600182028036833780820191505090505b5090505b600085146125ef57600182612555919061393c565b9150600a856125649190613ad2565b603061257091906138b5565b60f81b8183815181106125ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125e8919061390b565b9450612540565b8093505050505b919050565b6126158282604051806020016040528060008152506127b5565b5050565b505050565b600061263f8473ffffffffffffffffffffffffffffffffffffffff16611c51565b156127a8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612668611d3a565b8786866040518563ffffffff1660e01b815260040161268a949392919061342c565b602060405180830381600087803b1580156126a457600080fd5b505af19250505080156126d557506040513d601f19601f820116820180604052508101906126d29190612f03565b60015b612758573d8060008114612705576040519150601f19603f3d011682016040523d82523d6000602084013e61270a565b606091505b50600081511415612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790613517565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127ad565b600190505b949350505050565b6127bf8383612810565b6127cc600084848461261e565b61280b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280290613517565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287790613677565b60405180910390fd5b61288981611cce565b156128c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c090613557565b60405180910390fd5b6128d560008383612619565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461292591906138b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b50805460008255906000526020600020908101906129fc9190612b25565b50565b828054828255906000526020600020908101928215612a8e579160200282015b82811115612a8d57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612a1f565b5b509050612a9b9190612b25565b5090565b828054612aab90613a26565b90600052602060002090601f016020900481019282612acd5760008555612b14565b82601f10612ae657805160ff1916838001178555612b14565b82800160010185558215612b14579182015b82811115612b13578251825591602001919060010190612af8565b5b509050612b219190612b25565b5090565b5b80821115612b3e576000816000905550600101612b26565b5090565b6000612b55612b50846137d7565b6137b2565b905082815260208101848484011115612b6d57600080fd5b612b788482856139e4565b509392505050565b6000612b93612b8e84613808565b6137b2565b905082815260208101848484011115612bab57600080fd5b612bb68482856139e4565b509392505050565b600081359050612bcd81614144565b92915050565b60008083601f840112612be557600080fd5b8235905067ffffffffffffffff811115612bfe57600080fd5b602083019150836020820283011115612c1657600080fd5b9250929050565b600081359050612c2c8161415b565b92915050565b600081359050612c4181614172565b92915050565b600081519050612c5681614172565b92915050565b600082601f830112612c6d57600080fd5b8135612c7d848260208601612b42565b91505092915050565b600082601f830112612c9757600080fd5b8135612ca7848260208601612b80565b91505092915050565b600081359050612cbf81614189565b92915050565b600060208284031215612cd757600080fd5b6000612ce584828501612bbe565b91505092915050565b60008060408385031215612d0157600080fd5b6000612d0f85828601612bbe565b9250506020612d2085828601612bbe565b9150509250929050565b600080600060608486031215612d3f57600080fd5b6000612d4d86828701612bbe565b9350506020612d5e86828701612bbe565b9250506040612d6f86828701612cb0565b9150509250925092565b60008060008060808587031215612d8f57600080fd5b6000612d9d87828801612bbe565b9450506020612dae87828801612bbe565b9350506040612dbf87828801612cb0565b925050606085013567ffffffffffffffff811115612ddc57600080fd5b612de887828801612c5c565b91505092959194509250565b60008060408385031215612e0757600080fd5b6000612e1585828601612bbe565b9250506020612e2685828601612c1d565b9150509250929050565b60008060408385031215612e4357600080fd5b6000612e5185828601612bbe565b9250506020612e6285828601612cb0565b9150509250929050565b60008060208385031215612e7f57600080fd5b600083013567ffffffffffffffff811115612e9957600080fd5b612ea585828601612bd3565b92509250509250929050565b600060208284031215612ec357600080fd5b6000612ed184828501612c1d565b91505092915050565b600060208284031215612eec57600080fd5b6000612efa84828501612c32565b91505092915050565b600060208284031215612f1557600080fd5b6000612f2384828501612c47565b91505092915050565b600060208284031215612f3e57600080fd5b600082013567ffffffffffffffff811115612f5857600080fd5b612f6484828501612c86565b91505092915050565b600060208284031215612f7f57600080fd5b6000612f8d84828501612cb0565b91505092915050565b6000612fa28383612fae565b60208301905092915050565b612fb781613970565b82525050565b612fc681613970565b82525050565b6000612fd782613849565b612fe18185613877565b9350612fec83613839565b8060005b8381101561301d5781516130048882612f96565b975061300f8361386a565b925050600181019050612ff0565b5085935050505092915050565b61303381613982565b82525050565b600061304482613854565b61304e8185613888565b935061305e8185602086016139f3565b61306781613bbf565b840191505092915050565b600061307d8261385f565b6130878185613899565b93506130978185602086016139f3565b6130a081613bbf565b840191505092915050565b60006130b68261385f565b6130c081856138aa565b93506130d08185602086016139f3565b80840191505092915050565b60006130e9601483613899565b91506130f482613bd0565b602082019050919050565b600061310c601c83613899565b915061311782613bf9565b602082019050919050565b600061312f603283613899565b915061313a82613c22565b604082019050919050565b6000613152602683613899565b915061315d82613c71565b604082019050919050565b6000613175601c83613899565b915061318082613cc0565b602082019050919050565b6000613198602483613899565b91506131a382613ce9565b604082019050919050565b60006131bb601983613899565b91506131c682613d38565b602082019050919050565b60006131de602c83613899565b91506131e982613d61565b604082019050919050565b6000613201602783613899565b915061320c82613db0565b604082019050919050565b6000613224601083613899565b915061322f82613dff565b602082019050919050565b6000613247603883613899565b915061325282613e28565b604082019050919050565b600061326a602a83613899565b915061327582613e77565b604082019050919050565b600061328d602983613899565b915061329882613ec6565b604082019050919050565b60006132b0602083613899565b91506132bb82613f15565b602082019050919050565b60006132d3602c83613899565b91506132de82613f3e565b604082019050919050565b60006132f6602083613899565b915061330182613f8d565b602082019050919050565b6000613319602983613899565b915061332482613fb6565b604082019050919050565b600061333c602f83613899565b915061334782614005565b604082019050919050565b600061335f601183613899565b915061336a82614054565b602082019050919050565b6000613382602183613899565b915061338d8261407d565b604082019050919050565b60006133a5601983613899565b91506133b0826140cc565b602082019050919050565b60006133c8603183613899565b91506133d3826140f5565b604082019050919050565b6133e7816139da565b82525050565b60006133f982856130ab565b915061340582846130ab565b91508190509392505050565b60006020820190506134266000830184612fbd565b92915050565b60006080820190506134416000830187612fbd565b61344e6020830186612fbd565b61345b60408301856133de565b818103606083015261346d8184613039565b905095945050505050565b600060208201905081810360008301526134928184612fcc565b905092915050565b60006020820190506134af600083018461302a565b92915050565b600060208201905081810360008301526134cf8184613072565b905092915050565b600060208201905081810360008301526134f0816130dc565b9050919050565b60006020820190508181036000830152613510816130ff565b9050919050565b6000602082019050818103600083015261353081613122565b9050919050565b6000602082019050818103600083015261355081613145565b9050919050565b6000602082019050818103600083015261357081613168565b9050919050565b600060208201905081810360008301526135908161318b565b9050919050565b600060208201905081810360008301526135b0816131ae565b9050919050565b600060208201905081810360008301526135d0816131d1565b9050919050565b600060208201905081810360008301526135f0816131f4565b9050919050565b6000602082019050818103600083015261361081613217565b9050919050565b600060208201905081810360008301526136308161323a565b9050919050565b600060208201905081810360008301526136508161325d565b9050919050565b6000602082019050818103600083015261367081613280565b9050919050565b60006020820190508181036000830152613690816132a3565b9050919050565b600060208201905081810360008301526136b0816132c6565b9050919050565b600060208201905081810360008301526136d0816132e9565b9050919050565b600060208201905081810360008301526136f08161330c565b9050919050565b600060208201905081810360008301526137108161332f565b9050919050565b6000602082019050818103600083015261373081613352565b9050919050565b6000602082019050818103600083015261375081613375565b9050919050565b6000602082019050818103600083015261377081613398565b9050919050565b60006020820190508181036000830152613790816133bb565b9050919050565b60006020820190506137ac60008301846133de565b92915050565b60006137bc6137cd565b90506137c88282613a58565b919050565b6000604051905090565b600067ffffffffffffffff8211156137f2576137f1613b90565b5b6137fb82613bbf565b9050602081019050919050565b600067ffffffffffffffff82111561382357613822613b90565b5b61382c82613bbf565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138c0826139da565b91506138cb836139da565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613900576138ff613b03565b5b828201905092915050565b6000613916826139da565b9150613921836139da565b92508261393157613930613b32565b5b828204905092915050565b6000613947826139da565b9150613952836139da565b92508282101561396557613964613b03565b5b828203905092915050565b600061397b826139ba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a115780820151818401526020810190506139f6565b83811115613a20576000848401525b50505050565b60006002820490506001821680613a3e57607f821691505b60208210811415613a5257613a51613b61565b5b50919050565b613a6182613bbf565b810181811067ffffffffffffffff82111715613a8057613a7f613b90565b5b80604052505050565b6000613a94826139da565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ac757613ac6613b03565b5b600182019050919050565b6000613add826139da565b9150613ae8836139da565b925082613af857613af7613b32565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f43616e2774206d696e74206f76657220737570706c79206c696d697400000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616e206f6e6c79206d696e74206f6e65206d656d626572736869702070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f57726f6e6720616d6f756e742073656e74000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f57616c6c6574206973206e6f742077686974656c697374656400000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61414d81613970565b811461415857600080fd5b50565b61416481613982565b811461416f57600080fd5b50565b61417b8161398e565b811461418657600080fd5b50565b614192816139da565b811461419d57600080fd5b5056fea2646970667358221220457aa7ada987d5580dcc4932ec2e404bca3a34c6688674f23c548313bec00ec364736f6c63430008040033

Deployed Bytecode Sourcemap

38783:3350:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20638:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21583:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23142:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22665:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40815:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39501:610;;;:::i;:::-;;41210:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42033:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24032:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40119:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40399:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41344:150;;;;;;;;;;;;;:::i;:::-;;41948:77;;;;;;;;;;;;;:::i;:::-;;24442:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40508:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41616:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33837:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21277:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21007:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38088:94;;;;;;;;;;;;;:::i;:::-;;41865:75;;;;;;;;;;;;;:::i;:::-;;37437:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41008:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21752:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40918:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39193:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23435:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40679:126;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24698:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41099:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39235:35;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21927:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23801:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38337:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20638:305;20740:4;20792:25;20777:40;;;:11;:40;;;;:105;;;;20849:33;20834:48;;;:11;:48;;;;20777:105;:158;;;;20899:36;20923:11;20899:23;:36::i;:::-;20777:158;20757:178;;20638:305;;;:::o;21583:100::-;21637:13;21670:5;21663:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21583:100;:::o;23142:221::-;23218:7;23246:16;23254:7;23246;:16::i;:::-;23238:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23331:15;:24;23347:7;23331:24;;;;;;;;;;;;;;;;;;;;;23324:31;;23142:221;;;:::o;22665:411::-;22746:13;22762:23;22777:7;22762:14;:23::i;:::-;22746:39;;22810:5;22804:11;;:2;:11;;;;22796:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22904:5;22888:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22913:37;22930:5;22937:12;:10;:12::i;:::-;22913:16;:37::i;:::-;22888:62;22866:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23047:21;23056:2;23060:7;23047:8;:21::i;:::-;22665:411;;;:::o;40815:95::-;40857:4;40881:21;40874:28;;40815:95;:::o;39501:610::-;34163:8;:6;:8::i;:::-;34162:9;34154:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;39579:4:::1;39560:23;;:15;;;;;;;;;;;:23;;;:48;;;;;39601:7;:5;:7::i;:::-;39587:21;;:10;:21;;;;39560:48;39557:143;;;39633:25;39647:10;39633:13;:25::i;:::-;39625:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;39557:143;39750:17;;39728:19;:9;:17;:19::i;:::-;:39;39720:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;39831:7;:5;:7::i;:::-;39817:21;;:10;:21;;;39813:196;;39876:6;;39863:9;:19;39855:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;39952:1;39927:21;39937:10;39927:9;:21::i;:::-;:26;39919:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;39813:196;40029:21;40039:10;40029:9;:21::i;:::-;40071:10;40066:37;;;40083:19;:9;:17;:19::i;:::-;40066:37;;;;;;:::i;:::-;;;;;;;;39501:610::o:0;41210:126::-;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41312:16:::1;41292:17;:36;;;;41210:126:::0;:::o;42033:97::-;42077:7;42103:19;:9;:17;:19::i;:::-;42096:26;;42033:97;:::o;24032:339::-;24227:41;24246:12;:10;:12::i;:::-;24260:7;24227:18;:41::i;:::-;24219:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24335:28;24345:4;24351:2;24355:7;24335:9;:28::i;:::-;24032:339;;;:::o;40119:272::-;40179:4;40201:6;40210:1;40201:10;;40196:162;40217:18;:25;;;;40213:1;:29;40196:162;;;40293:6;40268:31;;:18;40287:1;40268:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;40264:83;;;40327:4;40320:11;;;;;40264:83;40244:3;;;;;:::i;:::-;;;;40196:162;;;;40378:5;40371:12;;40119:272;;;;:::o;40399:101::-;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40486:6:::1;40468:15;;:24;;;;;;;;;;;;;;;;;;40399:101:::0;:::o;41344:150::-;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41392:12:::1;41407:21;41392:36;;41457:10;41449:28;;:37;41478:7;41449:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;37728:1;41344:150::o:0;41948:77::-;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34440:8:::1;:6;:8::i;:::-;34432:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;42007:10:::2;:8;:10::i;:::-;41948:77::o:0;24442:185::-;24580:39;24597:4;24603:2;24607:7;24580:39;;;;;;;;;;;;:16;:39::i;:::-;24442:185;;;:::o;40508:161::-;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40602:18:::1;;40595:25;;;;:::i;:::-;40652:9;;40631:18;:30;;;;;;;:::i;:::-;;40508:161:::0;;:::o;41616:102::-;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41703:7:::1;41687:13;:23;;;;;;;;;;;;:::i;:::-;;41616:102:::0;:::o;33837:86::-;33884:4;33908:7;;;;;;;;;;;33901:14;;33837:86;:::o;21277:239::-;21349:7;21369:13;21385:7;:16;21393:7;21385:16;;;;;;;;;;;;;;;;;;;;;21369:32;;21437:1;21420:19;;:5;:19;;;;21412:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21503:5;21496:12;;;21277:239;;;:::o;21007:208::-;21079:7;21124:1;21107:19;;:5;:19;;;;21099:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21191:9;:16;21201:5;21191:16;;;;;;;;;;;;;;;;21184:23;;21007:208;;;:::o;38088:94::-;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38153:21:::1;38171:1;38153:9;:21::i;:::-;38088:94::o:0;41865:75::-;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34163:8:::1;:6;:8::i;:::-;34162:9;34154:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;41924:8:::2;:6;:8::i;:::-;41865:75::o:0;37437:87::-;37483:7;37510:6;;;;;;;;;;;37503:13;;37437:87;:::o;41008:83::-;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41078:5:::1;41069:6;:14;;;;41008:83:::0;:::o;21752:104::-;21808:13;21841:7;21834:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21752:104;:::o;40918:82::-;40959:7;40986:6;;40979:13;;40918:82;:::o;39193:35::-;;;;;;;;;;;;;:::o;23435:295::-;23550:12;:10;:12::i;:::-;23538:24;;:8;:24;;;;23530:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23650:8;23605:18;:32;23624:12;:10;:12::i;:::-;23605:32;;;;;;;;;;;;;;;:42;23638:8;23605:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23703:8;23674:48;;23689:12;:10;:12::i;:::-;23674:48;;;23713:8;23674:48;;;;;;:::i;:::-;;;;;;;;23435:295;;:::o;40679:126::-;40743:16;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40779:18:::1;40772:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40679:126:::0;:::o;24698:328::-;24873:41;24892:12;:10;:12::i;:::-;24906:7;24873:18;:41::i;:::-;24865:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24979:39;24993:4;24999:2;25003:7;25012:5;24979:13;:39::i;:::-;24698:328;;;;:::o;41099:103::-;41150:7;41177:17;;41170:24;;41099:103;:::o;39235:35::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21927:334::-;22000:13;22034:16;22042:7;22034;:16::i;:::-;22026:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22115:21;22139:10;:8;:10::i;:::-;22115:34;;22191:1;22173:7;22167:21;:25;:86;;;;;;;;;;;;;;;;;22219:7;22228:18;:7;:16;:18::i;:::-;22202:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22167:86;22160:93;;;21927:334;;;:::o;23801:164::-;23898:4;23922:18;:25;23941:5;23922:25;;;;;;;;;;;;;;;:35;23948:8;23922:35;;;;;;;;;;;;;;;;;;;;;;;;;23915:42;;23801:164;;;;:::o;38337:192::-;37668:12;:10;:12::i;:::-;37657:23;;:7;:5;:7::i;:::-;:23;;;37649:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38446:1:::1;38426:22;;:8;:22;;;;38418:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38502:19;38512:8;38502:9;:19::i;:::-;38337:192:::0;:::o;35966:127::-;36073:1;36055:7;:14;;;:19;;;;;;;;;;;35966:127;:::o;35844:114::-;35909:7;35936;:14;;;35929:21;;35844:114;;;:::o;8090:387::-;8150:4;8358:12;8425:7;8413:20;8405:28;;8468:1;8461:4;:8;8454:15;;;8090:387;;;:::o;19138:157::-;19223:4;19262:25;19247:40;;;:11;:40;;;;19240:47;;19138:157;;;:::o;26536:127::-;26601:4;26653:1;26625:30;;:7;:16;26633:7;26625:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26618:37;;26536:127;;;:::o;16050:98::-;16103:7;16130:10;16123:17;;16050:98;:::o;30518:174::-;30620:2;30593:15;:24;30609:7;30593:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30676:7;30672:2;30638:46;;30647:23;30662:7;30647:14;:23::i;:::-;30638:46;;;;;;;;;;;;30518:174;;:::o;41726:131::-;41780:21;:9;:19;:21::i;:::-;41812:37;41822:5;41829:19;:9;:17;:19::i;:::-;41812:9;:37::i;:::-;41726:131;:::o;26830:348::-;26923:4;26948:16;26956:7;26948;:16::i;:::-;26940:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27024:13;27040:23;27055:7;27040:14;:23::i;:::-;27024:39;;27093:5;27082:16;;:7;:16;;;:51;;;;27126:7;27102:31;;:20;27114:7;27102:11;:20::i;:::-;:31;;;27082:51;:87;;;;27137:32;27154:5;27161:7;27137:16;:32::i;:::-;27082:87;27074:96;;;26830:348;;;;:::o;29822:578::-;29981:4;29954:31;;:23;29969:7;29954:14;:23::i;:::-;:31;;;29946:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30064:1;30050:16;;:2;:16;;;;30042:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30120:39;30141:4;30147:2;30151:7;30120:20;:39::i;:::-;30224:29;30241:1;30245:7;30224:8;:29::i;:::-;30285:1;30266:9;:15;30276:4;30266:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30314:1;30297:9;:13;30307:2;30297:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30345:2;30326:7;:16;30334:7;30326:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30384:7;30380:2;30365:27;;30374:4;30365:27;;;;;;;;;;;;29822:578;;;:::o;34896:120::-;34440:8;:6;:8::i;:::-;34432:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;34965:5:::1;34955:7;;:15;;;;;;;;;;;;;;;;;;34986:22;34995:12;:10;:12::i;:::-;34986:22;;;;;;:::i;:::-;;;;;;;;34896:120::o:0;38537:173::-;38593:16;38612:6;;;;;;;;;;;38593:25;;38638:8;38629:6;;:17;;;;;;;;;;;;;;;;;;38693:8;38662:40;;38683:8;38662:40;;;;;;;;;;;;38537:173;;:::o;34637:118::-;34163:8;:6;:8::i;:::-;34162:9;34154:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;34707:4:::1;34697:7;;:14;;;;;;;;;;;;;;;;;;34727:20;34734:12;:10;:12::i;:::-;34727:20;;;;;;:::i;:::-;;;;;;;;34637:118::o:0;25908:315::-;26065:28;26075:4;26081:2;26085:7;26065:9;:28::i;:::-;26112:48;26135:4;26141:2;26145:7;26154:5;26112:22;:48::i;:::-;26104:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25908:315;;;;:::o;41502:106::-;41554:13;41587;41580:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41502:106;:::o;16579:723::-;16635:13;16865:1;16856:5;:10;16852:53;;;16883:10;;;;;;;;;;;;;;;;;;;;;16852:53;16915:12;16930:5;16915:20;;16946:14;16971:78;16986:1;16978:4;:9;16971:78;;17004:8;;;;;:::i;:::-;;;;17035:2;17027:10;;;;;:::i;:::-;;;16971:78;;;17059:19;17091:6;17081:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17059:39;;17109:154;17125:1;17116:5;:10;17109:154;;17153:1;17143:11;;;;;:::i;:::-;;;17220:2;17212:5;:10;;;;:::i;:::-;17199:2;:24;;;;:::i;:::-;17186:39;;17169:6;17176;17169:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17249:2;17240:11;;;;;:::i;:::-;;;17109:154;;;17287:6;17273:21;;;;;16579:723;;;;:::o;27520:110::-;27596:26;27606:2;27610:7;27596:26;;;;;;;;;;;;:9;:26::i;:::-;27520:110;;:::o;32628:126::-;;;;:::o;31257:799::-;31412:4;31433:15;:2;:13;;;:15::i;:::-;31429:620;;;31485:2;31469:36;;;31506:12;:10;:12::i;:::-;31520:4;31526:7;31535:5;31469:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31465:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31728:1;31711:6;:13;:18;31707:272;;;31754:60;;;;;;;;;;:::i;:::-;;;;;;;;31707:272;31929:6;31923:13;31914:6;31910:2;31906:15;31899:38;31465:529;31602:41;;;31592:51;;;:6;:51;;;;31585:58;;;;;31429:620;32033:4;32026:11;;31257:799;;;;;;;:::o;27857:321::-;27987:18;27993:2;27997:7;27987:5;:18::i;:::-;28038:54;28069:1;28073:2;28077:7;28086:5;28038:22;:54::i;:::-;28016:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27857:321;;;:::o;28514:382::-;28608:1;28594:16;;:2;:16;;;;28586:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28667:16;28675:7;28667;:16::i;:::-;28666:17;28658:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28729:45;28758:1;28762:2;28766:7;28729:20;:45::i;:::-;28804:1;28787:9;:13;28797:2;28787:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28835:2;28816:7;:16;28824:7;28816:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28880:7;28876:2;28855:33;;28872:1;28855:33;;;;;;;;;;;;28514:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343: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:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;869:367::-;942:8;952:6;1002:3;995:4;987:6;983:17;979:27;969:2;;1020:1;1017;1010:12;969:2;1056:6;1043:20;1033:30;;1086:18;1078:6;1075:30;1072:2;;;1118:1;1115;1108:12;1072:2;1155:4;1147:6;1143:17;1131:29;;1209:3;1201:4;1193:6;1189:17;1179:8;1175:32;1172:41;1169:2;;;1226:1;1223;1216:12;1169:2;959:277;;;;;:::o;1242:133::-;1285:5;1323:6;1310:20;1301:29;;1339:30;1363:5;1339:30;:::i;:::-;1291:84;;;;:::o;1381:137::-;1426:5;1464:6;1451:20;1442:29;;1480:32;1506:5;1480:32;:::i;:::-;1432:86;;;;:::o;1524:141::-;1580:5;1611:6;1605:13;1596:22;;1627:32;1653:5;1627:32;:::i;:::-;1586:79;;;;:::o;1684:271::-;1739:5;1788:3;1781:4;1773:6;1769:17;1765:27;1755:2;;1806:1;1803;1796:12;1755:2;1846:6;1833:20;1871:78;1945:3;1937:6;1930:4;1922:6;1918:17;1871:78;:::i;:::-;1862:87;;1745:210;;;;;:::o;1975:273::-;2031:5;2080:3;2073:4;2065:6;2061:17;2057:27;2047:2;;2098:1;2095;2088:12;2047:2;2138:6;2125:20;2163:79;2238:3;2230:6;2223:4;2215:6;2211:17;2163:79;:::i;:::-;2154:88;;2037:211;;;;;:::o;2254:139::-;2300:5;2338:6;2325:20;2316:29;;2354:33;2381:5;2354:33;:::i;:::-;2306:87;;;;:::o;2399:262::-;2458:6;2507:2;2495:9;2486:7;2482:23;2478:32;2475:2;;;2523:1;2520;2513:12;2475:2;2566:1;2591:53;2636:7;2627:6;2616:9;2612:22;2591:53;:::i;:::-;2581:63;;2537:117;2465:196;;;;:::o;2667:407::-;2735:6;2743;2792:2;2780:9;2771:7;2767:23;2763:32;2760:2;;;2808:1;2805;2798:12;2760:2;2851:1;2876:53;2921:7;2912:6;2901:9;2897:22;2876:53;:::i;:::-;2866:63;;2822:117;2978:2;3004:53;3049:7;3040:6;3029:9;3025:22;3004:53;:::i;:::-;2994:63;;2949:118;2750:324;;;;;:::o;3080:552::-;3157:6;3165;3173;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3238:1;3235;3228:12;3190:2;3281:1;3306:53;3351:7;3342:6;3331:9;3327:22;3306:53;:::i;:::-;3296:63;;3252:117;3408:2;3434:53;3479:7;3470:6;3459:9;3455:22;3434:53;:::i;:::-;3424:63;;3379:118;3536:2;3562:53;3607:7;3598:6;3587:9;3583:22;3562:53;:::i;:::-;3552:63;;3507:118;3180:452;;;;;:::o;3638:809::-;3733:6;3741;3749;3757;3806:3;3794:9;3785:7;3781:23;3777:33;3774:2;;;3823:1;3820;3813:12;3774:2;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;4277:2;4266:9;4262:18;4249:32;4308:18;4300:6;4297:30;4294:2;;;4340:1;4337;4330:12;4294:2;4368:62;4422:7;4413:6;4402:9;4398:22;4368:62;:::i;:::-;4358:72;;4220:220;3764:683;;;;;;;:::o;4453:401::-;4518:6;4526;4575:2;4563:9;4554:7;4550:23;4546:32;4543:2;;;4591:1;4588;4581:12;4543:2;4634:1;4659:53;4704:7;4695:6;4684:9;4680:22;4659:53;:::i;:::-;4649:63;;4605:117;4761:2;4787:50;4829:7;4820:6;4809:9;4805:22;4787:50;:::i;:::-;4777:60;;4732:115;4533:321;;;;;:::o;4860:407::-;4928:6;4936;4985:2;4973:9;4964:7;4960:23;4956:32;4953:2;;;5001:1;4998;4991:12;4953:2;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;4943:324;;;;;:::o;5273:425::-;5359:6;5367;5416:2;5404:9;5395:7;5391:23;5387:32;5384:2;;;5432:1;5429;5422:12;5384:2;5503:1;5492:9;5488:17;5475:31;5533:18;5525:6;5522:30;5519:2;;;5565:1;5562;5555:12;5519:2;5601:80;5673:7;5664:6;5653:9;5649:22;5601:80;:::i;:::-;5583:98;;;;5446:245;5374:324;;;;;:::o;5704:256::-;5760:6;5809:2;5797:9;5788:7;5784:23;5780:32;5777:2;;;5825:1;5822;5815:12;5777:2;5868:1;5893:50;5935:7;5926:6;5915:9;5911:22;5893:50;:::i;:::-;5883:60;;5839:114;5767:193;;;;:::o;5966:260::-;6024:6;6073:2;6061:9;6052:7;6048:23;6044:32;6041:2;;;6089:1;6086;6079:12;6041:2;6132:1;6157:52;6201:7;6192:6;6181:9;6177:22;6157:52;:::i;:::-;6147:62;;6103:116;6031:195;;;;:::o;6232:282::-;6301:6;6350:2;6338:9;6329:7;6325:23;6321:32;6318:2;;;6366:1;6363;6356:12;6318:2;6409:1;6434:63;6489:7;6480:6;6469:9;6465:22;6434:63;:::i;:::-;6424:73;;6380:127;6308:206;;;;:::o;6520:375::-;6589:6;6638:2;6626:9;6617:7;6613:23;6609:32;6606:2;;;6654:1;6651;6644:12;6606:2;6725:1;6714:9;6710:17;6697:31;6755:18;6747:6;6744:30;6741:2;;;6787:1;6784;6777:12;6741:2;6815:63;6870:7;6861:6;6850:9;6846:22;6815:63;:::i;:::-;6805:73;;6668:220;6596:299;;;;:::o;6901:262::-;6960:6;7009:2;6997:9;6988:7;6984:23;6980:32;6977:2;;;7025:1;7022;7015:12;6977:2;7068:1;7093:53;7138:7;7129:6;7118:9;7114:22;7093:53;:::i;:::-;7083:63;;7039:117;6967:196;;;;:::o;7169:179::-;7238:10;7259:46;7301:3;7293:6;7259:46;:::i;:::-;7337:4;7332:3;7328:14;7314:28;;7249:99;;;;:::o;7354:108::-;7431:24;7449:5;7431:24;:::i;:::-;7426:3;7419:37;7409:53;;:::o;7468:118::-;7555:24;7573:5;7555:24;:::i;:::-;7550:3;7543:37;7533:53;;:::o;7622:732::-;7741:3;7770:54;7818:5;7770:54;:::i;:::-;7840:86;7919:6;7914:3;7840:86;:::i;:::-;7833:93;;7950:56;8000:5;7950:56;:::i;:::-;8029:7;8060:1;8045:284;8070:6;8067:1;8064:13;8045:284;;;8146:6;8140:13;8173:63;8232:3;8217:13;8173:63;:::i;:::-;8166:70;;8259:60;8312:6;8259:60;:::i;:::-;8249:70;;8105:224;8092:1;8089;8085:9;8080:14;;8045:284;;;8049:14;8345:3;8338:10;;7746:608;;;;;;;:::o;8360:109::-;8441:21;8456:5;8441:21;:::i;:::-;8436:3;8429:34;8419:50;;:::o;8475:360::-;8561:3;8589:38;8621:5;8589:38;:::i;:::-;8643:70;8706:6;8701:3;8643:70;:::i;:::-;8636:77;;8722:52;8767:6;8762:3;8755:4;8748:5;8744:16;8722:52;:::i;:::-;8799:29;8821:6;8799:29;:::i;:::-;8794:3;8790:39;8783:46;;8565:270;;;;;:::o;8841:364::-;8929:3;8957:39;8990:5;8957:39;:::i;:::-;9012:71;9076:6;9071:3;9012:71;:::i;:::-;9005:78;;9092:52;9137:6;9132:3;9125:4;9118:5;9114:16;9092:52;:::i;:::-;9169:29;9191:6;9169:29;:::i;:::-;9164:3;9160:39;9153:46;;8933:272;;;;;:::o;9211:377::-;9317:3;9345:39;9378:5;9345:39;:::i;:::-;9400:89;9482:6;9477:3;9400:89;:::i;:::-;9393:96;;9498:52;9543:6;9538:3;9531:4;9524:5;9520:16;9498:52;:::i;:::-;9575:6;9570:3;9566:16;9559:23;;9321:267;;;;;:::o;9594:366::-;9736:3;9757:67;9821:2;9816:3;9757:67;:::i;:::-;9750:74;;9833:93;9922:3;9833:93;:::i;:::-;9951:2;9946:3;9942:12;9935:19;;9740:220;;;:::o;9966:366::-;10108:3;10129:67;10193:2;10188:3;10129:67;:::i;:::-;10122:74;;10205:93;10294:3;10205:93;:::i;:::-;10323:2;10318:3;10314:12;10307:19;;10112:220;;;:::o;10338:366::-;10480:3;10501:67;10565:2;10560:3;10501:67;:::i;:::-;10494:74;;10577:93;10666:3;10577:93;:::i;:::-;10695:2;10690:3;10686:12;10679:19;;10484:220;;;:::o;10710:366::-;10852:3;10873:67;10937:2;10932:3;10873:67;:::i;:::-;10866:74;;10949:93;11038:3;10949:93;:::i;:::-;11067:2;11062:3;11058:12;11051:19;;10856:220;;;:::o;11082:366::-;11224:3;11245:67;11309:2;11304:3;11245:67;:::i;:::-;11238:74;;11321:93;11410:3;11321:93;:::i;:::-;11439:2;11434:3;11430:12;11423:19;;11228:220;;;:::o;11454:366::-;11596:3;11617:67;11681:2;11676:3;11617:67;:::i;:::-;11610:74;;11693:93;11782:3;11693:93;:::i;:::-;11811:2;11806:3;11802:12;11795:19;;11600:220;;;:::o;11826:366::-;11968:3;11989:67;12053:2;12048:3;11989:67;:::i;:::-;11982:74;;12065:93;12154:3;12065:93;:::i;:::-;12183:2;12178:3;12174:12;12167:19;;11972:220;;;:::o;12198:366::-;12340:3;12361:67;12425:2;12420:3;12361:67;:::i;:::-;12354:74;;12437:93;12526:3;12437:93;:::i;:::-;12555:2;12550:3;12546:12;12539:19;;12344:220;;;:::o;12570:366::-;12712:3;12733:67;12797:2;12792:3;12733:67;:::i;:::-;12726:74;;12809:93;12898:3;12809:93;:::i;:::-;12927:2;12922:3;12918:12;12911:19;;12716:220;;;:::o;12942:366::-;13084:3;13105:67;13169:2;13164:3;13105:67;:::i;:::-;13098:74;;13181:93;13270:3;13181:93;:::i;:::-;13299:2;13294:3;13290:12;13283:19;;13088:220;;;:::o;13314:366::-;13456:3;13477:67;13541:2;13536:3;13477:67;:::i;:::-;13470:74;;13553:93;13642:3;13553:93;:::i;:::-;13671:2;13666:3;13662:12;13655:19;;13460:220;;;:::o;13686:366::-;13828:3;13849:67;13913:2;13908:3;13849:67;:::i;:::-;13842:74;;13925:93;14014:3;13925:93;:::i;:::-;14043:2;14038:3;14034:12;14027:19;;13832:220;;;:::o;14058:366::-;14200:3;14221:67;14285:2;14280:3;14221:67;:::i;:::-;14214:74;;14297:93;14386:3;14297:93;:::i;:::-;14415:2;14410:3;14406:12;14399:19;;14204:220;;;:::o;14430:366::-;14572:3;14593:67;14657:2;14652:3;14593:67;:::i;:::-;14586:74;;14669:93;14758:3;14669:93;:::i;:::-;14787:2;14782:3;14778:12;14771:19;;14576:220;;;:::o;14802:366::-;14944:3;14965:67;15029:2;15024:3;14965:67;:::i;:::-;14958:74;;15041:93;15130:3;15041:93;:::i;:::-;15159:2;15154:3;15150:12;15143:19;;14948:220;;;:::o;15174:366::-;15316:3;15337:67;15401:2;15396:3;15337:67;:::i;:::-;15330:74;;15413:93;15502:3;15413:93;:::i;:::-;15531:2;15526:3;15522:12;15515:19;;15320:220;;;:::o;15546:366::-;15688:3;15709:67;15773:2;15768:3;15709:67;:::i;:::-;15702:74;;15785:93;15874:3;15785:93;:::i;:::-;15903:2;15898:3;15894:12;15887:19;;15692:220;;;:::o;15918:366::-;16060:3;16081:67;16145:2;16140:3;16081:67;:::i;:::-;16074:74;;16157:93;16246:3;16157:93;:::i;:::-;16275:2;16270:3;16266:12;16259:19;;16064:220;;;:::o;16290:366::-;16432:3;16453:67;16517:2;16512:3;16453:67;:::i;:::-;16446:74;;16529:93;16618:3;16529:93;:::i;:::-;16647:2;16642:3;16638:12;16631:19;;16436:220;;;:::o;16662:366::-;16804:3;16825:67;16889:2;16884:3;16825:67;:::i;:::-;16818:74;;16901:93;16990:3;16901:93;:::i;:::-;17019:2;17014:3;17010:12;17003:19;;16808:220;;;:::o;17034:366::-;17176:3;17197:67;17261:2;17256:3;17197:67;:::i;:::-;17190:74;;17273:93;17362:3;17273:93;:::i;:::-;17391:2;17386:3;17382:12;17375:19;;17180:220;;;:::o;17406:366::-;17548:3;17569:67;17633:2;17628:3;17569:67;:::i;:::-;17562:74;;17645:93;17734:3;17645:93;:::i;:::-;17763:2;17758:3;17754:12;17747:19;;17552:220;;;:::o;17778:118::-;17865:24;17883:5;17865:24;:::i;:::-;17860:3;17853:37;17843:53;;:::o;17902:435::-;18082:3;18104:95;18195:3;18186:6;18104:95;:::i;:::-;18097:102;;18216:95;18307:3;18298:6;18216:95;:::i;:::-;18209:102;;18328:3;18321:10;;18086:251;;;;;:::o;18343:222::-;18436:4;18474:2;18463:9;18459:18;18451:26;;18487:71;18555:1;18544:9;18540:17;18531:6;18487:71;:::i;:::-;18441:124;;;;:::o;18571:640::-;18766:4;18804:3;18793:9;18789:19;18781:27;;18818:71;18886:1;18875:9;18871:17;18862:6;18818:71;:::i;:::-;18899:72;18967:2;18956:9;18952:18;18943:6;18899:72;:::i;:::-;18981;19049:2;19038:9;19034:18;19025:6;18981:72;:::i;:::-;19100:9;19094:4;19090:20;19085:2;19074:9;19070:18;19063:48;19128:76;19199:4;19190:6;19128:76;:::i;:::-;19120:84;;18771:440;;;;;;;:::o;19217:373::-;19360:4;19398:2;19387:9;19383:18;19375:26;;19447:9;19441:4;19437:20;19433:1;19422:9;19418:17;19411:47;19475:108;19578:4;19569:6;19475:108;:::i;:::-;19467:116;;19365:225;;;;:::o;19596:210::-;19683:4;19721:2;19710:9;19706:18;19698:26;;19734:65;19796:1;19785:9;19781:17;19772:6;19734:65;:::i;:::-;19688:118;;;;:::o;19812:313::-;19925:4;19963:2;19952:9;19948:18;19940:26;;20012:9;20006:4;20002:20;19998:1;19987:9;19983:17;19976:47;20040:78;20113:4;20104:6;20040:78;:::i;:::-;20032:86;;19930:195;;;;:::o;20131:419::-;20297:4;20335:2;20324:9;20320:18;20312:26;;20384:9;20378:4;20374:20;20370:1;20359:9;20355:17;20348:47;20412:131;20538:4;20412:131;:::i;:::-;20404:139;;20302:248;;;:::o;20556:419::-;20722:4;20760:2;20749:9;20745:18;20737:26;;20809:9;20803:4;20799:20;20795:1;20784:9;20780:17;20773:47;20837:131;20963:4;20837:131;:::i;:::-;20829:139;;20727:248;;;:::o;20981:419::-;21147:4;21185:2;21174:9;21170:18;21162:26;;21234:9;21228:4;21224:20;21220:1;21209:9;21205:17;21198:47;21262:131;21388:4;21262:131;:::i;:::-;21254:139;;21152:248;;;:::o;21406:419::-;21572:4;21610:2;21599:9;21595:18;21587:26;;21659:9;21653:4;21649:20;21645:1;21634:9;21630:17;21623:47;21687:131;21813:4;21687:131;:::i;:::-;21679:139;;21577:248;;;:::o;21831:419::-;21997:4;22035:2;22024:9;22020:18;22012:26;;22084:9;22078:4;22074:20;22070:1;22059:9;22055:17;22048:47;22112:131;22238:4;22112:131;:::i;:::-;22104:139;;22002:248;;;:::o;22256:419::-;22422:4;22460:2;22449:9;22445:18;22437:26;;22509:9;22503:4;22499:20;22495:1;22484:9;22480:17;22473:47;22537:131;22663:4;22537:131;:::i;:::-;22529:139;;22427:248;;;:::o;22681:419::-;22847:4;22885:2;22874:9;22870:18;22862:26;;22934:9;22928:4;22924:20;22920:1;22909:9;22905:17;22898:47;22962:131;23088:4;22962:131;:::i;:::-;22954:139;;22852:248;;;:::o;23106:419::-;23272:4;23310:2;23299:9;23295:18;23287:26;;23359:9;23353:4;23349:20;23345:1;23334:9;23330:17;23323:47;23387:131;23513:4;23387:131;:::i;:::-;23379:139;;23277:248;;;:::o;23531:419::-;23697:4;23735:2;23724:9;23720:18;23712:26;;23784:9;23778:4;23774:20;23770:1;23759:9;23755:17;23748:47;23812:131;23938:4;23812:131;:::i;:::-;23804:139;;23702:248;;;:::o;23956:419::-;24122:4;24160:2;24149:9;24145:18;24137:26;;24209:9;24203:4;24199:20;24195:1;24184:9;24180:17;24173:47;24237:131;24363:4;24237:131;:::i;:::-;24229:139;;24127:248;;;:::o;24381:419::-;24547:4;24585:2;24574:9;24570:18;24562:26;;24634:9;24628:4;24624:20;24620:1;24609:9;24605:17;24598:47;24662:131;24788:4;24662:131;:::i;:::-;24654:139;;24552:248;;;:::o;24806:419::-;24972:4;25010:2;24999:9;24995:18;24987:26;;25059:9;25053:4;25049:20;25045:1;25034:9;25030:17;25023:47;25087:131;25213:4;25087:131;:::i;:::-;25079:139;;24977:248;;;:::o;25231:419::-;25397:4;25435:2;25424:9;25420:18;25412:26;;25484:9;25478:4;25474:20;25470:1;25459:9;25455:17;25448:47;25512:131;25638:4;25512:131;:::i;:::-;25504:139;;25402:248;;;:::o;25656:419::-;25822:4;25860:2;25849:9;25845:18;25837:26;;25909:9;25903:4;25899:20;25895:1;25884:9;25880:17;25873:47;25937:131;26063:4;25937:131;:::i;:::-;25929:139;;25827:248;;;:::o;26081:419::-;26247:4;26285:2;26274:9;26270:18;26262:26;;26334:9;26328:4;26324:20;26320:1;26309:9;26305:17;26298:47;26362:131;26488:4;26362:131;:::i;:::-;26354:139;;26252:248;;;:::o;26506:419::-;26672:4;26710:2;26699:9;26695:18;26687:26;;26759:9;26753:4;26749:20;26745:1;26734:9;26730:17;26723:47;26787:131;26913:4;26787:131;:::i;:::-;26779:139;;26677:248;;;:::o;26931:419::-;27097:4;27135:2;27124:9;27120:18;27112:26;;27184:9;27178:4;27174:20;27170:1;27159:9;27155:17;27148:47;27212:131;27338:4;27212:131;:::i;:::-;27204:139;;27102:248;;;:::o;27356:419::-;27522:4;27560:2;27549:9;27545:18;27537:26;;27609:9;27603:4;27599:20;27595:1;27584:9;27580:17;27573:47;27637:131;27763:4;27637:131;:::i;:::-;27629:139;;27527:248;;;:::o;27781:419::-;27947:4;27985:2;27974:9;27970:18;27962:26;;28034:9;28028:4;28024:20;28020:1;28009:9;28005:17;27998:47;28062:131;28188:4;28062:131;:::i;:::-;28054:139;;27952:248;;;:::o;28206:419::-;28372:4;28410:2;28399:9;28395:18;28387:26;;28459:9;28453:4;28449:20;28445:1;28434:9;28430:17;28423:47;28487:131;28613:4;28487:131;:::i;:::-;28479:139;;28377:248;;;:::o;28631:419::-;28797:4;28835:2;28824:9;28820:18;28812:26;;28884:9;28878:4;28874:20;28870:1;28859:9;28855:17;28848:47;28912:131;29038:4;28912:131;:::i;:::-;28904:139;;28802:248;;;:::o;29056:419::-;29222:4;29260:2;29249:9;29245:18;29237:26;;29309:9;29303:4;29299:20;29295:1;29284:9;29280:17;29273:47;29337:131;29463:4;29337:131;:::i;:::-;29329:139;;29227:248;;;:::o;29481:222::-;29574:4;29612:2;29601:9;29597:18;29589:26;;29625:71;29693:1;29682:9;29678:17;29669:6;29625:71;:::i;:::-;29579:124;;;;:::o;29709:129::-;29743:6;29770:20;;:::i;:::-;29760:30;;29799:33;29827:4;29819:6;29799:33;:::i;:::-;29750:88;;;:::o;29844:75::-;29877:6;29910:2;29904:9;29894:19;;29884:35;:::o;29925:307::-;29986:4;30076:18;30068:6;30065:30;30062:2;;;30098:18;;:::i;:::-;30062:2;30136:29;30158:6;30136:29;:::i;:::-;30128:37;;30220:4;30214;30210:15;30202:23;;29991:241;;;:::o;30238:308::-;30300:4;30390:18;30382:6;30379:30;30376:2;;;30412:18;;:::i;:::-;30376:2;30450:29;30472:6;30450:29;:::i;:::-;30442:37;;30534:4;30528;30524:15;30516:23;;30305:241;;;:::o;30552:132::-;30619:4;30642:3;30634:11;;30672:4;30667:3;30663:14;30655:22;;30624:60;;;:::o;30690:114::-;30757:6;30791:5;30785:12;30775:22;;30764:40;;;:::o;30810:98::-;30861:6;30895:5;30889:12;30879:22;;30868:40;;;:::o;30914:99::-;30966:6;31000:5;30994:12;30984:22;;30973:40;;;:::o;31019:113::-;31089:4;31121;31116:3;31112:14;31104:22;;31094:38;;;:::o;31138:184::-;31237:11;31271:6;31266:3;31259:19;31311:4;31306:3;31302:14;31287:29;;31249:73;;;;:::o;31328:168::-;31411:11;31445:6;31440:3;31433:19;31485:4;31480:3;31476:14;31461:29;;31423:73;;;;:::o;31502:169::-;31586:11;31620:6;31615:3;31608:19;31660:4;31655:3;31651:14;31636:29;;31598:73;;;;:::o;31677:148::-;31779:11;31816:3;31801:18;;31791:34;;;;:::o;31831:305::-;31871:3;31890:20;31908:1;31890:20;:::i;:::-;31885:25;;31924:20;31942:1;31924:20;:::i;:::-;31919:25;;32078:1;32010:66;32006:74;32003:1;32000:81;31997:2;;;32084:18;;:::i;:::-;31997:2;32128:1;32125;32121:9;32114:16;;31875:261;;;;:::o;32142:185::-;32182:1;32199:20;32217:1;32199:20;:::i;:::-;32194:25;;32233:20;32251:1;32233:20;:::i;:::-;32228:25;;32272:1;32262:2;;32277:18;;:::i;:::-;32262:2;32319:1;32316;32312:9;32307:14;;32184:143;;;;:::o;32333:191::-;32373:4;32393:20;32411:1;32393:20;:::i;:::-;32388:25;;32427:20;32445:1;32427:20;:::i;:::-;32422:25;;32466:1;32463;32460:8;32457:2;;;32471:18;;:::i;:::-;32457:2;32516:1;32513;32509:9;32501:17;;32378:146;;;;:::o;32530:96::-;32567:7;32596:24;32614:5;32596:24;:::i;:::-;32585:35;;32575:51;;;:::o;32632:90::-;32666:7;32709:5;32702:13;32695:21;32684:32;;32674:48;;;:::o;32728:149::-;32764:7;32804:66;32797:5;32793:78;32782:89;;32772:105;;;:::o;32883:126::-;32920:7;32960:42;32953:5;32949:54;32938:65;;32928:81;;;:::o;33015:77::-;33052:7;33081:5;33070:16;;33060:32;;;:::o;33098:154::-;33182:6;33177:3;33172;33159:30;33244:1;33235:6;33230:3;33226:16;33219:27;33149:103;;;:::o;33258:307::-;33326:1;33336:113;33350:6;33347:1;33344:13;33336:113;;;33435:1;33430:3;33426:11;33420:18;33416:1;33411:3;33407:11;33400:39;33372:2;33369:1;33365:10;33360:15;;33336:113;;;33467:6;33464:1;33461:13;33458:2;;;33547:1;33538:6;33533:3;33529:16;33522:27;33458:2;33307:258;;;;:::o;33571:320::-;33615:6;33652:1;33646:4;33642:12;33632:22;;33699:1;33693:4;33689:12;33720:18;33710:2;;33776:4;33768:6;33764:17;33754:27;;33710:2;33838;33830:6;33827:14;33807:18;33804:38;33801:2;;;33857:18;;:::i;:::-;33801:2;33622:269;;;;:::o;33897:281::-;33980:27;34002:4;33980:27;:::i;:::-;33972:6;33968:40;34110:6;34098:10;34095:22;34074:18;34062:10;34059:34;34056:62;34053:2;;;34121:18;;:::i;:::-;34053:2;34161:10;34157:2;34150:22;33940:238;;;:::o;34184:233::-;34223:3;34246:24;34264:5;34246:24;:::i;:::-;34237:33;;34292:66;34285:5;34282:77;34279:2;;;34362:18;;:::i;:::-;34279:2;34409:1;34402:5;34398:13;34391:20;;34227:190;;;:::o;34423:176::-;34455:1;34472:20;34490:1;34472:20;:::i;:::-;34467:25;;34506:20;34524:1;34506:20;:::i;:::-;34501:25;;34545:1;34535:2;;34550:18;;:::i;:::-;34535:2;34591:1;34588;34584:9;34579:14;;34457:142;;;;:::o;34605:180::-;34653:77;34650:1;34643:88;34750:4;34747:1;34740:15;34774:4;34771:1;34764:15;34791:180;34839:77;34836:1;34829:88;34936:4;34933:1;34926:15;34960:4;34957:1;34950:15;34977:180;35025:77;35022:1;35015:88;35122:4;35119:1;35112:15;35146:4;35143:1;35136:15;35163:180;35211:77;35208:1;35201:88;35308:4;35305:1;35298:15;35332:4;35329:1;35322:15;35349:102;35390:6;35441:2;35437:7;35432:2;35425:5;35421:14;35417:28;35407:38;;35397:54;;;:::o;35457:170::-;35597:22;35593:1;35585:6;35581:14;35574:46;35563:64;:::o;35633:178::-;35773:30;35769:1;35761:6;35757:14;35750:54;35739:72;:::o;35817:237::-;35957:34;35953:1;35945:6;35941:14;35934:58;36026:20;36021:2;36013:6;36009:15;36002:45;35923:131;:::o;36060:225::-;36200:34;36196:1;36188:6;36184:14;36177:58;36269:8;36264:2;36256:6;36252:15;36245:33;36166:119;:::o;36291:178::-;36431:30;36427:1;36419:6;36415:14;36408:54;36397:72;:::o;36475:223::-;36615:34;36611:1;36603:6;36599:14;36592:58;36684:6;36679:2;36671:6;36667:15;36660:31;36581:117;:::o;36704:175::-;36844:27;36840:1;36832:6;36828:14;36821:51;36810:69;:::o;36885:231::-;37025:34;37021:1;37013:6;37009:14;37002:58;37094:14;37089:2;37081:6;37077:15;37070:39;36991:125;:::o;37122:226::-;37262:34;37258:1;37250:6;37246:14;37239:58;37331:9;37326:2;37318:6;37314:15;37307:34;37228:120;:::o;37354:166::-;37494:18;37490:1;37482:6;37478:14;37471:42;37460:60;:::o;37526:243::-;37666:34;37662:1;37654:6;37650:14;37643:58;37735:26;37730:2;37722:6;37718:15;37711:51;37632:137;:::o;37775:229::-;37915:34;37911:1;37903:6;37899:14;37892:58;37984:12;37979:2;37971:6;37967:15;37960:37;37881:123;:::o;38010:228::-;38150:34;38146:1;38138:6;38134:14;38127:58;38219:11;38214:2;38206:6;38202:15;38195:36;38116:122;:::o;38244:182::-;38384:34;38380:1;38372:6;38368:14;38361:58;38350:76;:::o;38432:231::-;38572:34;38568:1;38560:6;38556:14;38549:58;38641:14;38636:2;38628:6;38624:15;38617:39;38538:125;:::o;38669:182::-;38809:34;38805:1;38797:6;38793:14;38786:58;38775:76;:::o;38857:228::-;38997:34;38993:1;38985:6;38981:14;38974:58;39066:11;39061:2;39053:6;39049:15;39042:36;38963:122;:::o;39091:234::-;39231:34;39227:1;39219:6;39215:14;39208:58;39300:17;39295:2;39287:6;39283:15;39276:42;39197:128;:::o;39331:167::-;39471:19;39467:1;39459:6;39455:14;39448:43;39437:61;:::o;39504:220::-;39644:34;39640:1;39632:6;39628:14;39621:58;39713:3;39708:2;39700:6;39696:15;39689:28;39610:114;:::o;39730:175::-;39870:27;39866:1;39858:6;39854:14;39847:51;39836:69;:::o;39911:236::-;40051:34;40047:1;40039:6;40035:14;40028:58;40120:19;40115:2;40107:6;40103:15;40096:44;40017:130;:::o;40153:122::-;40226:24;40244:5;40226:24;:::i;:::-;40219:5;40216:35;40206:2;;40265:1;40262;40255:12;40206:2;40196:79;:::o;40281:116::-;40351:21;40366:5;40351:21;:::i;:::-;40344:5;40341:32;40331:2;;40387:1;40384;40377:12;40331:2;40321:76;:::o;40403:120::-;40475:23;40492:5;40475:23;:::i;:::-;40468:5;40465:34;40455:2;;40513:1;40510;40503:12;40455:2;40445:78;:::o;40529:122::-;40602:24;40620:5;40602:24;:::i;:::-;40595:5;40592:35;40582:2;;40641:1;40638;40631:12;40582:2;40572:79;:::o

Swarm Source

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