Token PFPoop

 

Overview ERC-721

Total Supply:
25 POOP

Holders:
15 addresses

Transfers:
-

 
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PFPoop

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at PolygonScan.com on 2022-01-20
*/

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


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

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/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


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

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/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: poop.sol


pragma solidity ^0.8.2;








contract PFPoop is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;

    mapping (address => bool) private _operators;
    mapping (address => bool) private _trustedForwarders;

    uint256 public _maxSupply = 999;
    uint256 public _mintPrice = 20000000000000000000; //20 MATIC

    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmPpPPWX8f6BhLtQaQPz5Z9ca5cWoaGAqujzfWCbG9fp2f/";

    constructor() ERC721("PFPoop", "POOP") {
        _tokenIdCounter.increment();
    }

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

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

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

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

    function giveAway(address to) public onlyOwner {
        uint256 tokenId = _tokenIdCounter.current();
        require(tokenId <= _maxSupply, "no more supply available");
        _tokenIdCounter.increment();
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, "");
    }

    function payableMint() public payable {
        uint256 tokenId = _tokenIdCounter.current();
        require(tokenId <= _maxSupply, "no more supply available");

        require(msg.value >= _mintPrice, "Not enough ETH : check price.");
        
        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenId);
        _setTokenURI(tokenId, "");
    }

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

    function setMintPrice(uint256 price) public onlyOwner {
        _mintPrice = price;
    }



    function _beforeTokenTransfer(address from, address to, uint256 tokenId)
        internal
        whenNotPaused
        override(ERC721, ERC721Enumerable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }


    function isOperator(address operator) public view virtual returns (bool) {
        return _operators[operator];
    }

    function setOperator(address operator, bool allow) public onlyOwner{
        _operators[operator] = allow;
    }

    function isApprovedForAll(
        address _owner,
        address _operator
    ) public override view returns (bool isOperator_) {
        if(_operators[_operator]){   
            return true;
        } else{
            return ERC721.isApprovedForAll(_owner, _operator);
        }
    }




    function isTrustedForwarder(address forwarder) public view virtual returns (bool) {
        return _trustedForwarders[forwarder];
    }

    function setTrustedForwarder(address forwarder, bool allow) public onlyOwner {
        _trustedForwarders[forwarder] = allow;
    }

     function _msgSender() internal view virtual override returns (address sender) {
        if (isTrustedForwarder(msg.sender)) {
            assembly {
                sender := shr(96, calldataload(sub(calldatasize(), 20)))
            }
        } else {
            return super._msgSender();
        }
    }

    function _msgData() internal view virtual override returns (bytes calldata) {
        if (isTrustedForwarder(msg.sender)) {
            return msg.data[:msg.data.length - 20];
        } else {
            return super._msgData();
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator_","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payableMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"allow","type":"bool"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"},{"internalType":"bool","name":"allow","type":"bool"}],"name":"setTrustedForwarder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526103e7600f556801158e460913d0000060105560405180608001604052806051815260200162004ebd605191396011908051906020019062000048929190620002d3565b503480156200005657600080fd5b506040518060400160405280600681526020017f5046506f6f7000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504f4f50000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000db929190620002d3565b508060019080519060200190620000f4929190620002d3565b5050506000600b60006101000a81548160ff02191690831515021790555062000132620001266200014f60201b60201c565b6200019960201b60201c565b62000149600c6200025f60201b620018c71760201c565b620003e8565b600062000162336200027560201b60201c565b156200017857601436033560601c905062000195565b6200018d620002cb60201b620018dd1760201c565b905062000196565b5b90565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b828054620002e19062000383565b90600052602060002090601f01602090048101928262000305576000855562000351565b82601f106200032057805160ff191683800117855562000351565b8280016001018555821562000351579182015b828111156200035057825182559160200191906001019062000333565b5b50905062000360919062000364565b5090565b5b808211156200037f57600081600090555060010162000365565b5090565b600060028204905060018216806200039c57607f821691505b60208210811415620003b357620003b2620003b9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614ac580620003f86000396000f3fe6080604052600436106102045760003560e01c8063572b6c051161011857806395d89b41116100a0578063c87b56dd1161006f578063c87b56dd14610713578063e691d03b14610750578063e985e9c514610779578063f2fde38b146107b6578063f4a0a528146107df57610204565b806395d89b411461066d5780639e24078514610698578063a22cb465146106c1578063b88d4fde146106ea57610204565b80636d70f7ae116100e75780636d70f7ae1461059a57806370a08231146105d7578063715018a6146106145780638456cb591461062b5780638da5cb5b1461064257610204565b8063572b6c05146104ca5780635c975abb146105075780636352211e146105325780636c0360eb1461056f57610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e146103e957806342966c68146104125780634f6ccce71461043b578063558a72971461047857806355f804b3146104a157610204565b806323b872dd146103625780632f745c591461038b5780633ccfd60b146103c85780633f4ba83a146103d257610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd146103025780632298bf261461032d57806322f4596f1461033757610204565b806301ffc9a7146102095780630387da421461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906135d9565b610808565b60405161023d9190613bb4565b60405180910390f35b34801561025257600080fd5b5061025b61081a565b6040516102689190613f11565b60405180910390f35b34801561027d57600080fd5b50610286610820565b6040516102939190613bcf565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be919061367c565b6108b2565b6040516102d09190613b4d565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190613599565b610937565b005b34801561030e57600080fd5b50610317610a4f565b6040516103249190613f11565b60405180910390f35b610335610a5c565b005b34801561034357600080fd5b5061034c610b24565b6040516103599190613f11565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613483565b610b2a565b005b34801561039757600080fd5b506103b260048036038101906103ad9190613599565b610b8a565b6040516103bf9190613f11565b60405180910390f35b6103d0610c2f565b005b3480156103de57600080fd5b506103e7610cf4565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613483565b610d7a565b005b34801561041e57600080fd5b506104396004803603810190610434919061367c565b610d9a565b005b34801561044757600080fd5b50610462600480360381019061045d919061367c565b610df6565b60405161046f9190613f11565b60405180910390f35b34801561048457600080fd5b5061049f600480360381019061049a9190613559565b610e67565b005b3480156104ad57600080fd5b506104c860048036038101906104c39190613633565b610f3e565b005b3480156104d657600080fd5b506104f160048036038101906104ec9190613416565b610fd4565b6040516104fe9190613bb4565b60405180910390f35b34801561051357600080fd5b5061051c61102a565b6040516105299190613bb4565b60405180910390f35b34801561053e57600080fd5b506105596004803603810190610554919061367c565b611041565b6040516105669190613b4d565b60405180910390f35b34801561057b57600080fd5b506105846110f3565b6040516105919190613bcf565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc9190613416565b611181565b6040516105ce9190613bb4565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190613416565b6111d7565b60405161060b9190613f11565b60405180910390f35b34801561062057600080fd5b5061062961128f565b005b34801561063757600080fd5b50610640611317565b005b34801561064e57600080fd5b5061065761139d565b6040516106649190613b4d565b60405180910390f35b34801561067957600080fd5b506106826113c7565b60405161068f9190613bcf565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190613416565b611459565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613559565b611559565b005b3480156106f657600080fd5b50610711600480360381019061070c91906134d6565b61156f565b005b34801561071f57600080fd5b5061073a6004803603810190610735919061367c565b6115d1565b6040516107479190613bcf565b60405180910390f35b34801561075c57600080fd5b5061077760048036038101906107729190613559565b611602565b005b34801561078557600080fd5b506107a0600480360381019061079b9190613443565b6116d9565b6040516107ad9190613bb4565b60405180910390f35b3480156107c257600080fd5b506107dd60048036038101906107d89190613416565b611749565b005b3480156107eb57600080fd5b506108066004803603810190610801919061367c565b611841565b005b6000610813826118e5565b9050919050565b60105481565b60606000805461082f90614167565b80601f016020809104026020016040519081016040528092919081815260200182805461085b90614167565b80156108a85780601f1061087d576101008083540402835291602001916108a8565b820191906000526020600020905b81548152906001019060200180831161088b57829003601f168201915b5050505050905090565b60006108bd8261195f565b6108fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f390613e11565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061094282611041565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109aa90613e91565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109d26119cb565b73ffffffffffffffffffffffffffffffffffffffff161480610a015750610a00816109fb6119cb565b6116d9565b5b610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3790613d51565b60405180910390fd5b610a4a83836119fd565b505050565b6000600880549050905090565b6000610a68600c611ab6565b9050600f54811115610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613c91565b60405180910390fd5b601054341015610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90613cb1565b60405180910390fd5b610afe600c6118c7565b610b083382611ac4565b610b218160405180602001604052806000815250611ae2565b50565b600f5481565b610b3b610b356119cb565b82611b56565b610b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7190613eb1565b60405180910390fd5b610b85838383611c34565b505050565b6000610b95836111d7565b8210610bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcd90613c11565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c376119cb565b73ffffffffffffffffffffffffffffffffffffffff16610c5561139d565b73ffffffffffffffffffffffffffffffffffffffff1614610cab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca290613e31565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cf1573d6000803e3d6000fd5b50565b610cfc6119cb565b73ffffffffffffffffffffffffffffffffffffffff16610d1a61139d565b73ffffffffffffffffffffffffffffffffffffffff1614610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790613e31565b60405180910390fd5b610d78611e90565b565b610d958383836040518060200160405280600081525061156f565b505050565b610dab610da56119cb565b82611b56565b610dea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de190613ef1565b60405180910390fd5b610df381611f32565b50565b6000610e00610a4f565b8210610e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3890613ed1565b60405180910390fd5b60088281548110610e5557610e54614300565b5b90600052602060002001549050919050565b610e6f6119cb565b73ffffffffffffffffffffffffffffffffffffffff16610e8d61139d565b73ffffffffffffffffffffffffffffffffffffffff1614610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda90613e31565b60405180910390fd5b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610f466119cb565b73ffffffffffffffffffffffffffffffffffffffff16610f6461139d565b73ffffffffffffffffffffffffffffffffffffffff1614610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190613e31565b60405180910390fd5b8060119080519060200190610fd09291906131ea565b5050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600b60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190613d91565b60405180910390fd5b80915050919050565b6011805461110090614167565b80601f016020809104026020016040519081016040528092919081815260200182805461112c90614167565b80156111795780601f1061114e57610100808354040283529160200191611179565b820191906000526020600020905b81548152906001019060200180831161115c57829003601f168201915b505050505081565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f90613d71565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112976119cb565b73ffffffffffffffffffffffffffffffffffffffff166112b561139d565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613e31565b60405180910390fd5b6113156000611f3e565b565b61131f6119cb565b73ffffffffffffffffffffffffffffffffffffffff1661133d61139d565b73ffffffffffffffffffffffffffffffffffffffff1614611393576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138a90613e31565b60405180910390fd5b61139b612004565b565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546113d690614167565b80601f016020809104026020016040519081016040528092919081815260200182805461140290614167565b801561144f5780601f106114245761010080835404028352916020019161144f565b820191906000526020600020905b81548152906001019060200180831161143257829003601f168201915b5050505050905090565b6114616119cb565b73ffffffffffffffffffffffffffffffffffffffff1661147f61139d565b73ffffffffffffffffffffffffffffffffffffffff16146114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90613e31565b60405180910390fd5b60006114e1600c611ab6565b9050600f54811115611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90613c91565b60405180910390fd5b611532600c6118c7565b61153c8282611ac4565b6115558160405180602001604052806000815250611ae2565b5050565b61156b6115646119cb565b83836120a7565b5050565b61158061157a6119cb565b83611b56565b6115bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b690613eb1565b60405180910390fd5b6115cb84848484612214565b50505050565b60606115dc82612270565b6040516020016115ec9190613b2b565b6040516020818303038152906040529050919050565b61160a6119cb565b73ffffffffffffffffffffffffffffffffffffffff1661162861139d565b73ffffffffffffffffffffffffffffffffffffffff161461167e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167590613e31565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117365760019050611743565b61174083836123c2565b90505b92915050565b6117516119cb565b73ffffffffffffffffffffffffffffffffffffffff1661176f61139d565b73ffffffffffffffffffffffffffffffffffffffff16146117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90613e31565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182c90613c51565b60405180910390fd5b61183e81611f3e565b50565b6118496119cb565b73ffffffffffffffffffffffffffffffffffffffff1661186761139d565b73ffffffffffffffffffffffffffffffffffffffff16146118bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b490613e31565b60405180910390fd5b8060108190555050565b6001816000016000828254019250508190555050565b600033905090565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611958575061195782612456565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006119d633610fd4565b156119ea57601436033560601c90506119f9565b6119f26118dd565b90506119fa565b5b90565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7083611041565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b611ade828260405180602001604052806000815250612538565b5050565b611aeb8261195f565b611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2190613db1565b60405180910390fd5b80600a60008481526020019081526020016000209080519060200190611b519291906131ea565b505050565b6000611b618261195f565b611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790613d11565b60405180910390fd5b6000611bab83611041565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c1a57508373ffffffffffffffffffffffffffffffffffffffff16611c02846108b2565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c2b5750611c2a81856116d9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c5482611041565b73ffffffffffffffffffffffffffffffffffffffff1614611caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca190613e51565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1190613cd1565b60405180910390fd5b611d25838383612593565b611d306000826119fd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d80919061407d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dd79190613ff6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e9861102a565b611ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ece90613bf1565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f1b6119cb565b604051611f289190613b4d565b60405180910390a1565b611f3b816125eb565b50565b6000600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61200c61102a565b1561204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390613d31565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120906119cb565b60405161209d9190613b4d565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d90613cf1565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122079190613bb4565b60405180910390a3505050565b61221f848484611c34565b61222b8484848461263e565b61226a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226190613c31565b60405180910390fd5b50505050565b606061227b8261195f565b6122ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b190613df1565b60405180910390fd5b6000600a600084815260200190815260200160002080546122da90614167565b80601f016020809104026020016040519081016040528092919081815260200182805461230690614167565b80156123535780601f1061232857610100808354040283529160200191612353565b820191906000526020600020905b81548152906001019060200180831161233657829003601f168201915b5050505050905060006123646127d5565b905060008151141561237a5781925050506123bd565b6000825111156123af578082604051602001612397929190613b07565b604051602081830303815290604052925050506123bd565b6123b884612867565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061252157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061253157506125308261290e565b5b9050919050565b6125428383612978565b61254f600084848461263e565b61258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590613c31565b60405180910390fd5b505050565b61259b61102a565b156125db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d290613d31565b60405180910390fd5b6125e6838383612b46565b505050565b6125f481612c5a565b6000600a6000838152602001908152602001600020805461261490614167565b90501461263b57600a6000828152602001908152602001600020600061263a9190613270565b5b50565b600061265f8473ffffffffffffffffffffffffffffffffffffffff16612d6b565b156127c8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126886119cb565b8786866040518563ffffffff1660e01b81526004016126aa9493929190613b68565b602060405180830381600087803b1580156126c457600080fd5b505af19250505080156126f557506040513d601f19601f820116820180604052508101906126f29190613606565b60015b612778573d8060008114612725576040519150601f19603f3d011682016040523d82523d6000602084013e61272a565b606091505b50600081511415612770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276790613c31565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127cd565b600190505b949350505050565b6060601180546127e490614167565b80601f016020809104026020016040519081016040528092919081815260200182805461281090614167565b801561285d5780601f106128325761010080835404028352916020019161285d565b820191906000526020600020905b81548152906001019060200180831161284057829003601f168201915b5050505050905090565b60606128728261195f565b6128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a890613e71565b60405180910390fd5b60006128bb6127d5565b905060008151116128db5760405180602001604052806000815250612906565b806128e584612d7e565b6040516020016128f6929190613b07565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129df90613dd1565b60405180910390fd5b6129f18161195f565b15612a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2890613c71565b60405180910390fd5b612a3d60008383612593565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8d9190613ff6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612b51838383612edf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b9457612b8f81612ee4565b612bd3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bd257612bd18382612f2d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c1657612c118161309a565b612c55565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c5457612c53828261316b565b5b5b505050565b6000612c6582611041565b9050612c7381600084612593565b612c7e6000836119fd565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cce919061407d565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60606000821415612dc6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612eda565b600082905060005b60008214612df8578080612de1906141ca565b915050600a82612df1919061404c565b9150612dce565b60008167ffffffffffffffff811115612e1457612e1361432f565b5b6040519080825280601f01601f191660200182016040528015612e465781602001600182028036833780820191505090505b5090505b60008514612ed357600182612e5f919061407d565b9150600a85612e6e9190614213565b6030612e7a9190613ff6565b60f81b818381518110612e9057612e8f614300565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ecc919061404c565b9450612e4a565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f3a846111d7565b612f44919061407d565b9050600060076000848152602001908152602001600020549050818114613029576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130ae919061407d565b90506000600960008481526020019081526020016000205490506000600883815481106130de576130dd614300565b5b906000526020600020015490508060088381548110613100576130ff614300565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061314f5761314e6142d1565b5b6001900381819060005260206000200160009055905550505050565b6000613176836111d7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546131f690614167565b90600052602060002090601f016020900481019282613218576000855561325f565b82601f1061323157805160ff191683800117855561325f565b8280016001018555821561325f579182015b8281111561325e578251825591602001919060010190613243565b5b50905061326c91906132b0565b5090565b50805461327c90614167565b6000825580601f1061328e57506132ad565b601f0160209004906000526020600020908101906132ac91906132b0565b5b50565b5b808211156132c95760008160009055506001016132b1565b5090565b60006132e06132db84613f51565b613f2c565b9050828152602081018484840111156132fc576132fb614363565b5b613307848285614125565b509392505050565b600061332261331d84613f82565b613f2c565b90508281526020810184848401111561333e5761333d614363565b5b613349848285614125565b509392505050565b60008135905061336081614a33565b92915050565b60008135905061337581614a4a565b92915050565b60008135905061338a81614a61565b92915050565b60008151905061339f81614a61565b92915050565b600082601f8301126133ba576133b961435e565b5b81356133ca8482602086016132cd565b91505092915050565b600082601f8301126133e8576133e761435e565b5b81356133f884826020860161330f565b91505092915050565b60008135905061341081614a78565b92915050565b60006020828403121561342c5761342b61436d565b5b600061343a84828501613351565b91505092915050565b6000806040838503121561345a5761345961436d565b5b600061346885828601613351565b925050602061347985828601613351565b9150509250929050565b60008060006060848603121561349c5761349b61436d565b5b60006134aa86828701613351565b93505060206134bb86828701613351565b92505060406134cc86828701613401565b9150509250925092565b600080600080608085870312156134f0576134ef61436d565b5b60006134fe87828801613351565b945050602061350f87828801613351565b935050604061352087828801613401565b925050606085013567ffffffffffffffff81111561354157613540614368565b5b61354d878288016133a5565b91505092959194509250565b600080604083850312156135705761356f61436d565b5b600061357e85828601613351565b925050602061358f85828601613366565b9150509250929050565b600080604083850312156135b0576135af61436d565b5b60006135be85828601613351565b92505060206135cf85828601613401565b9150509250929050565b6000602082840312156135ef576135ee61436d565b5b60006135fd8482850161337b565b91505092915050565b60006020828403121561361c5761361b61436d565b5b600061362a84828501613390565b91505092915050565b6000602082840312156136495761364861436d565b5b600082013567ffffffffffffffff81111561366757613666614368565b5b613673848285016133d3565b91505092915050565b6000602082840312156136925761369161436d565b5b60006136a084828501613401565b91505092915050565b6136b2816140b1565b82525050565b6136c1816140c3565b82525050565b60006136d282613fb3565b6136dc8185613fc9565b93506136ec818560208601614134565b6136f581614372565b840191505092915050565b600061370b82613fbe565b6137158185613fda565b9350613725818560208601614134565b61372e81614372565b840191505092915050565b600061374482613fbe565b61374e8185613feb565b935061375e818560208601614134565b80840191505092915050565b6000613777601483613fda565b915061378282614383565b602082019050919050565b600061379a602b83613fda565b91506137a5826143ac565b604082019050919050565b60006137bd603283613fda565b91506137c8826143fb565b604082019050919050565b60006137e0602683613fda565b91506137eb8261444a565b604082019050919050565b6000613803601c83613fda565b915061380e82614499565b602082019050919050565b6000613826601883613fda565b9150613831826144c2565b602082019050919050565b6000613849601d83613fda565b9150613854826144eb565b602082019050919050565b600061386c602483613fda565b915061387782614514565b604082019050919050565b600061388f601983613fda565b915061389a82614563565b602082019050919050565b60006138b2602c83613fda565b91506138bd8261458c565b604082019050919050565b60006138d5601083613fda565b91506138e0826145db565b602082019050919050565b60006138f8603883613fda565b915061390382614604565b604082019050919050565b600061391b602a83613fda565b915061392682614653565b604082019050919050565b600061393e602983613fda565b9150613949826146a2565b604082019050919050565b6000613961602e83613fda565b915061396c826146f1565b604082019050919050565b6000613984602083613fda565b915061398f82614740565b602082019050919050565b60006139a7603183613fda565b91506139b282614769565b604082019050919050565b60006139ca602c83613fda565b91506139d5826147b8565b604082019050919050565b60006139ed600583613feb565b91506139f882614807565b600582019050919050565b6000613a10602083613fda565b9150613a1b82614830565b602082019050919050565b6000613a33602983613fda565b9150613a3e82614859565b604082019050919050565b6000613a56602f83613fda565b9150613a61826148a8565b604082019050919050565b6000613a79602183613fda565b9150613a84826148f7565b604082019050919050565b6000613a9c603183613fda565b9150613aa782614946565b604082019050919050565b6000613abf602c83613fda565b9150613aca82614995565b604082019050919050565b6000613ae2603083613fda565b9150613aed826149e4565b604082019050919050565b613b018161411b565b82525050565b6000613b138285613739565b9150613b1f8284613739565b91508190509392505050565b6000613b378284613739565b9150613b42826139e0565b915081905092915050565b6000602082019050613b6260008301846136a9565b92915050565b6000608082019050613b7d60008301876136a9565b613b8a60208301866136a9565b613b976040830185613af8565b8181036060830152613ba981846136c7565b905095945050505050565b6000602082019050613bc960008301846136b8565b92915050565b60006020820190508181036000830152613be98184613700565b905092915050565b60006020820190508181036000830152613c0a8161376a565b9050919050565b60006020820190508181036000830152613c2a8161378d565b9050919050565b60006020820190508181036000830152613c4a816137b0565b9050919050565b60006020820190508181036000830152613c6a816137d3565b9050919050565b60006020820190508181036000830152613c8a816137f6565b9050919050565b60006020820190508181036000830152613caa81613819565b9050919050565b60006020820190508181036000830152613cca8161383c565b9050919050565b60006020820190508181036000830152613cea8161385f565b9050919050565b60006020820190508181036000830152613d0a81613882565b9050919050565b60006020820190508181036000830152613d2a816138a5565b9050919050565b60006020820190508181036000830152613d4a816138c8565b9050919050565b60006020820190508181036000830152613d6a816138eb565b9050919050565b60006020820190508181036000830152613d8a8161390e565b9050919050565b60006020820190508181036000830152613daa81613931565b9050919050565b60006020820190508181036000830152613dca81613954565b9050919050565b60006020820190508181036000830152613dea81613977565b9050919050565b60006020820190508181036000830152613e0a8161399a565b9050919050565b60006020820190508181036000830152613e2a816139bd565b9050919050565b60006020820190508181036000830152613e4a81613a03565b9050919050565b60006020820190508181036000830152613e6a81613a26565b9050919050565b60006020820190508181036000830152613e8a81613a49565b9050919050565b60006020820190508181036000830152613eaa81613a6c565b9050919050565b60006020820190508181036000830152613eca81613a8f565b9050919050565b60006020820190508181036000830152613eea81613ab2565b9050919050565b60006020820190508181036000830152613f0a81613ad5565b9050919050565b6000602082019050613f266000830184613af8565b92915050565b6000613f36613f47565b9050613f428282614199565b919050565b6000604051905090565b600067ffffffffffffffff821115613f6c57613f6b61432f565b5b613f7582614372565b9050602081019050919050565b600067ffffffffffffffff821115613f9d57613f9c61432f565b5b613fa682614372565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140018261411b565b915061400c8361411b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561404157614040614244565b5b828201905092915050565b60006140578261411b565b91506140628361411b565b92508261407257614071614273565b5b828204905092915050565b60006140888261411b565b91506140938361411b565b9250828210156140a6576140a5614244565b5b828203905092915050565b60006140bc826140fb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614152578082015181840152602081019050614137565b83811115614161576000848401525b50505050565b6000600282049050600182168061417f57607f821691505b60208210811415614193576141926142a2565b5b50919050565b6141a282614372565b810181811067ffffffffffffffff821117156141c1576141c061432f565b5b80604052505050565b60006141d58261411b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561420857614207614244565b5b600182019050919050565b600061421e8261411b565b91506142298361411b565b92508261423957614238614273565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6e6f206d6f726520737570706c7920617661696c61626c650000000000000000600082015250565b7f4e6f7420656e6f75676820455448203a20636865636b2070726963652e000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b614a3c816140b1565b8114614a4757600080fd5b50565b614a53816140c3565b8114614a5e57600080fd5b50565b614a6a816140cf565b8114614a7557600080fd5b50565b614a818161411b565b8114614a8c57600080fd5b5056fea2646970667358221220ba9c13acbb9baca2dfc9c456bcbb4a5a1dbd2834c2be3878ad3dcbb52915ed3564736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d50705050575838663642684c74516151507a355a3963613563576f61474171756a7a665743624739667032662f

Deployed ByteCode Sourcemap

51054:4185:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53589:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51399:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29543:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31102:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30625:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45482:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52316:372;;;:::i;:::-;;51361:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31852:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45150:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52696:115;;;:::i;:::-;;51950:65;;;;;;;;;;;;;:::i;:::-;;32262:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41574:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45672:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53938:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51784:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54373:137;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8144:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29237:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51467:107;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53811:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28967:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:103;;;;;;;;;;;;;:::i;:::-;;51881:61;;;;;;;;;;;;;:::i;:::-;;5544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29712:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52023:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31395:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32518:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53350:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54518:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54060:299;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6453:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52819:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53589:212;53728:4;53757:36;53781:11;53757:23;:36::i;:::-;53750:43;;53589:212;;;:::o;51399:48::-;;;;:::o;29543:100::-;29597:13;29630:5;29623:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29543:100;:::o;31102:221::-;31178:7;31206:16;31214:7;31206;:16::i;:::-;31198:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31291:15;:24;31307:7;31291:24;;;;;;;;;;;;;;;;;;;;;31284:31;;31102:221;;;:::o;30625:411::-;30706:13;30722:23;30737:7;30722:14;:23::i;:::-;30706:39;;30770:5;30764:11;;:2;:11;;;;30756:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30864:5;30848:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30873:37;30890:5;30897:12;:10;:12::i;:::-;30873:16;:37::i;:::-;30848:62;30826:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;31007:21;31016:2;31020:7;31007:8;:21::i;:::-;30695:341;30625:411;;:::o;45482:113::-;45543:7;45570:10;:17;;;;45563:24;;45482:113;:::o;52316:372::-;52365:15;52383:25;:15;:23;:25::i;:::-;52365:43;;52438:10;;52427:7;:21;;52419:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52511:10;;52498:9;:23;;52490:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;52576:27;:15;:25;:27::i;:::-;52614:30;52624:10;52636:7;52614:9;:30::i;:::-;52655:25;52668:7;52655:25;;;;;;;;;;;;:12;:25::i;:::-;52354:334;52316:372::o;51361:31::-;;;;:::o;31852:339::-;32047:41;32066:12;:10;:12::i;:::-;32080:7;32047:18;:41::i;:::-;32039:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32155:28;32165:4;32171:2;32175:7;32155:9;:28::i;:::-;31852:339;;;:::o;45150:256::-;45247:7;45283:23;45300:5;45283:16;:23::i;:::-;45275:5;:31;45267:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;45372:12;:19;45385:5;45372:19;;;;;;;;;;;;;;;:26;45392:5;45372:26;;;;;;;;;;;;45365:33;;45150:256;;;;:::o;52696:115::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52760:10:::1;52752:28;;:51;52781:21;52752:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;52696:115::o:0;51950:65::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51997:10:::1;:8;:10::i;:::-;51950:65::o:0;32262:185::-;32400:39;32417:4;32423:2;32427:7;32400:39;;;;;;;;;;;;:16;:39::i;:::-;32262:185;;;:::o;41574:245::-;41692:41;41711:12;:10;:12::i;:::-;41725:7;41692:18;:41::i;:::-;41684:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;41797:14;41803:7;41797:5;:14::i;:::-;41574:245;:::o;45672:233::-;45747:7;45783:30;:28;:30::i;:::-;45775:5;:38;45767:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;45880:10;45891:5;45880:17;;;;;;;;:::i;:::-;;;;;;;;;;45873:24;;45672:233;;;:::o;53938:114::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54039:5:::1;54016:10;:20;54027:8;54016:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;53938:114:::0;;:::o;51784:88::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51861:3:::1;51851:7;:13;;;;;;;;;;;;:::i;:::-;;51784:88:::0;:::o;54373:137::-;54449:4;54473:18;:29;54492:9;54473:29;;;;;;;;;;;;;;;;;;;;;;;;;54466:36;;54373:137;;;:::o;8144:86::-;8191:4;8215:7;;;;;;;;;;;8208:14;;8144:86;:::o;29237:239::-;29309:7;29329:13;29345:7;:16;29353:7;29345:16;;;;;;;;;;;;;;;;;;;;;29329:32;;29397:1;29380:19;;:5;:19;;;;29372:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29463:5;29456:12;;;29237:239;;;:::o;51467:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53811:119::-;53878:4;53902:10;:20;53913:8;53902:20;;;;;;;;;;;;;;;;;;;;;;;;;53895:27;;53811:119;;;:::o;28967:208::-;29039:7;29084:1;29067:19;;:5;:19;;;;29059:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;29151:9;:16;29161:5;29151:16;;;;;;;;;;;;;;;;29144:23;;28967:208;;;:::o;6195:103::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;51881:61::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51926:8:::1;:6;:8::i;:::-;51881:61::o:0;5544:87::-;5590:7;5617:6;;;;;;;;;;;5610:13;;5544:87;:::o;29712:104::-;29768:13;29801:7;29794:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29712:104;:::o;52023:285::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52081:15:::1;52099:25;:15;:23;:25::i;:::-;52081:43;;52154:10;;52143:7;:21;;52135:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52204:27;:15;:25;:27::i;:::-;52242:22;52252:2;52256:7;52242:9;:22::i;:::-;52275:25;52288:7;52275:25;;;;;;;;;;;::::0;:12:::1;:25::i;:::-;52070:238;52023:285:::0;:::o;31395:155::-;31490:52;31509:12;:10;:12::i;:::-;31523:8;31533;31490:18;:52::i;:::-;31395:155;;:::o;32518:328::-;32693:41;32712:12;:10;:12::i;:::-;32726:7;32693:18;:41::i;:::-;32685:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32799:39;32813:4;32819:2;32823:7;32832:5;32799:13;:39::i;:::-;32518:328;;;;:::o;53350:231::-;53477:13;53539:23;53554:7;53539:14;:23::i;:::-;53522:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;53508:65;;53350:231;;;:::o;54518:133::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54638:5:::1;54606:18;:29;54625:9;54606:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;54518:133:::0;;:::o;54060:299::-;54176:16;54208:10;:21;54219:9;54208:21;;;;;;;;;;;;;;;;;;;;;;;;;54205:147;;;54255:4;54248:11;;;;54205:147;54298:42;54322:6;54330:9;54298:23;:42::i;:::-;54291:49;;54060:299;;;;;:::o;6453:201::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6562:1:::1;6542:22;;:8;:22;;;;6534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;52819:91::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52897:5:::1;52884:10;:18;;;;52819:91:::0;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;44842:224::-;44944:4;44983:35;44968:50;;;:11;:50;;;;:90;;;;45022:36;45046:11;45022:23;:36::i;:::-;44968:90;44961:97;;44842:224;;;:::o;34356:127::-;34421:4;34473:1;34445:30;;:7;:16;34453:7;34445:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34438:37;;34356:127;;;:::o;54660:315::-;54722:14;54753:30;54772:10;54753:18;:30::i;:::-;54749:219;;;54879:2;54863:14;54859:23;54846:37;54842:2;54838:46;54828:56;;54749:219;;;54938:18;:16;:18::i;:::-;54931:25;;;;54749:219;54660:315;;:::o;38338:174::-;38440:2;38413:15;:24;38429:7;38413:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38496:7;38492:2;38458:46;;38467:23;38482:7;38467:14;:23::i;:::-;38458:46;;;;;;;;;;;;38338:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;35340:110::-;35416:26;35426:2;35430:7;35416:26;;;;;;;;;;;;:9;:26::i;:::-;35340:110;;:::o;43172:217::-;43272:16;43280:7;43272;:16::i;:::-;43264:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43372:9;43350:10;:19;43361:7;43350:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;43172:217;;:::o;34650:348::-;34743:4;34768:16;34776:7;34768;:16::i;:::-;34760:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34844:13;34860:23;34875:7;34860:14;:23::i;:::-;34844:39;;34913:5;34902:16;;:7;:16;;;:51;;;;34946:7;34922:31;;:20;34934:7;34922:11;:20::i;:::-;:31;;;34902:51;:87;;;;34957:32;34974:5;34981:7;34957:16;:32::i;:::-;34902:87;34894:96;;;34650:348;;;;:::o;37642:578::-;37801:4;37774:31;;:23;37789:7;37774:14;:23::i;:::-;:31;;;37766:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;37884:1;37870:16;;:2;:16;;;;37862:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;37940:39;37961:4;37967:2;37971:7;37940:20;:39::i;:::-;38044:29;38061:1;38065:7;38044:8;:29::i;:::-;38105:1;38086:9;:15;38096:4;38086:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38134:1;38117:9;:13;38127:2;38117:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38165:2;38146:7;:16;38154:7;38146:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38204:7;38200:2;38185:27;;38194:4;38185:27;;;;;;;;;;;;37642:578;;;:::o;9203:120::-;8747:8;:6;:8::i;:::-;8739:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;9272:5:::1;9262:7;;:15;;;;;;;;;;;;;;;;;;9293:22;9302:12;:10;:12::i;:::-;9293:22;;;;;;:::i;:::-;;;;;;;;9203:120::o:0;53227:115::-;53314:20;53326:7;53314:11;:20::i;:::-;53227:115;:::o;6814:191::-;6888:16;6907:6;;;;;;;;;;;6888:25;;6933:8;6924:6;;:17;;;;;;;;;;;;;;;;;;6988:8;6957:40;;6978:8;6957:40;;;;;;;;;;;;6877:128;6814:191;:::o;8944:118::-;8470:8;:6;:8::i;:::-;8469:9;8461:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;9014:4:::1;9004:7;;:14;;;;;;;;;;;;;;;;;;9034:20;9041:12;:10;:12::i;:::-;9034:20;;;;;;:::i;:::-;;;;;;;;8944:118::o:0;38654:315::-;38809:8;38800:17;;:5;:17;;;;38792:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;38896:8;38858:18;:25;38877:5;38858:25;;;;;;;;;;;;;;;:35;38884:8;38858:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38942:8;38920:41;;38935:5;38920:41;;;38952:8;38920:41;;;;;;:::i;:::-;;;;;;;;38654:315;;;:::o;33728:::-;33885:28;33895:4;33901:2;33905:7;33885:9;:28::i;:::-;33932:48;33955:4;33961:2;33965:7;33974:5;33932:22;:48::i;:::-;33924:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33728:315;;;;:::o;42337:679::-;42410:13;42444:16;42452:7;42444;:16::i;:::-;42436:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;42527:23;42553:10;:19;42564:7;42553:19;;;;;;;;;;;42527:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42583:18;42604:10;:8;:10::i;:::-;42583:31;;42712:1;42696:4;42690:18;:23;42686:72;;;42737:9;42730:16;;;;;;42686:72;42888:1;42868:9;42862:23;:27;42858:108;;;42937:4;42943:9;42920:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42906:48;;;;;;42858:108;42985:23;43000:7;42985:14;:23::i;:::-;42978:30;;;;42337:679;;;;:::o;31621:164::-;31718:4;31742:18;:25;31761:5;31742:25;;;;;;;;;;;;;;;:35;31768:8;31742:35;;;;;;;;;;;;;;;;;;;;;;;;;31735:42;;31621:164;;;;:::o;28598:305::-;28700:4;28752:25;28737:40;;;:11;:40;;;;:105;;;;28809:33;28794:48;;;:11;:48;;;;28737:105;:158;;;;28859:36;28883:11;28859:23;:36::i;:::-;28737:158;28717:178;;28598:305;;;:::o;35677:321::-;35807:18;35813:2;35817:7;35807:5;:18::i;:::-;35858:54;35889:1;35893:2;35897:7;35906:5;35858:22;:54::i;:::-;35836:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;35677:321;;;:::o;52922:227::-;8470:8;:6;:8::i;:::-;8469:9;8461:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;53096:45:::1;53123:4;53129:2;53133:7;53096:26;:45::i;:::-;52922:227:::0;;;:::o;43618:206::-;43687:20;43699:7;43687:11;:20::i;:::-;43761:1;43730:10;:19;43741:7;43730:19;;;;;;;;;;;43724:33;;;;;:::i;:::-;;;:38;43720:97;;43786:10;:19;43797:7;43786:19;;;;;;;;;;;;43779:26;;;;:::i;:::-;43720:97;43618:206;:::o;39534:799::-;39689:4;39710:15;:2;:13;;;:15::i;:::-;39706:620;;;39762:2;39746:36;;;39783:12;:10;:12::i;:::-;39797:4;39803:7;39812:5;39746:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39742:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40005:1;39988:6;:13;:18;39984:272;;;40031:60;;;;;;;;;;:::i;:::-;;;;;;;;39984:272;40206:6;40200:13;40191:6;40187:2;40183:15;40176:38;39742:529;39879:41;;;39869:51;;;:6;:51;;;;39862:58;;;;;39706:620;40310:4;40303:11;;39534:799;;;;;;;:::o;51676:100::-;51728:13;51761:7;51754:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51676:100;:::o;29887:334::-;29960:13;29994:16;30002:7;29994;:16::i;:::-;29986:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;30075:21;30099:10;:8;:10::i;:::-;30075:34;;30151:1;30133:7;30127:21;:25;:86;;;;;;;;;;;;;;;;;30179:7;30188:18;:7;:16;:18::i;:::-;30162:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30127:86;30120:93;;;29887:334;;;:::o;20294:157::-;20379:4;20418:25;20403:40;;;:11;:40;;;;20396:47;;20294:157;;;:::o;36334:382::-;36428:1;36414:16;;:2;:16;;;;36406:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36487:16;36495:7;36487;:16::i;:::-;36486:17;36478:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36549:45;36578:1;36582:2;36586:7;36549:20;:45::i;:::-;36624:1;36607:9;:13;36617:2;36607:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36655:2;36636:7;:16;36644:7;36636:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36700:7;36696:2;36675:33;;36692:1;36675:33;;;;;;;;;;;;36334:382;;:::o;46518:589::-;46662:45;46689:4;46695:2;46699:7;46662:26;:45::i;:::-;46740:1;46724:18;;:4;:18;;;46720:187;;;46759:40;46791:7;46759:31;:40::i;:::-;46720:187;;;46829:2;46821:10;;:4;:10;;;46817:90;;46848:47;46881:4;46887:7;46848:32;:47::i;:::-;46817:90;46720:187;46935:1;46921:16;;:2;:16;;;46917:183;;;46954:45;46991:7;46954:36;:45::i;:::-;46917:183;;;47027:4;47021:10;;:2;:10;;;47017:83;;47048:40;47076:2;47080:7;47048:27;:40::i;:::-;47017:83;46917:183;46518:589;;;:::o;36945:360::-;37005:13;37021:23;37036:7;37021:14;:23::i;:::-;37005:39;;37057:48;37078:5;37093:1;37097:7;37057:20;:48::i;:::-;37146:29;37163:1;37167:7;37146:8;:29::i;:::-;37208:1;37188:9;:16;37198:5;37188:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;37227:7;:16;37235:7;37227:16;;;;;;;;;;;;37220:23;;;;;;;;;;;37289:7;37285:1;37261:36;;37270:5;37261:36;;;;;;;;;;;;36994:311;36945:360;:::o;10150:387::-;10210:4;10418:12;10485:7;10473:20;10465:28;;10528:1;10521:4;:8;10514:15;;;10150:387;;;:::o;1830:723::-;1886:13;2116:1;2107:5;:10;2103:53;;;2134:10;;;;;;;;;;;;;;;;;;;;;2103:53;2166:12;2181:5;2166:20;;2197:14;2222:78;2237:1;2229:4;:9;2222:78;;2255:8;;;;;:::i;:::-;;;;2286:2;2278:10;;;;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:39;;2360:154;2376:1;2367:5;:10;2360:154;;2404:1;2394:11;;;;;:::i;:::-;;;2471:2;2463:5;:10;;;;:::i;:::-;2450:2;:24;;;;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2500:2;2491:11;;;;;:::i;:::-;;;2360:154;;;2538:6;2524:21;;;;;1830:723;;;;:::o;40905:126::-;;;;:::o;47830:164::-;47934:10;:17;;;;47907:15;:24;47923:7;47907:24;;;;;;;;;;;:44;;;;47962:10;47978:7;47962:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47830:164;:::o;48621:988::-;48887:22;48937:1;48912:22;48929:4;48912:16;:22::i;:::-;:26;;;;:::i;:::-;48887:51;;48949:18;48970:17;:26;48988:7;48970:26;;;;;;;;;;;;48949:47;;49117:14;49103:10;:28;49099:328;;49148:19;49170:12;:18;49183:4;49170:18;;;;;;;;;;;;;;;:34;49189:14;49170:34;;;;;;;;;;;;49148:56;;49254:11;49221:12;:18;49234:4;49221:18;;;;;;;;;;;;;;;:30;49240:10;49221:30;;;;;;;;;;;:44;;;;49371:10;49338:17;:30;49356:11;49338:30;;;;;;;;;;;:43;;;;49133:294;49099:328;49523:17;:26;49541:7;49523:26;;;;;;;;;;;49516:33;;;49567:12;:18;49580:4;49567:18;;;;;;;;;;;;;;;:34;49586:14;49567:34;;;;;;;;;;;49560:41;;;48702:907;;48621:988;;:::o;49904:1079::-;50157:22;50202:1;50182:10;:17;;;;:21;;;;:::i;:::-;50157:46;;50214:18;50235:15;:24;50251:7;50235:24;;;;;;;;;;;;50214:45;;50586:19;50608:10;50619:14;50608:26;;;;;;;;:::i;:::-;;;;;;;;;;50586:48;;50672:11;50647:10;50658;50647:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;50783:10;50752:15;:28;50768:11;50752:28;;;;;;;;;;;:41;;;;50924:15;:24;50940:7;50924:24;;;;;;;;;;;50917:31;;;50959:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49975:1008;;;49904:1079;:::o;47408:221::-;47493:14;47510:20;47527:2;47510:16;:20::i;:::-;47493:37;;47568:7;47541:12;:16;47554:2;47541:16;;;;;;;;;;;;;;;:24;47558:6;47541:24;;;;;;;;;;;:34;;;;47615:6;47586:17;:26;47604:7;47586:26;;;;;;;;;;;:35;;;;47482:147;47408:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:::-;14610:3;14631:67;14695:2;14690:3;14631:67;:::i;:::-;14624:74;;14707:93;14796:3;14707:93;:::i;:::-;14825:2;14820:3;14816:12;14809:19;;14468:366;;;:::o;14840:::-;14982:3;15003:67;15067:2;15062:3;15003:67;:::i;:::-;14996:74;;15079:93;15168:3;15079:93;:::i;:::-;15197:2;15192:3;15188:12;15181:19;;14840:366;;;:::o;15212:400::-;15372:3;15393:84;15475:1;15470:3;15393:84;:::i;:::-;15386:91;;15486:93;15575:3;15486:93;:::i;:::-;15604:1;15599:3;15595:11;15588:18;;15212:400;;;:::o;15618:366::-;15760:3;15781:67;15845:2;15840:3;15781:67;:::i;:::-;15774:74;;15857:93;15946:3;15857:93;:::i;:::-;15975:2;15970:3;15966:12;15959:19;;15618:366;;;:::o;15990:::-;16132:3;16153:67;16217:2;16212:3;16153:67;:::i;:::-;16146:74;;16229:93;16318:3;16229:93;:::i;:::-;16347:2;16342:3;16338:12;16331:19;;15990:366;;;:::o;16362:::-;16504:3;16525:67;16589:2;16584:3;16525:67;:::i;:::-;16518:74;;16601:93;16690:3;16601:93;:::i;:::-;16719:2;16714:3;16710:12;16703:19;;16362:366;;;:::o;16734:::-;16876:3;16897:67;16961:2;16956:3;16897:67;:::i;:::-;16890:74;;16973:93;17062:3;16973:93;:::i;:::-;17091:2;17086:3;17082:12;17075:19;;16734:366;;;:::o;17106:::-;17248:3;17269:67;17333:2;17328:3;17269:67;:::i;:::-;17262:74;;17345:93;17434:3;17345:93;:::i;:::-;17463:2;17458:3;17454:12;17447:19;;17106:366;;;:::o;17478:::-;17620:3;17641:67;17705:2;17700:3;17641:67;:::i;:::-;17634:74;;17717:93;17806:3;17717:93;:::i;:::-;17835:2;17830:3;17826:12;17819:19;;17478:366;;;:::o;17850:::-;17992:3;18013:67;18077:2;18072:3;18013:67;:::i;:::-;18006:74;;18089:93;18178:3;18089:93;:::i;:::-;18207:2;18202:3;18198:12;18191:19;;17850:366;;;:::o;18222:118::-;18309:24;18327:5;18309:24;:::i;:::-;18304:3;18297:37;18222:118;;:::o;18346:435::-;18526:3;18548:95;18639:3;18630:6;18548:95;:::i;:::-;18541:102;;18660:95;18751:3;18742:6;18660:95;:::i;:::-;18653:102;;18772:3;18765:10;;18346:435;;;;;:::o;18787:541::-;19020:3;19042:95;19133:3;19124:6;19042:95;:::i;:::-;19035:102;;19154:148;19298:3;19154:148;:::i;:::-;19147:155;;19319:3;19312:10;;18787:541;;;;:::o;19334:222::-;19427:4;19465:2;19454:9;19450:18;19442:26;;19478:71;19546:1;19535:9;19531:17;19522:6;19478:71;:::i;:::-;19334:222;;;;:::o;19562:640::-;19757:4;19795:3;19784:9;19780:19;19772:27;;19809:71;19877:1;19866:9;19862:17;19853:6;19809:71;:::i;:::-;19890:72;19958:2;19947:9;19943:18;19934:6;19890:72;:::i;:::-;19972;20040:2;20029:9;20025:18;20016:6;19972:72;:::i;:::-;20091:9;20085:4;20081:20;20076:2;20065:9;20061:18;20054:48;20119:76;20190:4;20181:6;20119:76;:::i;:::-;20111:84;;19562:640;;;;;;;:::o;20208:210::-;20295:4;20333:2;20322:9;20318:18;20310:26;;20346:65;20408:1;20397:9;20393:17;20384:6;20346:65;:::i;:::-;20208:210;;;;:::o;20424:313::-;20537:4;20575:2;20564:9;20560:18;20552:26;;20624:9;20618:4;20614:20;20610:1;20599:9;20595:17;20588:47;20652:78;20725:4;20716:6;20652:78;:::i;:::-;20644:86;;20424:313;;;;:::o;20743:419::-;20909:4;20947:2;20936:9;20932:18;20924:26;;20996:9;20990:4;20986:20;20982:1;20971:9;20967:17;20960:47;21024:131;21150:4;21024:131;:::i;:::-;21016:139;;20743:419;;;:::o;21168:::-;21334:4;21372:2;21361:9;21357:18;21349:26;;21421:9;21415:4;21411:20;21407:1;21396:9;21392:17;21385:47;21449:131;21575:4;21449:131;:::i;:::-;21441:139;;21168:419;;;:::o;21593:::-;21759:4;21797:2;21786:9;21782:18;21774:26;;21846:9;21840:4;21836:20;21832:1;21821:9;21817:17;21810:47;21874:131;22000:4;21874:131;:::i;:::-;21866:139;;21593:419;;;:::o;22018:::-;22184:4;22222:2;22211:9;22207:18;22199:26;;22271:9;22265:4;22261:20;22257:1;22246:9;22242:17;22235:47;22299:131;22425:4;22299:131;:::i;:::-;22291:139;;22018:419;;;:::o;22443:::-;22609:4;22647:2;22636:9;22632:18;22624:26;;22696:9;22690:4;22686:20;22682:1;22671:9;22667:17;22660:47;22724:131;22850:4;22724:131;:::i;:::-;22716:139;;22443:419;;;:::o;22868:::-;23034:4;23072:2;23061:9;23057:18;23049:26;;23121:9;23115:4;23111:20;23107:1;23096:9;23092:17;23085:47;23149:131;23275:4;23149:131;:::i;:::-;23141:139;;22868:419;;;:::o;23293:::-;23459:4;23497:2;23486:9;23482:18;23474:26;;23546:9;23540:4;23536:20;23532:1;23521:9;23517:17;23510:47;23574:131;23700:4;23574:131;:::i;:::-;23566:139;;23293:419;;;:::o;23718:::-;23884:4;23922:2;23911:9;23907:18;23899:26;;23971:9;23965:4;23961:20;23957:1;23946:9;23942:17;23935:47;23999:131;24125:4;23999:131;:::i;:::-;23991:139;;23718:419;;;:::o;24143:::-;24309:4;24347:2;24336:9;24332:18;24324:26;;24396:9;24390:4;24386:20;24382:1;24371:9;24367:17;24360:47;24424:131;24550:4;24424:131;:::i;:::-;24416:139;;24143:419;;;:::o;24568:::-;24734:4;24772:2;24761:9;24757:18;24749:26;;24821:9;24815:4;24811:20;24807:1;24796:9;24792:17;24785:47;24849:131;24975:4;24849:131;:::i;:::-;24841:139;;24568:419;;;:::o;24993:::-;25159:4;25197:2;25186:9;25182:18;25174:26;;25246:9;25240:4;25236:20;25232:1;25221:9;25217:17;25210:47;25274:131;25400:4;25274:131;:::i;:::-;25266:139;;24993:419;;;:::o;25418:::-;25584:4;25622:2;25611:9;25607:18;25599:26;;25671:9;25665:4;25661:20;25657:1;25646:9;25642:17;25635:47;25699:131;25825:4;25699:131;:::i;:::-;25691:139;;25418:419;;;:::o;25843:::-;26009:4;26047:2;26036:9;26032:18;26024:26;;26096:9;26090:4;26086:20;26082:1;26071:9;26067:17;26060:47;26124:131;26250:4;26124:131;:::i;:::-;26116:139;;25843:419;;;:::o;26268:::-;26434:4;26472:2;26461:9;26457:18;26449:26;;26521:9;26515:4;26511:20;26507:1;26496:9;26492:17;26485:47;26549:131;26675:4;26549:131;:::i;:::-;26541:139;;26268:419;;;:::o;26693:::-;26859:4;26897:2;26886:9;26882:18;26874:26;;26946:9;26940:4;26936:20;26932:1;26921:9;26917:17;26910:47;26974:131;27100:4;26974:131;:::i;:::-;26966:139;;26693:419;;;:::o;27118:::-;27284:4;27322:2;27311:9;27307:18;27299:26;;27371:9;27365:4;27361:20;27357:1;27346:9;27342:17;27335:47;27399:131;27525:4;27399:131;:::i;:::-;27391:139;;27118:419;;;:::o;27543:::-;27709:4;27747:2;27736:9;27732:18;27724:26;;27796:9;27790:4;27786:20;27782:1;27771:9;27767:17;27760:47;27824:131;27950:4;27824:131;:::i;:::-;27816:139;;27543:419;;;:::o;27968:::-;28134:4;28172:2;28161:9;28157:18;28149:26;;28221:9;28215:4;28211:20;28207:1;28196:9;28192:17;28185:47;28249:131;28375:4;28249:131;:::i;:::-;28241:139;;27968:419;;;:::o;28393:::-;28559:4;28597:2;28586:9;28582:18;28574:26;;28646:9;28640:4;28636:20;28632:1;28621:9;28617:17;28610:47;28674:131;28800:4;28674:131;:::i;:::-;28666:139;;28393:419;;;:::o;28818:::-;28984:4;29022:2;29011:9;29007:18;28999:26;;29071:9;29065:4;29061:20;29057:1;29046:9;29042:17;29035:47;29099:131;29225:4;29099:131;:::i;:::-;29091:139;;28818:419;;;:::o;29243:::-;29409:4;29447:2;29436:9;29432:18;29424:26;;29496:9;29490:4;29486:20;29482:1;29471:9;29467:17;29460:47;29524:131;29650:4;29524:131;:::i;:::-;29516:139;;29243:419;;;:::o;29668:::-;29834:4;29872:2;29861:9;29857:18;29849:26;;29921:9;29915:4;29911:20;29907:1;29896:9;29892:17;29885:47;29949:131;30075:4;29949:131;:::i;:::-;29941:139;;29668:419;;;:::o;30093:::-;30259:4;30297:2;30286:9;30282:18;30274:26;;30346:9;30340:4;30336:20;30332:1;30321:9;30317:17;30310:47;30374:131;30500:4;30374:131;:::i;:::-;30366:139;;30093:419;;;:::o;30518:::-;30684:4;30722:2;30711:9;30707:18;30699:26;;30771:9;30765:4;30761:20;30757:1;30746:9;30742:17;30735:47;30799:131;30925:4;30799:131;:::i;:::-;30791:139;;30518:419;;;:::o;30943:::-;31109:4;31147:2;31136:9;31132:18;31124:26;;31196:9;31190:4;31186:20;31182:1;31171:9;31167:17;31160:47;31224:131;31350:4;31224:131;:::i;:::-;31216:139;;30943:419;;;:::o;31368:222::-;31461:4;31499:2;31488:9;31484:18;31476:26;;31512:71;31580:1;31569:9;31565:17;31556:6;31512:71;:::i;:::-;31368:222;;;;:::o;31596:129::-;31630:6;31657:20;;:::i;:::-;31647:30;;31686:33;31714:4;31706:6;31686:33;:::i;:::-;31596:129;;;:::o;31731:75::-;31764:6;31797:2;31791:9;31781:19;;31731:75;:::o;31812:307::-;31873:4;31963:18;31955:6;31952:30;31949:56;;;31985:18;;:::i;:::-;31949:56;32023:29;32045:6;32023:29;:::i;:::-;32015:37;;32107:4;32101;32097:15;32089:23;;31812:307;;;:::o;32125:308::-;32187:4;32277:18;32269:6;32266:30;32263:56;;;32299:18;;:::i;:::-;32263:56;32337:29;32359:6;32337:29;:::i;:::-;32329:37;;32421:4;32415;32411:15;32403:23;;32125:308;;;:::o;32439:98::-;32490:6;32524:5;32518:12;32508:22;;32439:98;;;:::o;32543:99::-;32595:6;32629:5;32623:12;32613:22;;32543:99;;;:::o;32648:168::-;32731:11;32765:6;32760:3;32753:19;32805:4;32800:3;32796:14;32781:29;;32648:168;;;;:::o;32822:169::-;32906:11;32940:6;32935:3;32928:19;32980:4;32975:3;32971:14;32956:29;;32822:169;;;;:::o;32997:148::-;33099:11;33136:3;33121:18;;32997:148;;;;:::o;33151:305::-;33191:3;33210:20;33228:1;33210:20;:::i;:::-;33205:25;;33244:20;33262:1;33244:20;:::i;:::-;33239:25;;33398:1;33330:66;33326:74;33323:1;33320:81;33317:107;;;33404:18;;:::i;:::-;33317:107;33448:1;33445;33441:9;33434:16;;33151:305;;;;:::o;33462:185::-;33502:1;33519:20;33537:1;33519:20;:::i;:::-;33514:25;;33553:20;33571:1;33553:20;:::i;:::-;33548:25;;33592:1;33582:35;;33597:18;;:::i;:::-;33582:35;33639:1;33636;33632:9;33627:14;;33462:185;;;;:::o;33653:191::-;33693:4;33713:20;33731:1;33713:20;:::i;:::-;33708:25;;33747:20;33765:1;33747:20;:::i;:::-;33742:25;;33786:1;33783;33780:8;33777:34;;;33791:18;;:::i;:::-;33777:34;33836:1;33833;33829:9;33821:17;;33653:191;;;;:::o;33850:96::-;33887:7;33916:24;33934:5;33916:24;:::i;:::-;33905:35;;33850:96;;;:::o;33952:90::-;33986:7;34029:5;34022:13;34015:21;34004:32;;33952:90;;;:::o;34048:149::-;34084:7;34124:66;34117:5;34113:78;34102:89;;34048:149;;;:::o;34203:126::-;34240:7;34280:42;34273:5;34269:54;34258:65;;34203:126;;;:::o;34335:77::-;34372:7;34401:5;34390:16;;34335:77;;;:::o;34418:154::-;34502:6;34497:3;34492;34479:30;34564:1;34555:6;34550:3;34546:16;34539:27;34418:154;;;:::o;34578:307::-;34646:1;34656:113;34670:6;34667:1;34664:13;34656:113;;;34755:1;34750:3;34746:11;34740:18;34736:1;34731:3;34727:11;34720:39;34692:2;34689:1;34685:10;34680:15;;34656:113;;;34787:6;34784:1;34781:13;34778:101;;;34867:1;34858:6;34853:3;34849:16;34842:27;34778:101;34627:258;34578:307;;;:::o;34891:320::-;34935:6;34972:1;34966:4;34962:12;34952:22;;35019:1;35013:4;35009:12;35040:18;35030:81;;35096:4;35088:6;35084:17;35074:27;;35030:81;35158:2;35150:6;35147:14;35127:18;35124:38;35121:84;;;35177:18;;:::i;:::-;35121:84;34942:269;34891:320;;;:::o;35217:281::-;35300:27;35322:4;35300:27;:::i;:::-;35292:6;35288:40;35430:6;35418:10;35415:22;35394:18;35382:10;35379:34;35376:62;35373:88;;;35441:18;;:::i;:::-;35373:88;35481:10;35477:2;35470:22;35260:238;35217:281;;:::o;35504:233::-;35543:3;35566:24;35584:5;35566:24;:::i;:::-;35557:33;;35612:66;35605:5;35602:77;35599:103;;;35682:18;;:::i;:::-;35599:103;35729:1;35722:5;35718:13;35711:20;;35504:233;;;:::o;35743:176::-;35775:1;35792:20;35810:1;35792:20;:::i;:::-;35787:25;;35826:20;35844:1;35826:20;:::i;:::-;35821:25;;35865:1;35855:35;;35870:18;;:::i;:::-;35855:35;35911:1;35908;35904:9;35899:14;;35743:176;;;;:::o;35925:180::-;35973:77;35970:1;35963:88;36070:4;36067:1;36060:15;36094:4;36091:1;36084:15;36111:180;36159:77;36156:1;36149:88;36256:4;36253:1;36246:15;36280:4;36277:1;36270:15;36297:180;36345:77;36342:1;36335:88;36442:4;36439:1;36432:15;36466:4;36463:1;36456:15;36483:180;36531:77;36528:1;36521:88;36628:4;36625:1;36618:15;36652:4;36649:1;36642:15;36669:180;36717:77;36714:1;36707:88;36814:4;36811:1;36804:15;36838:4;36835:1;36828:15;36855:180;36903:77;36900:1;36893:88;37000:4;36997:1;36990:15;37024:4;37021:1;37014:15;37041:117;37150:1;37147;37140:12;37164:117;37273:1;37270;37263:12;37287:117;37396:1;37393;37386:12;37410:117;37519:1;37516;37509:12;37533:102;37574:6;37625:2;37621:7;37616:2;37609:5;37605:14;37601:28;37591:38;;37533:102;;;:::o;37641:170::-;37781:22;37777:1;37769:6;37765:14;37758:46;37641:170;:::o;37817:230::-;37957:34;37953:1;37945:6;37941:14;37934:58;38026:13;38021:2;38013:6;38009:15;38002:38;37817:230;:::o;38053:237::-;38193:34;38189:1;38181:6;38177:14;38170:58;38262:20;38257:2;38249:6;38245:15;38238:45;38053:237;:::o;38296:225::-;38436:34;38432:1;38424:6;38420:14;38413:58;38505:8;38500:2;38492:6;38488:15;38481:33;38296:225;:::o;38527:178::-;38667:30;38663:1;38655:6;38651:14;38644:54;38527:178;:::o;38711:174::-;38851:26;38847:1;38839:6;38835:14;38828:50;38711:174;:::o;38891:179::-;39031:31;39027:1;39019:6;39015:14;39008:55;38891:179;:::o;39076:223::-;39216:34;39212:1;39204:6;39200:14;39193:58;39285:6;39280:2;39272:6;39268:15;39261:31;39076:223;:::o;39305:175::-;39445:27;39441:1;39433:6;39429:14;39422:51;39305:175;:::o;39486:231::-;39626:34;39622:1;39614:6;39610:14;39603:58;39695:14;39690:2;39682:6;39678:15;39671:39;39486:231;:::o;39723:166::-;39863:18;39859:1;39851:6;39847:14;39840:42;39723:166;:::o;39895:243::-;40035:34;40031:1;40023:6;40019:14;40012:58;40104:26;40099:2;40091:6;40087:15;40080:51;39895:243;:::o;40144:229::-;40284:34;40280:1;40272:6;40268:14;40261:58;40353:12;40348:2;40340:6;40336:15;40329:37;40144:229;:::o;40379:228::-;40519:34;40515:1;40507:6;40503:14;40496:58;40588:11;40583:2;40575:6;40571:15;40564:36;40379:228;:::o;40613:233::-;40753:34;40749:1;40741:6;40737:14;40730:58;40822:16;40817:2;40809:6;40805:15;40798:41;40613:233;:::o;40852:182::-;40992:34;40988:1;40980:6;40976:14;40969:58;40852:182;:::o;41040:236::-;41180:34;41176:1;41168:6;41164:14;41157:58;41249:19;41244:2;41236:6;41232:15;41225:44;41040:236;:::o;41282:231::-;41422:34;41418:1;41410:6;41406:14;41399:58;41491:14;41486:2;41478:6;41474:15;41467:39;41282:231;:::o;41519:155::-;41659:7;41655:1;41647:6;41643:14;41636:31;41519:155;:::o;41680:182::-;41820:34;41816:1;41808:6;41804:14;41797:58;41680:182;:::o;41868:228::-;42008:34;42004:1;41996:6;41992:14;41985:58;42077:11;42072:2;42064:6;42060:15;42053:36;41868:228;:::o;42102:234::-;42242:34;42238:1;42230:6;42226:14;42219:58;42311:17;42306:2;42298:6;42294:15;42287:42;42102:234;:::o;42342:220::-;42482:34;42478:1;42470:6;42466:14;42459:58;42551:3;42546:2;42538:6;42534:15;42527:28;42342:220;:::o;42568:236::-;42708:34;42704:1;42696:6;42692:14;42685:58;42777:19;42772:2;42764:6;42760:15;42753:44;42568:236;:::o;42810:231::-;42950:34;42946:1;42938:6;42934:14;42927:58;43019:14;43014:2;43006:6;43002:15;42995:39;42810:231;:::o;43047:235::-;43187:34;43183:1;43175:6;43171:14;43164:58;43256:18;43251:2;43243:6;43239:15;43232:43;43047:235;:::o;43288:122::-;43361:24;43379:5;43361:24;:::i;:::-;43354:5;43351:35;43341:63;;43400:1;43397;43390:12;43341:63;43288:122;:::o;43416:116::-;43486:21;43501:5;43486:21;:::i;:::-;43479:5;43476:32;43466:60;;43522:1;43519;43512:12;43466:60;43416:116;:::o;43538:120::-;43610:23;43627:5;43610:23;:::i;:::-;43603:5;43600:34;43590:62;;43648:1;43645;43638:12;43590:62;43538:120;:::o;43664:122::-;43737:24;43755:5;43737:24;:::i;:::-;43730:5;43727:35;43717:63;;43776:1;43773;43766:12;43717:63;43664:122;:::o

Swarm Source

ipfs://ba9c13acbb9baca2dfc9c456bcbb4a5a1dbd2834c2be3878ad3dcbb52915ed35
Loading