ETH Price: $2,501.51 (-5.05%)

Token

SWEED GA-ME NFT (SWEED)
 

Overview

Max Total Supply

363 SWEED

Holders

62

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fangksbin.eth
Balance
5 SWEED
0xab1EF6A2Bd769dCe3dA9Cd96e8f16F00F50eE6e6
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SweedGame

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// Sources flattened with hardhat v2.9.9 https://hardhat.org
// File @openzeppelin/contracts/utils/introspection/[email protected]
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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


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


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

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


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

pragma solidity ^0.8.0;

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

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

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


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


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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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


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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


// File contracts/sweed.sol


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.9;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */

contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/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();
    }
}

pragma solidity ^0.8.9;

contract SweedGame is ERC721Enumerable, Ownable {

    bool internal locked;

        modifier noReentrant() {
            require(!locked, "NO NO!");
            locked = true;
            _;
            locked = false;
        }

    using Strings for uint256;
    string baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public cost = 0 ether;
    // uint256 public tier1 = 5 ether;
    // uint256 public tier2 = 10 ether;
    uint256 public maxSupply = 7777;
    uint256 public maxMintAmount = 10;
    uint256 public timeDeployed;
    uint256 public allowMintingAfter = 0;
    uint256 public nftPerAddressLimit = 10;
    bool public isPaused = false;
    bool public isRevealed = false;
    bool public onlyWhitelisted = false;
    address[] public whitelistedAddresses;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri,
        uint256 _revealTime
    ) ERC721(_name, _symbol) {
        if (_revealTime > block.timestamp) {
            allowMintingAfter = _revealTime - block.timestamp;
        }

        timeDeployed = block.timestamp;
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

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

    // public
    function mint(uint256 _mintAmount) public payable noReentrant {
        require(
            block.timestamp >= timeDeployed + allowMintingAfter,
            "Minting now allowed yet"
        );
        require(!isPaused);
        uint256 supply = totalSupply();
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
            if(onlyWhitelisted == true) {
                require(isWhitelisted(msg.sender), "user is not whitelisted");
                uint256 ownerTokenCount = balanceOf(msg.sender);
                require(ownerTokenCount < nftPerAddressLimit);
            }
            require(msg.value >= cost * _mintAmount);
        }
        // if (supply > 8000) {
        //     require(msg.value >= (cost + tier2) * _mintAmount);
        // } else if (supply > 5000) {
        //     require(msg.value >= (cost + tier1) * _mintAmount);
        // } else if (supply > 500) {
        //     require(msg.value >= cost * _mintAmount);
        // }
        for (uint256 i = 1; i <= _mintAmount; i++) {
         require(_mintAmount <= maxMintAmount);
            _safeMint(msg.sender, supply + i);
        }
    }

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

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

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

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

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

    function getSecondsUntilMinting() public view returns (uint256) {
        if (block.timestamp < timeDeployed + allowMintingAfter) {
            return (timeDeployed + allowMintingAfter) - block.timestamp;
        } else {
            return 0;
        }
    }

    //only owner
    function setIsRevealed(bool _state) public onlyOwner {
        isRevealed = _state;
    }

     function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }   

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

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

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setIsPaused(bool _state) public onlyOwner {
        isPaused = _state;
    }

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

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

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


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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}


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


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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


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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC721Receiver} interface.
 *
 * Accepts all token transfers.
 * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}.
 */
contract ERC721Holder is IERC721Receiver {
    /**
     * @dev See {IERC721Receiver-onERC721Received}.
     *
     * Always returns `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }
}


// File contracts/sweedFarm.sol


pragma solidity ^0.8.9;
// import "./sweedToken.sol";
    

interface RewardToken is IERC20 {
    function mint(address to, uint256 amount) external; 
}

contract SweedFarm is Ownable{

        IERC721 public sweedNFT;
        RewardToken public sweedToken;

        uint256 public stakedTotal;
        uint256 public stakingStartTime;
        uint256 constant stakingTime = 43200 seconds;
        uint256 constant token = 10e18;

        struct Staker {
            uint256[] tokenIds;
            mapping(uint256 => uint256) tokenStakingCoolDown;
            uint256 balance;
            uint256 rewardsReleased;
        }

        bool internal locked;

        modifier noReentrant() {
            require(!locked, "NO NO!");
            locked = true;
            _;
            locked = false;
        }

        constructor(
        IERC721 _sweedNFT,
        RewardToken _sweedToken
        ) {
            sweedNFT = _sweedNFT;
            sweedToken = _sweedToken;
        }

        mapping(address => Staker) public stakers;
        mapping (uint256 => address) public tokenOwner;
        bool public tokenClaimable;
        bool initialised;

        event Staked(address owner, uint256 amount);
        event Unstaked(address owner, uint256 amount);
        event RewardPaid(address indexed user, uint256 reward);
        event ClaimableStatusUpdated(bool status);
        event EmergenctUnstake(address indexed user, uint256 tokenId);

        function initStaking() public onlyOwner {
            require(!initialised, "Already initialised");
            stakingStartTime = block.timestamp;
            initialised = true;
        }

        function setTokenClaimable(bool _enabled) public onlyOwner {
            tokenClaimable = _enabled;
            emit ClaimableStatusUpdated(_enabled);
        }

        function getStakedTokens(address _user)
            public
            view
            returns (uint256[] memory tokenIds)
        {
            return stakers[_user].tokenIds;
        }

        function stake(uint256 tokenId) public {
            _stake(msg.sender, tokenId);
        }

         function unstake(uint256 tokenId) public {
            _unstake(msg.sender, tokenId);
        }

        function stakeBatch(uint256[] memory tokenIds) public {
            for (uint256 i = 0; i < tokenIds.length; i++) {
                _stake(msg.sender, tokenIds[i]);
            }
        }

        function _stake(address _user, uint256 _tokenId) internal {
            require(initialised, "Staking System: the stacking has not started");
            require(
                sweedNFT.ownerOf(_tokenId) == _user,
                "user must be the owner of the token"
            );
            Staker storage staker = stakers[_user];

            staker.tokenIds.push(_tokenId);
            staker.tokenStakingCoolDown[_tokenId] = block.timestamp;
            tokenOwner[_tokenId] = _user;
            sweedNFT.approve(address(this), _tokenId);
            sweedNFT.safeTransferFrom(_user, address(this), _tokenId);

            emit Staked(_user, _tokenId);
            stakedTotal++;
        }

        function _unstake(address _user, uint256 _tokenId) internal {
            require(
                tokenOwner[_tokenId] == _user,
                "Nft Staking Syetem: User must be the owner of the staked NFT"
            );
            Staker storage staker = stakers[_user];

            uint256 lastIndex = staker.tokenIds.length -1;
            uint256 lastIndexKey = staker.tokenIds[lastIndex];

            if (staker.tokenIds.length > 0) {
            uint256 lastIndex = staker.tokenIds.length - 1;
            uint256 lastIndexKey = staker.tokenIds[lastIndex];
            for (uint256 i = 0; i <= lastIndex; i++) {
                if (_tokenId == staker.tokenIds[i]) {
                staker.tokenIds[i] = lastIndexKey;
                }
            }
            staker.tokenIds.pop();
            staker.tokenStakingCoolDown[_tokenId] = 0;
            delete tokenOwner[_tokenId];
            sweedNFT.safeTransferFrom(address(this), _user, _tokenId);
            emit Unstaked(_user, _tokenId);
            stakedTotal--;
         }
        }

        function updateReward(address _user) public {
            Staker storage staker = stakers[_user];
            uint256[] storage ids = staker.tokenIds;
            for(uint256 i = 0; i < ids.length; i++) {
                if(
                    staker.tokenStakingCoolDown[ids[i]] <
                        block.timestamp + stakingTime && staker.tokenStakingCoolDown[ids[i]] > 0
                ) {
                    uint256 stakeDays = ((block.timestamp - uint(staker.tokenStakingCoolDown[ids[i]]))) / stakingTime;
                    uint256 partialTime = ((block.timestamp - uint(staker.tokenStakingCoolDown[ids[i]]))) % stakingTime;

                    staker.balance += token* stakeDays;
                    staker.tokenStakingCoolDown[ids[i]] = block.timestamp + partialTime;

                    // console.log uint(staker.tokenStakingCoolDown[ids[i]]);
                    // console.log uint(staker.balance);
                }
            }
        }

        function claimReward(address _user) public noReentrant {
            require(tokenClaimable == true, "Tokens cannot be claimed yet");
            require(stakers[_user].balance > 0 , "0 reward yet");

            stakers[_user].rewardsReleased += stakers[_user].balance;
            
            sweedToken.mint(_user, stakers[_user].balance);
            stakers[_user].balance = 0;
            emit RewardPaid(_user, stakers[_user].balance);
        }

        function onERC721Received(
        address operator,
        address from,
        uint256 id,
        bytes calldata data
    ) external returns (bytes4) {
        return bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"));
    }
}


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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


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


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

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


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


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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}


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


// OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File contracts/sweedToken.sol


pragma solidity ^0.8.9;
contract SweedToken is ERC20, ERC20Burnable, AccessControl {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");

    constructor() ERC20("SweedToken", "SWEED") {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _grantRole(MINTER_ROLE, msg.sender);
    }

    function mint(address to, uint256 amount) public onlyRole(MINTER_ROLE) {
        _mint(to, amount);
    }

    // function burn(address _user, uint256 amount) public virtual {
    //     _burn(_user, amount);
    // }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"uint256","name":"_revealTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"allowMintingAfter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSecondsUntilMinting","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIsPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeDeployed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620003e6565b506000600e55611e61600f55600a6010556000601255600a6013556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff021916908315150217905550348015620000ca57600080fd5b5060405162005643380380620056438339818101604052810190620000f091906200066e565b848481600090805190602001906200010a929190620003e6565b50806001908051906020019062000123929190620003e6565b505050620001466200013a6200019860201b60201c565b620001a060201b60201c565b42811115620001645742816200015d9190620007a1565b6012819055505b426011819055506200017c836200026660201b60201c565b6200018d826200031160201b60201c565b5050505050620008c4565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002766200019860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200029c620003bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ec906200083d565b60405180910390fd5b80600b90805190602001906200030d929190620003e6565b5050565b620003216200019860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000347620003bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000397906200083d565b60405180910390fd5b80600d9080519060200190620003b8929190620003e6565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003f4906200088e565b90600052602060002090601f01602090048101928262000418576000855562000464565b82601f106200043357805160ff191683800117855562000464565b8280016001018555821562000464579182015b828111156200046357825182559160200191906001019062000446565b5b50905062000473919062000477565b5090565b5b808211156200049257600081600090555060010162000478565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004ff82620004b4565b810181811067ffffffffffffffff82111715620005215762000520620004c5565b5b80604052505050565b60006200053662000496565b9050620005448282620004f4565b919050565b600067ffffffffffffffff821115620005675762000566620004c5565b5b6200057282620004b4565b9050602081019050919050565b60005b838110156200059f57808201518184015260208101905062000582565b83811115620005af576000848401525b50505050565b6000620005cc620005c68462000549565b6200052a565b905082815260208101848484011115620005eb57620005ea620004af565b5b620005f88482856200057f565b509392505050565b600082601f830112620006185762000617620004aa565b5b81516200062a848260208601620005b5565b91505092915050565b6000819050919050565b620006488162000633565b81146200065457600080fd5b50565b60008151905062000668816200063d565b92915050565b600080600080600060a086880312156200068d576200068c620004a0565b5b600086015167ffffffffffffffff811115620006ae57620006ad620004a5565b5b620006bc8882890162000600565b955050602086015167ffffffffffffffff811115620006e057620006df620004a5565b5b620006ee8882890162000600565b945050604086015167ffffffffffffffff811115620007125762000711620004a5565b5b620007208882890162000600565b935050606086015167ffffffffffffffff811115620007445762000743620004a5565b5b620007528882890162000600565b9250506080620007658882890162000657565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007ae8262000633565b9150620007bb8362000633565b925082821015620007d157620007d062000772565b5b828203905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000825602083620007dc565b91506200083282620007ed565b602082019050919050565b60006020820190508181036000830152620008588162000816565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008a757607f821691505b60208210811415620008be57620008bd6200085f565b5b50919050565b614d6f80620008d46000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610992578063da3ef23f146109bd578063e985e9c5146109e6578063edec5f2714610a23578063f2c4ce1e14610a4c578063f2fde38b14610a755761027d565b8063b88d4fde14610870578063ba4e5c4914610899578063ba7d2c76146108d6578063c668286214610901578063c87b56dd1461092c578063d0eb26b0146109695761027d565b806395d89b411161011357806395d89b411461077f5780639c70b512146107aa578063a0712d68146107d5578063a22cb465146107f1578063a75052cb1461081a578063b187bd26146108455761027d565b806370a08231146106ac578063715018a6146106e95780637f00c7a614610700578063872bdcdb146107295780638da5cb5b146107545761027d565b80632f745c59116101f357806344a0d68a116101ac57806344a0d68a1461058c57806349a5980a146105b55780634f6ccce7146105de57806354214f691461061b57806355f804b3146106465780636352211e1461066f5761027d565b80632f745c59146104795780633af32abf146104b65780633c952764146104f35780633ccfd60b1461051c57806342842e0e14610526578063438b63001461054f5761027d565b806313faede61161024557806313faede61461037b57806318160ddd146103a657806319188c35146103d1578063239c70ae146103fc57806323b872dd14610427578063240976bf146104505761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063081c8c4414610327578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613578565b610a9e565b6040516102b691906135c0565b60405180910390f35b3480156102cb57600080fd5b506102d4610b18565b6040516102e19190613674565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c91906136cc565b610baa565b60405161031e919061373a565b60405180910390f35b34801561033357600080fd5b5061033c610c2f565b6040516103499190613674565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613781565b610cbd565b005b34801561038757600080fd5b50610390610dd5565b60405161039d91906137d0565b60405180910390f35b3480156103b257600080fd5b506103bb610ddb565b6040516103c891906137d0565b60405180910390f35b3480156103dd57600080fd5b506103e6610de8565b6040516103f391906137d0565b60405180910390f35b34801561040857600080fd5b50610411610dee565b60405161041e91906137d0565b60405180910390f35b34801561043357600080fd5b5061044e600480360381019061044991906137eb565b610df4565b005b34801561045c57600080fd5b506104776004803603810190610472919061386a565b610e54565b005b34801561048557600080fd5b506104a0600480360381019061049b9190613781565b610eed565b6040516104ad91906137d0565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190613897565b610f92565b6040516104ea91906135c0565b60405180910390f35b3480156104ff57600080fd5b5061051a6004803603810190610515919061386a565b611041565b005b6105246110da565b005b34801561053257600080fd5b5061054d600480360381019061054891906137eb565b6111cf565b005b34801561055b57600080fd5b5061057660048036038101906105719190613897565b6111ef565b6040516105839190613982565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906136cc565b61129d565b005b3480156105c157600080fd5b506105dc60048036038101906105d7919061386a565b611323565b005b3480156105ea57600080fd5b50610605600480360381019061060091906136cc565b6113bc565b60405161061291906137d0565b60405180910390f35b34801561062757600080fd5b5061063061142d565b60405161063d91906135c0565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613ad9565b611440565b005b34801561067b57600080fd5b50610696600480360381019061069191906136cc565b6114d6565b6040516106a3919061373a565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190613897565b611588565b6040516106e091906137d0565b60405180910390f35b3480156106f557600080fd5b506106fe611640565b005b34801561070c57600080fd5b50610727600480360381019061072291906136cc565b6116c8565b005b34801561073557600080fd5b5061073e61174e565b60405161074b91906137d0565b60405180910390f35b34801561076057600080fd5b50610769611754565b604051610776919061373a565b60405180910390f35b34801561078b57600080fd5b5061079461177e565b6040516107a19190613674565b60405180910390f35b3480156107b657600080fd5b506107bf611810565b6040516107cc91906135c0565b60405180910390f35b6107ef60048036038101906107ea91906136cc565b611823565b005b3480156107fd57600080fd5b5061081860048036038101906108139190613b22565b611a77565b005b34801561082657600080fd5b5061082f611bf8565b60405161083c91906137d0565b60405180910390f35b34801561085157600080fd5b5061085a611c3b565b60405161086791906135c0565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613c03565b611c4e565b005b3480156108a557600080fd5b506108c060048036038101906108bb91906136cc565b611cb0565b6040516108cd919061373a565b60405180910390f35b3480156108e257600080fd5b506108eb611cef565b6040516108f891906137d0565b60405180910390f35b34801561090d57600080fd5b50610916611cf5565b6040516109239190613674565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e91906136cc565b611d83565b6040516109609190613674565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b91906136cc565b611edc565b005b34801561099e57600080fd5b506109a7611f62565b6040516109b491906137d0565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190613ad9565b611f68565b005b3480156109f257600080fd5b50610a0d6004803603810190610a089190613c86565b611ffe565b604051610a1a91906135c0565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190613d26565b612092565b005b348015610a5857600080fd5b50610a736004803603810190610a6e9190613ad9565b612132565b005b348015610a8157600080fd5b50610a9c6004803603810190610a979190613897565b6121c8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b115750610b10826122c0565b5b9050919050565b606060008054610b2790613da2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390613da2565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b5050505050905090565b6000610bb5826123a2565b610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90613e46565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610c3c90613da2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6890613da2565b8015610cb55780601f10610c8a57610100808354040283529160200191610cb5565b820191906000526020600020905b815481529060010190602001808311610c9857829003601f168201915b505050505081565b6000610cc8826114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090613ed8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5861240e565b73ffffffffffffffffffffffffffffffffffffffff161480610d875750610d8681610d8161240e565b611ffe565b5b610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90613f6a565b60405180910390fd5b610dd08383612416565b505050565b600e5481565b6000600880549050905090565b60115481565b60105481565b610e05610dff61240e565b826124cf565b610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90613ffc565b60405180910390fd5b610e4f8383836125ad565b505050565b610e5c61240e565b73ffffffffffffffffffffffffffffffffffffffff16610e7a611754565b73ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790614068565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b6000610ef883611588565b8210610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f30906140fa565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601580549050811015611036578273ffffffffffffffffffffffffffffffffffffffff1660158281548110610fd257610fd161411a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561102357600191505061103c565b808061102e90614178565b915050610f9a565b50600090505b919050565b61104961240e565b73ffffffffffffffffffffffffffffffffffffffff16611067611754565b73ffffffffffffffffffffffffffffffffffffffff16146110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b490614068565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b6110e261240e565b73ffffffffffffffffffffffffffffffffffffffff16611100611754565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90614068565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161117c906141f2565b60006040518083038185875af1925050503d80600081146111b9576040519150601f19603f3d011682016040523d82523d6000602084013e6111be565b606091505b50509050806111cc57600080fd5b50565b6111ea83838360405180602001604052806000815250611c4e565b505050565b606060006111fc83611588565b905060008167ffffffffffffffff81111561121a576112196139ae565b5b6040519080825280602002602001820160405280156112485781602001602082028036833780820191505090505b50905060005b82811015611292576112608582610eed565b8282815181106112735761127261411a565b5b602002602001018181525050808061128a90614178565b91505061124e565b508092505050919050565b6112a561240e565b73ffffffffffffffffffffffffffffffffffffffff166112c3611754565b73ffffffffffffffffffffffffffffffffffffffff1614611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614068565b60405180910390fd5b80600e8190555050565b61132b61240e565b73ffffffffffffffffffffffffffffffffffffffff16611349611754565b73ffffffffffffffffffffffffffffffffffffffff161461139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690614068565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b60006113c6610ddb565b8210611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90614279565b60405180910390fd5b6008828154811061141b5761141a61411a565b5b90600052602060002001549050919050565b601460019054906101000a900460ff1681565b61144861240e565b73ffffffffffffffffffffffffffffffffffffffff16611466611754565b73ffffffffffffffffffffffffffffffffffffffff16146114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390614068565b60405180910390fd5b80600b90805190602001906114d29291906133a8565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561157f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115769061430b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f09061439d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61164861240e565b73ffffffffffffffffffffffffffffffffffffffff16611666611754565b73ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390614068565b60405180910390fd5b6116c66000612809565b565b6116d061240e565b73ffffffffffffffffffffffffffffffffffffffff166116ee611754565b73ffffffffffffffffffffffffffffffffffffffff1614611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90614068565b60405180910390fd5b8060108190555050565b60125481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461178d90613da2565b80601f01602080910402602001604051908101604052809291908181526020018280546117b990613da2565b80156118065780601f106117db57610100808354040283529160200191611806565b820191906000526020600020905b8154815290600101906020018083116117e957829003601f168201915b5050505050905090565b601460029054906101000a900460ff1681565b600a60149054906101000a900460ff1615611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a90614409565b60405180910390fd5b6001600a60146101000a81548160ff02191690831515021790555060125460115461189e9190614429565b4210156118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d7906144cb565b60405180910390fd5b601460009054906101000a900460ff16156118fa57600080fd5b6000611904610ddb565b90506000821161191357600080fd5b60105482111561192257600080fd5b600f5482826119319190614429565b111561193c57600080fd5b611944611754565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a125760011515601460029054906101000a900460ff16151514156119f75761199b33610f92565b6119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190614537565b60405180910390fd5b60006119e533611588565b905060135481106119f557600080fd5b505b81600e54611a059190614557565b341015611a1157600080fd5b5b6000600190505b828111611a5757601054831115611a2f57600080fd5b611a44338284611a3f9190614429565b6128cf565b8080611a4f90614178565b915050611a19565b50506000600a60146101000a81548160ff02191690831515021790555050565b611a7f61240e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae4906145fd565b60405180910390fd5b8060056000611afa61240e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ba761240e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bec91906135c0565b60405180910390a35050565b6000601254601154611c0a9190614429565b421015611c335742601254601154611c229190614429565b611c2c919061461d565b9050611c38565b600090505b90565b601460009054906101000a900460ff1681565b611c5f611c5961240e565b836124cf565b611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9590613ffc565b60405180910390fd5b611caa848484846128ed565b50505050565b60158181548110611cc057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600c8054611d0290613da2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2e90613da2565b8015611d7b5780601f10611d5057610100808354040283529160200191611d7b565b820191906000526020600020905b815481529060010190602001808311611d5e57829003601f168201915b505050505081565b6060611d8e826123a2565b611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc4906146c3565b60405180910390fd5b60001515601460019054906101000a900460ff1615151415611e7b57600d8054611df690613da2565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2290613da2565b8015611e6f5780601f10611e4457610100808354040283529160200191611e6f565b820191906000526020600020905b815481529060010190602001808311611e5257829003601f168201915b50505050509050611ed7565b6000611e85612949565b90506000815111611ea55760405180602001604052806000815250611ed3565b80611eaf846129db565b600c604051602001611ec3939291906147b3565b6040516020818303038152906040525b9150505b919050565b611ee461240e565b73ffffffffffffffffffffffffffffffffffffffff16611f02611754565b73ffffffffffffffffffffffffffffffffffffffff1614611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f90614068565b60405180910390fd5b8060138190555050565b600f5481565b611f7061240e565b73ffffffffffffffffffffffffffffffffffffffff16611f8e611754565b73ffffffffffffffffffffffffffffffffffffffff1614611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90614068565b60405180910390fd5b80600c9080519060200190611ffa9291906133a8565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61209a61240e565b73ffffffffffffffffffffffffffffffffffffffff166120b8611754565b73ffffffffffffffffffffffffffffffffffffffff161461210e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210590614068565b60405180910390fd5b6015600061211c919061342e565b81816015919061212d92919061344f565b505050565b61213a61240e565b73ffffffffffffffffffffffffffffffffffffffff16612158611754565b73ffffffffffffffffffffffffffffffffffffffff16146121ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a590614068565b60405180910390fd5b80600d90805190602001906121c49291906133a8565b5050565b6121d061240e565b73ffffffffffffffffffffffffffffffffffffffff166121ee611754565b73ffffffffffffffffffffffffffffffffffffffff1614612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90614068565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ab90614856565b60405180910390fd5b6122bd81612809565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061238b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061239b575061239a82612b3c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612489836114d6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124da826123a2565b612519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612510906148e8565b60405180910390fd5b6000612524836114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061259357508373ffffffffffffffffffffffffffffffffffffffff1661257b84610baa565b73ffffffffffffffffffffffffffffffffffffffff16145b806125a457506125a38185611ffe565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125cd826114d6565b73ffffffffffffffffffffffffffffffffffffffff1614612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a9061497a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a90614a0c565b60405180910390fd5b61269e838383612ba6565b6126a9600082612416565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f9919061461d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127509190614429565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128e9828260405180602001604052806000815250612cba565b5050565b6128f88484846125ad565b61290484848484612d15565b612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90614a9e565b60405180910390fd5b50505050565b6060600b805461295890613da2565b80601f016020809104026020016040519081016040528092919081815260200182805461298490613da2565b80156129d15780601f106129a6576101008083540402835291602001916129d1565b820191906000526020600020905b8154815290600101906020018083116129b457829003601f168201915b5050505050905090565b60606000821415612a23576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b37565b600082905060005b60008214612a55578080612a3e90614178565b915050600a82612a4e9190614aed565b9150612a2b565b60008167ffffffffffffffff811115612a7157612a706139ae565b5b6040519080825280601f01601f191660200182016040528015612aa35781602001600182028036833780820191505090505b5090505b60008514612b3057600182612abc919061461d565b9150600a85612acb9190614b1e565b6030612ad79190614429565b60f81b818381518110612aed57612aec61411a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b299190614aed565b9450612aa7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612bb1838383612eac565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bf457612bef81612eb1565b612c33565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c3257612c318382612efa565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c7657612c7181613067565b612cb5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612cb457612cb38282613138565b5b5b505050565b612cc483836131b7565b612cd16000848484612d15565b612d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0790614a9e565b60405180910390fd5b505050565b6000612d368473ffffffffffffffffffffffffffffffffffffffff16613385565b15612e9f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d5f61240e565b8786866040518563ffffffff1660e01b8152600401612d819493929190614ba4565b602060405180830381600087803b158015612d9b57600080fd5b505af1925050508015612dcc57506040513d601f19601f82011682018060405250810190612dc99190614c05565b60015b612e4f573d8060008114612dfc576040519150601f19603f3d011682016040523d82523d6000602084013e612e01565b606091505b50600081511415612e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3e90614a9e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ea4565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f0784611588565b612f11919061461d565b9050600060076000848152602001908152602001600020549050818114612ff6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061307b919061461d565b90506000600960008481526020019081526020016000205490506000600883815481106130ab576130aa61411a565b5b9060005260206000200154905080600883815481106130cd576130cc61411a565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061311c5761311b614c32565b5b6001900381819060005260206000200160009055905550505050565b600061314383611588565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321e90614cad565b60405180910390fd5b613230816123a2565b15613270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326790614d19565b60405180910390fd5b61327c60008383612ba6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132cc9190614429565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133b490613da2565b90600052602060002090601f0160209004810192826133d6576000855561341d565b82601f106133ef57805160ff191683800117855561341d565b8280016001018555821561341d579182015b8281111561341c578251825591602001919060010190613401565b5b50905061342a91906134ef565b5090565b508054600082559060005260206000209081019061344c91906134ef565b50565b8280548282559060005260206000209081019282156134de579160200282015b828111156134dd57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061346f565b5b5090506134eb91906134ef565b5090565b5b808211156135085760008160009055506001016134f0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61355581613520565b811461356057600080fd5b50565b6000813590506135728161354c565b92915050565b60006020828403121561358e5761358d613516565b5b600061359c84828501613563565b91505092915050565b60008115159050919050565b6135ba816135a5565b82525050565b60006020820190506135d560008301846135b1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136155780820151818401526020810190506135fa565b83811115613624576000848401525b50505050565b6000601f19601f8301169050919050565b6000613646826135db565b61365081856135e6565b93506136608185602086016135f7565b6136698161362a565b840191505092915050565b6000602082019050818103600083015261368e818461363b565b905092915050565b6000819050919050565b6136a981613696565b81146136b457600080fd5b50565b6000813590506136c6816136a0565b92915050565b6000602082840312156136e2576136e1613516565b5b60006136f0848285016136b7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613724826136f9565b9050919050565b61373481613719565b82525050565b600060208201905061374f600083018461372b565b92915050565b61375e81613719565b811461376957600080fd5b50565b60008135905061377b81613755565b92915050565b6000806040838503121561379857613797613516565b5b60006137a68582860161376c565b92505060206137b7858286016136b7565b9150509250929050565b6137ca81613696565b82525050565b60006020820190506137e560008301846137c1565b92915050565b60008060006060848603121561380457613803613516565b5b60006138128682870161376c565b93505060206138238682870161376c565b9250506040613834868287016136b7565b9150509250925092565b613847816135a5565b811461385257600080fd5b50565b6000813590506138648161383e565b92915050565b6000602082840312156138805761387f613516565b5b600061388e84828501613855565b91505092915050565b6000602082840312156138ad576138ac613516565b5b60006138bb8482850161376c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138f981613696565b82525050565b600061390b83836138f0565b60208301905092915050565b6000602082019050919050565b600061392f826138c4565b61393981856138cf565b9350613944836138e0565b8060005b8381101561397557815161395c88826138ff565b975061396783613917565b925050600181019050613948565b5085935050505092915050565b6000602082019050818103600083015261399c8184613924565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139e68261362a565b810181811067ffffffffffffffff82111715613a0557613a046139ae565b5b80604052505050565b6000613a1861350c565b9050613a2482826139dd565b919050565b600067ffffffffffffffff821115613a4457613a436139ae565b5b613a4d8261362a565b9050602081019050919050565b82818337600083830152505050565b6000613a7c613a7784613a29565b613a0e565b905082815260208101848484011115613a9857613a976139a9565b5b613aa3848285613a5a565b509392505050565b600082601f830112613ac057613abf6139a4565b5b8135613ad0848260208601613a69565b91505092915050565b600060208284031215613aef57613aee613516565b5b600082013567ffffffffffffffff811115613b0d57613b0c61351b565b5b613b1984828501613aab565b91505092915050565b60008060408385031215613b3957613b38613516565b5b6000613b478582860161376c565b9250506020613b5885828601613855565b9150509250929050565b600067ffffffffffffffff821115613b7d57613b7c6139ae565b5b613b868261362a565b9050602081019050919050565b6000613ba6613ba184613b62565b613a0e565b905082815260208101848484011115613bc257613bc16139a9565b5b613bcd848285613a5a565b509392505050565b600082601f830112613bea57613be96139a4565b5b8135613bfa848260208601613b93565b91505092915050565b60008060008060808587031215613c1d57613c1c613516565b5b6000613c2b8782880161376c565b9450506020613c3c8782880161376c565b9350506040613c4d878288016136b7565b925050606085013567ffffffffffffffff811115613c6e57613c6d61351b565b5b613c7a87828801613bd5565b91505092959194509250565b60008060408385031215613c9d57613c9c613516565b5b6000613cab8582860161376c565b9250506020613cbc8582860161376c565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613ce657613ce56139a4565b5b8235905067ffffffffffffffff811115613d0357613d02613cc6565b5b602083019150836020820283011115613d1f57613d1e613ccb565b5b9250929050565b60008060208385031215613d3d57613d3c613516565b5b600083013567ffffffffffffffff811115613d5b57613d5a61351b565b5b613d6785828601613cd0565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dba57607f821691505b60208210811415613dce57613dcd613d73565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e30602c836135e6565b9150613e3b82613dd4565b604082019050919050565b60006020820190508181036000830152613e5f81613e23565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ec26021836135e6565b9150613ecd82613e66565b604082019050919050565b60006020820190508181036000830152613ef181613eb5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f546038836135e6565b9150613f5f82613ef8565b604082019050919050565b60006020820190508181036000830152613f8381613f47565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613fe66031836135e6565b9150613ff182613f8a565b604082019050919050565b6000602082019050818103600083015261401581613fd9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140526020836135e6565b915061405d8261401c565b602082019050919050565b6000602082019050818103600083015261408181614045565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006140e4602b836135e6565b91506140ef82614088565b604082019050919050565b60006020820190508181036000830152614113816140d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061418382613696565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141b6576141b5614149565b5b600182019050919050565b600081905092915050565b50565b60006141dc6000836141c1565b91506141e7826141cc565b600082019050919050565b60006141fd826141cf565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614263602c836135e6565b915061426e82614207565b604082019050919050565b6000602082019050818103600083015261429281614256565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006142f56029836135e6565b915061430082614299565b604082019050919050565b60006020820190508181036000830152614324816142e8565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614387602a836135e6565b91506143928261432b565b604082019050919050565b600060208201905081810360008301526143b68161437a565b9050919050565b7f4e4f204e4f210000000000000000000000000000000000000000000000000000600082015250565b60006143f36006836135e6565b91506143fe826143bd565b602082019050919050565b60006020820190508181036000830152614422816143e6565b9050919050565b600061443482613696565b915061443f83613696565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561447457614473614149565b5b828201905092915050565b7f4d696e74696e67206e6f7720616c6c6f77656420796574000000000000000000600082015250565b60006144b56017836135e6565b91506144c08261447f565b602082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b60006145216017836135e6565b915061452c826144eb565b602082019050919050565b6000602082019050818103600083015261455081614514565b9050919050565b600061456282613696565b915061456d83613696565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145a6576145a5614149565b5b828202905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006145e76019836135e6565b91506145f2826145b1565b602082019050919050565b60006020820190508181036000830152614616816145da565b9050919050565b600061462882613696565b915061463383613696565b92508282101561464657614645614149565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006146ad602f836135e6565b91506146b882614651565b604082019050919050565b600060208201905081810360008301526146dc816146a0565b9050919050565b600081905092915050565b60006146f9826135db565b61470381856146e3565b93506147138185602086016135f7565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461474181613da2565b61474b81866146e3565b945060018216600081146147665760018114614777576147aa565b60ff198316865281860193506147aa565b6147808561471f565b60005b838110156147a257815481890152600182019150602081019050614783565b838801955050505b50505092915050565b60006147bf82866146ee565b91506147cb82856146ee565b91506147d78284614734565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148406026836135e6565b915061484b826147e4565b604082019050919050565b6000602082019050818103600083015261486f81614833565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006148d2602c836135e6565b91506148dd82614876565b604082019050919050565b60006020820190508181036000830152614901816148c5565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006149646029836135e6565b915061496f82614908565b604082019050919050565b6000602082019050818103600083015261499381614957565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149f66024836135e6565b9150614a018261499a565b604082019050919050565b60006020820190508181036000830152614a25816149e9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614a886032836135e6565b9150614a9382614a2c565b604082019050919050565b60006020820190508181036000830152614ab781614a7b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614af882613696565b9150614b0383613696565b925082614b1357614b12614abe565b5b828204905092915050565b6000614b2982613696565b9150614b3483613696565b925082614b4457614b43614abe565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614b7682614b4f565b614b808185614b5a565b9350614b908185602086016135f7565b614b998161362a565b840191505092915050565b6000608082019050614bb9600083018761372b565b614bc6602083018661372b565b614bd360408301856137c1565b8181036060830152614be58184614b6b565b905095945050505050565b600081519050614bff8161354c565b92915050565b600060208284031215614c1b57614c1a613516565b5b6000614c2984828501614bf0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614c976020836135e6565b9150614ca282614c61565b602082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614d03601c836135e6565b9150614d0e82614ccd565b602082019050919050565b60006020820190508181036000830152614d3281614cf6565b905091905056fea2646970667358221220a3dcaf07016410c57e87d5418ddbc490e7714821093af4fbe31cd2a4492c3ba264736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000062d3cf90000000000000000000000000000000000000000000000000000000000000000f53574545442047412d4d45204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553574545440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d505a364b573565584e7878524775686f72646f65585465345a3256706d4b624879366e7371324a75584d6a662f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d546b6656354158544b4a615953467863766d4661584d506450734e63356151626d7a7969436e476a6e6b394b2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806370a082311161014f578063b88d4fde116100c1578063d5abeb011161007a578063d5abeb0114610992578063da3ef23f146109bd578063e985e9c5146109e6578063edec5f2714610a23578063f2c4ce1e14610a4c578063f2fde38b14610a755761027d565b8063b88d4fde14610870578063ba4e5c4914610899578063ba7d2c76146108d6578063c668286214610901578063c87b56dd1461092c578063d0eb26b0146109695761027d565b806395d89b411161011357806395d89b411461077f5780639c70b512146107aa578063a0712d68146107d5578063a22cb465146107f1578063a75052cb1461081a578063b187bd26146108455761027d565b806370a08231146106ac578063715018a6146106e95780637f00c7a614610700578063872bdcdb146107295780638da5cb5b146107545761027d565b80632f745c59116101f357806344a0d68a116101ac57806344a0d68a1461058c57806349a5980a146105b55780634f6ccce7146105de57806354214f691461061b57806355f804b3146106465780636352211e1461066f5761027d565b80632f745c59146104795780633af32abf146104b65780633c952764146104f35780633ccfd60b1461051c57806342842e0e14610526578063438b63001461054f5761027d565b806313faede61161024557806313faede61461037b57806318160ddd146103a657806319188c35146103d1578063239c70ae146103fc57806323b872dd14610427578063240976bf146104505761027d565b806301ffc9a71461028257806306fdde03146102bf578063081812fc146102ea578063081c8c4414610327578063095ea7b314610352575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613578565b610a9e565b6040516102b691906135c0565b60405180910390f35b3480156102cb57600080fd5b506102d4610b18565b6040516102e19190613674565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c91906136cc565b610baa565b60405161031e919061373a565b60405180910390f35b34801561033357600080fd5b5061033c610c2f565b6040516103499190613674565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190613781565b610cbd565b005b34801561038757600080fd5b50610390610dd5565b60405161039d91906137d0565b60405180910390f35b3480156103b257600080fd5b506103bb610ddb565b6040516103c891906137d0565b60405180910390f35b3480156103dd57600080fd5b506103e6610de8565b6040516103f391906137d0565b60405180910390f35b34801561040857600080fd5b50610411610dee565b60405161041e91906137d0565b60405180910390f35b34801561043357600080fd5b5061044e600480360381019061044991906137eb565b610df4565b005b34801561045c57600080fd5b506104776004803603810190610472919061386a565b610e54565b005b34801561048557600080fd5b506104a0600480360381019061049b9190613781565b610eed565b6040516104ad91906137d0565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190613897565b610f92565b6040516104ea91906135c0565b60405180910390f35b3480156104ff57600080fd5b5061051a6004803603810190610515919061386a565b611041565b005b6105246110da565b005b34801561053257600080fd5b5061054d600480360381019061054891906137eb565b6111cf565b005b34801561055b57600080fd5b5061057660048036038101906105719190613897565b6111ef565b6040516105839190613982565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906136cc565b61129d565b005b3480156105c157600080fd5b506105dc60048036038101906105d7919061386a565b611323565b005b3480156105ea57600080fd5b50610605600480360381019061060091906136cc565b6113bc565b60405161061291906137d0565b60405180910390f35b34801561062757600080fd5b5061063061142d565b60405161063d91906135c0565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613ad9565b611440565b005b34801561067b57600080fd5b50610696600480360381019061069191906136cc565b6114d6565b6040516106a3919061373a565b60405180910390f35b3480156106b857600080fd5b506106d360048036038101906106ce9190613897565b611588565b6040516106e091906137d0565b60405180910390f35b3480156106f557600080fd5b506106fe611640565b005b34801561070c57600080fd5b50610727600480360381019061072291906136cc565b6116c8565b005b34801561073557600080fd5b5061073e61174e565b60405161074b91906137d0565b60405180910390f35b34801561076057600080fd5b50610769611754565b604051610776919061373a565b60405180910390f35b34801561078b57600080fd5b5061079461177e565b6040516107a19190613674565b60405180910390f35b3480156107b657600080fd5b506107bf611810565b6040516107cc91906135c0565b60405180910390f35b6107ef60048036038101906107ea91906136cc565b611823565b005b3480156107fd57600080fd5b5061081860048036038101906108139190613b22565b611a77565b005b34801561082657600080fd5b5061082f611bf8565b60405161083c91906137d0565b60405180910390f35b34801561085157600080fd5b5061085a611c3b565b60405161086791906135c0565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613c03565b611c4e565b005b3480156108a557600080fd5b506108c060048036038101906108bb91906136cc565b611cb0565b6040516108cd919061373a565b60405180910390f35b3480156108e257600080fd5b506108eb611cef565b6040516108f891906137d0565b60405180910390f35b34801561090d57600080fd5b50610916611cf5565b6040516109239190613674565b60405180910390f35b34801561093857600080fd5b50610953600480360381019061094e91906136cc565b611d83565b6040516109609190613674565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b91906136cc565b611edc565b005b34801561099e57600080fd5b506109a7611f62565b6040516109b491906137d0565b60405180910390f35b3480156109c957600080fd5b506109e460048036038101906109df9190613ad9565b611f68565b005b3480156109f257600080fd5b50610a0d6004803603810190610a089190613c86565b611ffe565b604051610a1a91906135c0565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190613d26565b612092565b005b348015610a5857600080fd5b50610a736004803603810190610a6e9190613ad9565b612132565b005b348015610a8157600080fd5b50610a9c6004803603810190610a979190613897565b6121c8565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b115750610b10826122c0565b5b9050919050565b606060008054610b2790613da2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5390613da2565b8015610ba05780601f10610b7557610100808354040283529160200191610ba0565b820191906000526020600020905b815481529060010190602001808311610b8357829003601f168201915b5050505050905090565b6000610bb5826123a2565b610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90613e46565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610c3c90613da2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6890613da2565b8015610cb55780601f10610c8a57610100808354040283529160200191610cb5565b820191906000526020600020905b815481529060010190602001808311610c9857829003601f168201915b505050505081565b6000610cc8826114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3090613ed8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d5861240e565b73ffffffffffffffffffffffffffffffffffffffff161480610d875750610d8681610d8161240e565b611ffe565b5b610dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbd90613f6a565b60405180910390fd5b610dd08383612416565b505050565b600e5481565b6000600880549050905090565b60115481565b60105481565b610e05610dff61240e565b826124cf565b610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90613ffc565b60405180910390fd5b610e4f8383836125ad565b505050565b610e5c61240e565b73ffffffffffffffffffffffffffffffffffffffff16610e7a611754565b73ffffffffffffffffffffffffffffffffffffffff1614610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec790614068565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b6000610ef883611588565b8210610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f30906140fa565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601580549050811015611036578273ffffffffffffffffffffffffffffffffffffffff1660158281548110610fd257610fd161411a565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561102357600191505061103c565b808061102e90614178565b915050610f9a565b50600090505b919050565b61104961240e565b73ffffffffffffffffffffffffffffffffffffffff16611067611754565b73ffffffffffffffffffffffffffffffffffffffff16146110bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b490614068565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b6110e261240e565b73ffffffffffffffffffffffffffffffffffffffff16611100611754565b73ffffffffffffffffffffffffffffffffffffffff1614611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90614068565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161117c906141f2565b60006040518083038185875af1925050503d80600081146111b9576040519150601f19603f3d011682016040523d82523d6000602084013e6111be565b606091505b50509050806111cc57600080fd5b50565b6111ea83838360405180602001604052806000815250611c4e565b505050565b606060006111fc83611588565b905060008167ffffffffffffffff81111561121a576112196139ae565b5b6040519080825280602002602001820160405280156112485781602001602082028036833780820191505090505b50905060005b82811015611292576112608582610eed565b8282815181106112735761127261411a565b5b602002602001018181525050808061128a90614178565b91505061124e565b508092505050919050565b6112a561240e565b73ffffffffffffffffffffffffffffffffffffffff166112c3611754565b73ffffffffffffffffffffffffffffffffffffffff1614611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090614068565b60405180910390fd5b80600e8190555050565b61132b61240e565b73ffffffffffffffffffffffffffffffffffffffff16611349611754565b73ffffffffffffffffffffffffffffffffffffffff161461139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690614068565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b60006113c6610ddb565b8210611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90614279565b60405180910390fd5b6008828154811061141b5761141a61411a565b5b90600052602060002001549050919050565b601460019054906101000a900460ff1681565b61144861240e565b73ffffffffffffffffffffffffffffffffffffffff16611466611754565b73ffffffffffffffffffffffffffffffffffffffff16146114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390614068565b60405180910390fd5b80600b90805190602001906114d29291906133a8565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561157f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115769061430b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f09061439d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61164861240e565b73ffffffffffffffffffffffffffffffffffffffff16611666611754565b73ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390614068565b60405180910390fd5b6116c66000612809565b565b6116d061240e565b73ffffffffffffffffffffffffffffffffffffffff166116ee611754565b73ffffffffffffffffffffffffffffffffffffffff1614611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b90614068565b60405180910390fd5b8060108190555050565b60125481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461178d90613da2565b80601f01602080910402602001604051908101604052809291908181526020018280546117b990613da2565b80156118065780601f106117db57610100808354040283529160200191611806565b820191906000526020600020905b8154815290600101906020018083116117e957829003601f168201915b5050505050905090565b601460029054906101000a900460ff1681565b600a60149054906101000a900460ff1615611873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186a90614409565b60405180910390fd5b6001600a60146101000a81548160ff02191690831515021790555060125460115461189e9190614429565b4210156118e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d7906144cb565b60405180910390fd5b601460009054906101000a900460ff16156118fa57600080fd5b6000611904610ddb565b90506000821161191357600080fd5b60105482111561192257600080fd5b600f5482826119319190614429565b111561193c57600080fd5b611944611754565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a125760011515601460029054906101000a900460ff16151514156119f75761199b33610f92565b6119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d190614537565b60405180910390fd5b60006119e533611588565b905060135481106119f557600080fd5b505b81600e54611a059190614557565b341015611a1157600080fd5b5b6000600190505b828111611a5757601054831115611a2f57600080fd5b611a44338284611a3f9190614429565b6128cf565b8080611a4f90614178565b915050611a19565b50506000600a60146101000a81548160ff02191690831515021790555050565b611a7f61240e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae4906145fd565b60405180910390fd5b8060056000611afa61240e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ba761240e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bec91906135c0565b60405180910390a35050565b6000601254601154611c0a9190614429565b421015611c335742601254601154611c229190614429565b611c2c919061461d565b9050611c38565b600090505b90565b601460009054906101000a900460ff1681565b611c5f611c5961240e565b836124cf565b611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9590613ffc565b60405180910390fd5b611caa848484846128ed565b50505050565b60158181548110611cc057600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b600c8054611d0290613da2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2e90613da2565b8015611d7b5780601f10611d5057610100808354040283529160200191611d7b565b820191906000526020600020905b815481529060010190602001808311611d5e57829003601f168201915b505050505081565b6060611d8e826123a2565b611dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc4906146c3565b60405180910390fd5b60001515601460019054906101000a900460ff1615151415611e7b57600d8054611df690613da2565b80601f0160208091040260200160405190810160405280929190818152602001828054611e2290613da2565b8015611e6f5780601f10611e4457610100808354040283529160200191611e6f565b820191906000526020600020905b815481529060010190602001808311611e5257829003601f168201915b50505050509050611ed7565b6000611e85612949565b90506000815111611ea55760405180602001604052806000815250611ed3565b80611eaf846129db565b600c604051602001611ec3939291906147b3565b6040516020818303038152906040525b9150505b919050565b611ee461240e565b73ffffffffffffffffffffffffffffffffffffffff16611f02611754565b73ffffffffffffffffffffffffffffffffffffffff1614611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f90614068565b60405180910390fd5b8060138190555050565b600f5481565b611f7061240e565b73ffffffffffffffffffffffffffffffffffffffff16611f8e611754565b73ffffffffffffffffffffffffffffffffffffffff1614611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90614068565b60405180910390fd5b80600c9080519060200190611ffa9291906133a8565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61209a61240e565b73ffffffffffffffffffffffffffffffffffffffff166120b8611754565b73ffffffffffffffffffffffffffffffffffffffff161461210e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210590614068565b60405180910390fd5b6015600061211c919061342e565b81816015919061212d92919061344f565b505050565b61213a61240e565b73ffffffffffffffffffffffffffffffffffffffff16612158611754565b73ffffffffffffffffffffffffffffffffffffffff16146121ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a590614068565b60405180910390fd5b80600d90805190602001906121c49291906133a8565b5050565b6121d061240e565b73ffffffffffffffffffffffffffffffffffffffff166121ee611754565b73ffffffffffffffffffffffffffffffffffffffff1614612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b90614068565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ab90614856565b60405180910390fd5b6122bd81612809565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061238b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061239b575061239a82612b3c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612489836114d6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124da826123a2565b612519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612510906148e8565b60405180910390fd5b6000612524836114d6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061259357508373ffffffffffffffffffffffffffffffffffffffff1661257b84610baa565b73ffffffffffffffffffffffffffffffffffffffff16145b806125a457506125a38185611ffe565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125cd826114d6565b73ffffffffffffffffffffffffffffffffffffffff1614612623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261a9061497a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268a90614a0c565b60405180910390fd5b61269e838383612ba6565b6126a9600082612416565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126f9919061461d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127509190614429565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128e9828260405180602001604052806000815250612cba565b5050565b6128f88484846125ad565b61290484848484612d15565b612943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293a90614a9e565b60405180910390fd5b50505050565b6060600b805461295890613da2565b80601f016020809104026020016040519081016040528092919081815260200182805461298490613da2565b80156129d15780601f106129a6576101008083540402835291602001916129d1565b820191906000526020600020905b8154815290600101906020018083116129b457829003601f168201915b5050505050905090565b60606000821415612a23576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b37565b600082905060005b60008214612a55578080612a3e90614178565b915050600a82612a4e9190614aed565b9150612a2b565b60008167ffffffffffffffff811115612a7157612a706139ae565b5b6040519080825280601f01601f191660200182016040528015612aa35781602001600182028036833780820191505090505b5090505b60008514612b3057600182612abc919061461d565b9150600a85612acb9190614b1e565b6030612ad79190614429565b60f81b818381518110612aed57612aec61411a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b299190614aed565b9450612aa7565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612bb1838383612eac565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bf457612bef81612eb1565b612c33565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612c3257612c318382612efa565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c7657612c7181613067565b612cb5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612cb457612cb38282613138565b5b5b505050565b612cc483836131b7565b612cd16000848484612d15565b612d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0790614a9e565b60405180910390fd5b505050565b6000612d368473ffffffffffffffffffffffffffffffffffffffff16613385565b15612e9f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d5f61240e565b8786866040518563ffffffff1660e01b8152600401612d819493929190614ba4565b602060405180830381600087803b158015612d9b57600080fd5b505af1925050508015612dcc57506040513d601f19601f82011682018060405250810190612dc99190614c05565b60015b612e4f573d8060008114612dfc576040519150601f19603f3d011682016040523d82523d6000602084013e612e01565b606091505b50600081511415612e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3e90614a9e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ea4565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f0784611588565b612f11919061461d565b9050600060076000848152602001908152602001600020549050818114612ff6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061307b919061461d565b90506000600960008481526020019081526020016000205490506000600883815481106130ab576130aa61411a565b5b9060005260206000200154905080600883815481106130cd576130cc61411a565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061311c5761311b614c32565b5b6001900381819060005260206000200160009055905550505050565b600061314383611588565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321e90614cad565b60405180910390fd5b613230816123a2565b15613270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326790614d19565b60405180910390fd5b61327c60008383612ba6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132cc9190614429565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133b490613da2565b90600052602060002090601f0160209004810192826133d6576000855561341d565b82601f106133ef57805160ff191683800117855561341d565b8280016001018555821561341d579182015b8281111561341c578251825591602001919060010190613401565b5b50905061342a91906134ef565b5090565b508054600082559060005260206000209081019061344c91906134ef565b50565b8280548282559060005260206000209081019282156134de579160200282015b828111156134dd57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061346f565b5b5090506134eb91906134ef565b5090565b5b808211156135085760008160009055506001016134f0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61355581613520565b811461356057600080fd5b50565b6000813590506135728161354c565b92915050565b60006020828403121561358e5761358d613516565b5b600061359c84828501613563565b91505092915050565b60008115159050919050565b6135ba816135a5565b82525050565b60006020820190506135d560008301846135b1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156136155780820151818401526020810190506135fa565b83811115613624576000848401525b50505050565b6000601f19601f8301169050919050565b6000613646826135db565b61365081856135e6565b93506136608185602086016135f7565b6136698161362a565b840191505092915050565b6000602082019050818103600083015261368e818461363b565b905092915050565b6000819050919050565b6136a981613696565b81146136b457600080fd5b50565b6000813590506136c6816136a0565b92915050565b6000602082840312156136e2576136e1613516565b5b60006136f0848285016136b7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613724826136f9565b9050919050565b61373481613719565b82525050565b600060208201905061374f600083018461372b565b92915050565b61375e81613719565b811461376957600080fd5b50565b60008135905061377b81613755565b92915050565b6000806040838503121561379857613797613516565b5b60006137a68582860161376c565b92505060206137b7858286016136b7565b9150509250929050565b6137ca81613696565b82525050565b60006020820190506137e560008301846137c1565b92915050565b60008060006060848603121561380457613803613516565b5b60006138128682870161376c565b93505060206138238682870161376c565b9250506040613834868287016136b7565b9150509250925092565b613847816135a5565b811461385257600080fd5b50565b6000813590506138648161383e565b92915050565b6000602082840312156138805761387f613516565b5b600061388e84828501613855565b91505092915050565b6000602082840312156138ad576138ac613516565b5b60006138bb8482850161376c565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6138f981613696565b82525050565b600061390b83836138f0565b60208301905092915050565b6000602082019050919050565b600061392f826138c4565b61393981856138cf565b9350613944836138e0565b8060005b8381101561397557815161395c88826138ff565b975061396783613917565b925050600181019050613948565b5085935050505092915050565b6000602082019050818103600083015261399c8184613924565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139e68261362a565b810181811067ffffffffffffffff82111715613a0557613a046139ae565b5b80604052505050565b6000613a1861350c565b9050613a2482826139dd565b919050565b600067ffffffffffffffff821115613a4457613a436139ae565b5b613a4d8261362a565b9050602081019050919050565b82818337600083830152505050565b6000613a7c613a7784613a29565b613a0e565b905082815260208101848484011115613a9857613a976139a9565b5b613aa3848285613a5a565b509392505050565b600082601f830112613ac057613abf6139a4565b5b8135613ad0848260208601613a69565b91505092915050565b600060208284031215613aef57613aee613516565b5b600082013567ffffffffffffffff811115613b0d57613b0c61351b565b5b613b1984828501613aab565b91505092915050565b60008060408385031215613b3957613b38613516565b5b6000613b478582860161376c565b9250506020613b5885828601613855565b9150509250929050565b600067ffffffffffffffff821115613b7d57613b7c6139ae565b5b613b868261362a565b9050602081019050919050565b6000613ba6613ba184613b62565b613a0e565b905082815260208101848484011115613bc257613bc16139a9565b5b613bcd848285613a5a565b509392505050565b600082601f830112613bea57613be96139a4565b5b8135613bfa848260208601613b93565b91505092915050565b60008060008060808587031215613c1d57613c1c613516565b5b6000613c2b8782880161376c565b9450506020613c3c8782880161376c565b9350506040613c4d878288016136b7565b925050606085013567ffffffffffffffff811115613c6e57613c6d61351b565b5b613c7a87828801613bd5565b91505092959194509250565b60008060408385031215613c9d57613c9c613516565b5b6000613cab8582860161376c565b9250506020613cbc8582860161376c565b9150509250929050565b600080fd5b600080fd5b60008083601f840112613ce657613ce56139a4565b5b8235905067ffffffffffffffff811115613d0357613d02613cc6565b5b602083019150836020820283011115613d1f57613d1e613ccb565b5b9250929050565b60008060208385031215613d3d57613d3c613516565b5b600083013567ffffffffffffffff811115613d5b57613d5a61351b565b5b613d6785828601613cd0565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613dba57607f821691505b60208210811415613dce57613dcd613d73565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613e30602c836135e6565b9150613e3b82613dd4565b604082019050919050565b60006020820190508181036000830152613e5f81613e23565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ec26021836135e6565b9150613ecd82613e66565b604082019050919050565b60006020820190508181036000830152613ef181613eb5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f546038836135e6565b9150613f5f82613ef8565b604082019050919050565b60006020820190508181036000830152613f8381613f47565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613fe66031836135e6565b9150613ff182613f8a565b604082019050919050565b6000602082019050818103600083015261401581613fd9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140526020836135e6565b915061405d8261401c565b602082019050919050565b6000602082019050818103600083015261408181614045565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b60006140e4602b836135e6565b91506140ef82614088565b604082019050919050565b60006020820190508181036000830152614113816140d7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061418382613696565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141b6576141b5614149565b5b600182019050919050565b600081905092915050565b50565b60006141dc6000836141c1565b91506141e7826141cc565b600082019050919050565b60006141fd826141cf565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614263602c836135e6565b915061426e82614207565b604082019050919050565b6000602082019050818103600083015261429281614256565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006142f56029836135e6565b915061430082614299565b604082019050919050565b60006020820190508181036000830152614324816142e8565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614387602a836135e6565b91506143928261432b565b604082019050919050565b600060208201905081810360008301526143b68161437a565b9050919050565b7f4e4f204e4f210000000000000000000000000000000000000000000000000000600082015250565b60006143f36006836135e6565b91506143fe826143bd565b602082019050919050565b60006020820190508181036000830152614422816143e6565b9050919050565b600061443482613696565b915061443f83613696565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561447457614473614149565b5b828201905092915050565b7f4d696e74696e67206e6f7720616c6c6f77656420796574000000000000000000600082015250565b60006144b56017836135e6565b91506144c08261447f565b602082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b60006145216017836135e6565b915061452c826144eb565b602082019050919050565b6000602082019050818103600083015261455081614514565b9050919050565b600061456282613696565b915061456d83613696565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145a6576145a5614149565b5b828202905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006145e76019836135e6565b91506145f2826145b1565b602082019050919050565b60006020820190508181036000830152614616816145da565b9050919050565b600061462882613696565b915061463383613696565b92508282101561464657614645614149565b5b828203905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006146ad602f836135e6565b91506146b882614651565b604082019050919050565b600060208201905081810360008301526146dc816146a0565b9050919050565b600081905092915050565b60006146f9826135db565b61470381856146e3565b93506147138185602086016135f7565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461474181613da2565b61474b81866146e3565b945060018216600081146147665760018114614777576147aa565b60ff198316865281860193506147aa565b6147808561471f565b60005b838110156147a257815481890152600182019150602081019050614783565b838801955050505b50505092915050565b60006147bf82866146ee565b91506147cb82856146ee565b91506147d78284614734565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006148406026836135e6565b915061484b826147e4565b604082019050919050565b6000602082019050818103600083015261486f81614833565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006148d2602c836135e6565b91506148dd82614876565b604082019050919050565b60006020820190508181036000830152614901816148c5565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006149646029836135e6565b915061496f82614908565b604082019050919050565b6000602082019050818103600083015261499381614957565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149f66024836135e6565b9150614a018261499a565b604082019050919050565b60006020820190508181036000830152614a25816149e9565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614a886032836135e6565b9150614a9382614a2c565b604082019050919050565b60006020820190508181036000830152614ab781614a7b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614af882613696565b9150614b0383613696565b925082614b1357614b12614abe565b5b828204905092915050565b6000614b2982613696565b9150614b3483613696565b925082614b4457614b43614abe565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b6000614b7682614b4f565b614b808185614b5a565b9350614b908185602086016135f7565b614b998161362a565b840191505092915050565b6000608082019050614bb9600083018761372b565b614bc6602083018661372b565b614bd360408301856137c1565b8181036060830152614be58184614b6b565b905095945050505050565b600081519050614bff8161354c565b92915050565b600060208284031215614c1b57614c1a613516565b5b6000614c2984828501614bf0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614c976020836135e6565b9150614ca282614c61565b602082019050919050565b60006020820190508181036000830152614cc681614c8a565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614d03601c836135e6565b9150614d0e82614ccd565b602082019050919050565b60006020820190508181036000830152614d3281614cf6565b905091905056fea2646970667358221220a3dcaf07016410c57e87d5418ddbc490e7714821093af4fbe31cd2a4492c3ba264736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000062d3cf90000000000000000000000000000000000000000000000000000000000000000f53574545442047412d4d45204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000553574545440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d505a364b573565584e7878524775686f72646f65585465345a3256706d4b624879366e7371324a75584d6a662f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d546b6656354158544b4a615953467863766d4661584d506450734e63356151626d7a7969436e476a6e6b394b2f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): SWEED GA-ME NFT
Arg [1] : _symbol (string): SWEED
Arg [2] : _initBaseURI (string): ipfs://QmPZ6KW5eXNxxRGuhordoeXTe4Z2VpmKbHy6nsq2JuXMjf/
Arg [3] : _initNotRevealedUri (string): ipfs://QmTkfV5AXTKJaYSFxcvmFaXMPdPsNc5aQbmzyiCnGjnk9K/hidden.json
Arg [4] : _revealTime (uint256): 1658048400

-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000062d3cf90
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 53574545442047412d4d45204e46540000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 5357454544000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d505a364b573565584e7878524775686f72646f65585465
Arg [11] : 345a3256706d4b624879366e7371324a75584d6a662f00000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [13] : 697066733a2f2f516d546b6656354158544b4a615953467863766d4661584d50
Arg [14] : 6450734e63356151626d7a7969436e476a6e6b394b2f68696464656e2e6a736f
Arg [15] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48539:5871:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42100:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29264:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30957:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48883:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30480:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48918:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42903:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49113:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49073:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32016:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53851:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42484:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51297:272;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53946:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54215:192;;;:::i;:::-;;32463:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51577:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53222:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53001:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43093:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49270:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53580:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28871:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28514:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8517:103;;;;;;;;;;;;;:::i;:::-;;53316:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49147:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7866:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29433:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49307:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50022:1267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31337:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52710:265;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49235:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32719:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49349:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49190:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48839:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51975:727;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53101:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49035:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53692:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31735:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54055:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53446:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8775:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42100:300;42247:4;42304:35;42289:50;;;:11;:50;;;;:103;;;;42356:36;42380:11;42356:23;:36::i;:::-;42289:103;42269:123;;42100:300;;;:::o;29264:100::-;29318:13;29351:5;29344:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29264:100;:::o;30957:308::-;31078:7;31125:16;31133:7;31125;:16::i;:::-;31103:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31233:15;:24;31249:7;31233:24;;;;;;;;;;;;;;;;;;;;;31226:31;;30957:308;;;:::o;48883:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30480:411::-;30561:13;30577:23;30592:7;30577:14;:23::i;:::-;30561:39;;30625:5;30619:11;;:2;:11;;;;30611:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;30719:5;30703:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30728:37;30745:5;30752:12;:10;:12::i;:::-;30728:16;:37::i;:::-;30703:62;30681:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;30862:21;30871:2;30875:7;30862:8;:21::i;:::-;30550:341;30480:411;;:::o;48918:29::-;;;;:::o;42903:113::-;42964:7;42991:10;:17;;;;42984:24;;42903:113;:::o;49113:27::-;;;;:::o;49073:33::-;;;;:::o;32016:376::-;32225:41;32244:12;:10;:12::i;:::-;32258:7;32225:18;:41::i;:::-;32203:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;32356:28;32366:4;32372:2;32376:7;32356:9;:28::i;:::-;32016:376;;;:::o;53851:87::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53924:6:::1;53913:8;;:17;;;;;;;;;;;;;;;;;;53851:87:::0;:::o;42484:343::-;42626:7;42681:23;42698:5;42681:16;:23::i;:::-;42673:5;:31;42651:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;42793:12;:19;42806:5;42793:19;;;;;;;;;;;;;;;:26;42813:5;42793:26;;;;;;;;;;;;42786:33;;42484:343;;;;:::o;51297:272::-;51356:4;51377:9;51389:1;51377:13;;51373:166;51396:20;:27;;;;51392:1;:31;51373:166;;;51475:5;51448:32;;:20;51469:1;51448:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;51445:83;;;51508:4;51501:11;;;;;51445:83;51425:3;;;;;:::i;:::-;;;;51373:166;;;;51556:5;51549:12;;51297:272;;;;:::o;53946:101::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54033:6:::1;54015:15;;:24;;;;;;;;;;;;;;;;;;53946:101:::0;:::o;54215:192::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54272:12:::1;54298:10;54290:24;;54336:21;54290:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54271:101;;;54391:7;54383:16;;;::::0;::::1;;54260:147;54215:192::o:0;32463:185::-;32601:39;32618:4;32624:2;32628:7;32601:39;;;;;;;;;;;;:16;:39::i;:::-;32463:185;;;:::o;51577:390::-;51664:16;51698:23;51724:17;51734:6;51724:9;:17::i;:::-;51698:43;;51752:25;51794:15;51780:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51752:58;;51826:9;51821:113;51841:15;51837:1;:19;51821:113;;;51892:30;51912:6;51920:1;51892:19;:30::i;:::-;51878:8;51887:1;51878:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;51858:3;;;;;:::i;:::-;;;;51821:113;;;;51951:8;51944:15;;;;51577:390;;;:::o;53222:86::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53292:8:::1;53285:4;:15;;;;53222:86:::0;:::o;53001:91::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53078:6:::1;53065:10;;:19;;;;;;;;;;;;;;;;;;53001:91:::0;:::o;43093:320::-;43213:7;43268:30;:28;:30::i;:::-;43260:5;:38;43238:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;43388:10;43399:5;43388:17;;;;;;;;:::i;:::-;;;;;;;;;;43381:24;;43093:320;;;:::o;49270:30::-;;;;;;;;;;;;;:::o;53580:104::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53665:11:::1;53655:7;:21;;;;;;;;;;;;:::i;:::-;;53580:104:::0;:::o;28871:326::-;28988:7;29013:13;29029:7;:16;29037:7;29029:16;;;;;;;;;;;;;;;;;;;;;29013:32;;29095:1;29078:19;;:5;:19;;;;29056:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29184:5;29177:12;;;28871:326;;;:::o;28514:295::-;28631:7;28695:1;28678:19;;:5;:19;;;;28656:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28785:9;:16;28795:5;28785:16;;;;;;;;;;;;;;;;28778:23;;28514:295;;;:::o;8517:103::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8582:30:::1;8609:1;8582:18;:30::i;:::-;8517:103::o:0;53316:122::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53413:17:::1;53397:13;:33;;;;53316:122:::0;:::o;49147:36::-;;;;:::o;7866:87::-;7912:7;7939:6;;;;;;;;;;;7932:13;;7866:87;:::o;29433:104::-;29489:13;29522:7;29515:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29433:104;:::o;49307:35::-;;;;;;;;;;;;;:::o;50022:1267::-;48676:6;;;;;;;;;;;48675:7;48667:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;48717:4;48708:6;;:13;;;;;;;;;;;;;;;;;;50151:17:::1;;50136:12;;:32;;;;:::i;:::-;50117:15;:51;;50095:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;50239:8;;;;;;;;;;;50238:9;50230:18;;;::::0;::::1;;50259:14;50276:13;:11;:13::i;:::-;50259:30;;50322:1;50308:11;:15;50300:24;;;::::0;::::1;;50358:13;;50343:11;:28;;50335:37;;;::::0;::::1;;50415:9;;50400:11;50391:6;:20;;;;:::i;:::-;:33;;50383:42;;;::::0;::::1;;50456:7;:5;:7::i;:::-;50442:21;;:10;:21;;;50438:362;;50502:4;50483:23;;:15;;;;;;;;;;;:23;;;50480:254;;;50535:25;50549:10;50535:13;:25::i;:::-;50527:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;50607:23;50633:21;50643:10;50633:9;:21::i;:::-;50607:47;;50699:18;;50681:15;:36;50673:45;;;::::0;::::1;;50508:226;50480:254;50776:11;50769:4;;:18;;;;:::i;:::-;50756:9;:31;;50748:40;;;::::0;::::1;;50438:362;51135:9;51147:1;51135:13;;51130:152;51155:11;51150:1;:16;51130:152;;51208:13;;51193:11;:28;;51185:37;;;::::0;::::1;;51237:33;51247:10;51268:1;51259:6;:10;;;;:::i;:::-;51237:9;:33::i;:::-;51168:3;;;;;:::i;:::-;;;;51130:152;;;;50084:1205;48761:5:::0;48752:6;;:14;;;;;;;;;;;;;;;;;;50022:1267;:::o;31337:327::-;31484:12;:10;:12::i;:::-;31472:24;;:8;:24;;;;31464:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31584:8;31539:18;:32;31558:12;:10;:12::i;:::-;31539:32;;;;;;;;;;;;;;;:42;31572:8;31539:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31637:8;31608:48;;31623:12;:10;:12::i;:::-;31608:48;;;31647:8;31608:48;;;;;;:::i;:::-;;;;;;;;31337:327;;:::o;52710:265::-;52765:7;52822:17;;52807:12;;:32;;;;:::i;:::-;52789:15;:50;52785:183;;;52900:15;52879:17;;52864:12;;:32;;;;:::i;:::-;52863:52;;;;:::i;:::-;52856:59;;;;52785:183;52955:1;52948:8;;52710:265;;:::o;49235:28::-;;;;;;;;;;;;;:::o;32719:365::-;32908:41;32927:12;:10;:12::i;:::-;32941:7;32908:18;:41::i;:::-;32886:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;33037:39;33051:4;33057:2;33061:7;33070:5;33037:13;:39::i;:::-;32719:365;;;;:::o;49349:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49190:38::-;;;;:::o;48839:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51975:727::-;52093:13;52146:16;52154:7;52146;:16::i;:::-;52124:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52268:5;52254:19;;:10;;;;;;;;;;;:19;;;52250:73;;;52297:14;52290:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52250:73;52335:28;52366:10;:8;:10::i;:::-;52335:41;;52438:1;52413:14;52407:28;:32;:287;;;;;;;;;;;;;;;;;52531:14;52572:18;:7;:16;:18::i;:::-;52617:13;52488:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52407:287;52387:307;;;51975:727;;;;:::o;53101:110::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53197:6:::1;53176:18;:27;;;;53101:110:::0;:::o;49035:31::-;;;;:::o;53692:151::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53818:17:::1;53802:13;:33;;;;;;;;;;;;:::i;:::-;;53692:151:::0;:::o;31735:214::-;31877:4;31906:18;:25;31925:5;31906:25;;;;;;;;;;;;;;;:35;31932:8;31906:35;;;;;;;;;;;;;;;;;;;;;;;;;31899:42;;31735:214;;;;:::o;54055:152::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54140:20:::1;;54133:27;;;;:::i;:::-;54193:6;;54170:20;:29;;;;;;;:::i;:::-;;54055:152:::0;;:::o;53446:126::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53549:15:::1;53532:14;:32;;;;;;;;;;;;:::i;:::-;;53446:126:::0;:::o;8775:201::-;8097:12;:10;:12::i;:::-;8086:23;;:7;:5;:7::i;:::-;:23;;;8078:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8884:1:::1;8864:22;;:8;:22;;;;8856:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8940:28;8959:8;8940:18;:28::i;:::-;8775:201:::0;:::o;28095:355::-;28242:4;28299:25;28284:40;;;:11;:40;;;;:105;;;;28356:33;28341:48;;;:11;:48;;;;28284:105;:158;;;;28406:36;28430:11;28406:23;:36::i;:::-;28284:158;28264:178;;28095:355;;;:::o;34631:127::-;34696:4;34748:1;34720:30;;:7;:16;34728:7;34720:16;;;;;;;;;;;;;;;;;;;;;:30;;;;34713:37;;34631:127;;;:::o;6584:98::-;6637:7;6664:10;6657:17;;6584:98;:::o;38754:174::-;38856:2;38829:15;:24;38845:7;38829:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;38912:7;38908:2;38874:46;;38883:23;38898:7;38883:14;:23::i;:::-;38874:46;;;;;;;;;;;;38754:174;;:::o;34925:452::-;35054:4;35098:16;35106:7;35098;:16::i;:::-;35076:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;35197:13;35213:23;35228:7;35213:14;:23::i;:::-;35197:39;;35266:5;35255:16;;:7;:16;;;:64;;;;35312:7;35288:31;;:20;35300:7;35288:11;:20::i;:::-;:31;;;35255:64;:113;;;;35336:32;35353:5;35360:7;35336:16;:32::i;:::-;35255:113;35247:122;;;34925:452;;;;:::o;38021:615::-;38194:4;38167:31;;:23;38182:7;38167:14;:23::i;:::-;:31;;;38145:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;38300:1;38286:16;;:2;:16;;;;38278:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;38356:39;38377:4;38383:2;38387:7;38356:20;:39::i;:::-;38460:29;38477:1;38481:7;38460:8;:29::i;:::-;38521:1;38502:9;:15;38512:4;38502:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;38550:1;38533:9;:13;38543:2;38533:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38581:2;38562:7;:16;38570:7;38562:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38620:7;38616:2;38601:27;;38610:4;38601:27;;;;;;;;;;;;38021:615;;;:::o;9136:191::-;9210:16;9229:6;;;;;;;;;;;9210:25;;9255:8;9246:6;;:17;;;;;;;;;;;;;;;;;;9310:8;9279:40;;9300:8;9279:40;;;;;;;;;;;;9199:128;9136:191;:::o;35719:110::-;35795:26;35805:2;35809:7;35795:26;;;;;;;;;;;;:9;:26::i;:::-;35719:110;;:::o;33966:352::-;34123:28;34133:4;34139:2;34143:7;34123:9;:28::i;:::-;34184:48;34207:4;34213:2;34217:7;34226:5;34184:22;:48::i;:::-;34162:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;33966:352;;;;:::o;49891:108::-;49951:13;49984:7;49977:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49891:108;:::o;11828:723::-;11884:13;12114:1;12105:5;:10;12101:53;;;12132:10;;;;;;;;;;;;;;;;;;;;;12101:53;12164:12;12179:5;12164:20;;12195:14;12220:78;12235:1;12227:4;:9;12220:78;;12253:8;;;;;:::i;:::-;;;;12284:2;12276:10;;;;;:::i;:::-;;;12220:78;;;12308:19;12340:6;12330:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12308:39;;12358:154;12374:1;12365:5;:10;12358:154;;12402:1;12392:11;;;;;:::i;:::-;;;12469:2;12461:5;:10;;;;:::i;:::-;12448:2;:24;;;;:::i;:::-;12435:39;;12418:6;12425;12418:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12498:2;12489:11;;;;;:::i;:::-;;;12358:154;;;12536:6;12522:21;;;;;11828:723;;;;:::o;11291:157::-;11376:4;11415:25;11400:40;;;:11;:40;;;;11393:47;;11291:157;;;:::o;44026:589::-;44170:45;44197:4;44203:2;44207:7;44170:26;:45::i;:::-;44248:1;44232:18;;:4;:18;;;44228:187;;;44267:40;44299:7;44267:31;:40::i;:::-;44228:187;;;44337:2;44329:10;;:4;:10;;;44325:90;;44356:47;44389:4;44395:7;44356:32;:47::i;:::-;44325:90;44228:187;44443:1;44429:16;;:2;:16;;;44425:183;;;44462:45;44499:7;44462:36;:45::i;:::-;44425:183;;;44535:4;44529:10;;:2;:10;;;44525:83;;44556:40;44584:2;44588:7;44556:27;:40::i;:::-;44525:83;44425:183;44026:589;;;:::o;36056:321::-;36186:18;36192:2;36196:7;36186:5;:18::i;:::-;36237:54;36268:1;36272:2;36276:7;36285:5;36237:22;:54::i;:::-;36215:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;36056:321;;;:::o;39493:980::-;39648:4;39669:15;:2;:13;;;:15::i;:::-;39665:801;;;39738:2;39722:36;;;39781:12;:10;:12::i;:::-;39816:4;39843:7;39873:5;39722:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39701:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40097:1;40080:6;:13;:18;40076:320;;;40123:108;;;;;;;;;;:::i;:::-;;;;;;;;40076:320;40346:6;40340:13;40331:6;40327:2;40323:15;40316:38;39701:710;39971:41;;;39961:51;;;:6;:51;;;;39954:58;;;;;39665:801;40450:4;40443:11;;39493:980;;;;;;;:::o;41045:126::-;;;;:::o;45338:164::-;45442:10;:17;;;;45415:15;:24;45431:7;45415:24;;;;;;;;;;;:44;;;;45470:10;45486:7;45470:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45338:164;:::o;46129:1002::-;46409:22;46459:1;46434:22;46451:4;46434:16;:22::i;:::-;:26;;;;:::i;:::-;46409:51;;46471:18;46492:17;:26;46510:7;46492:26;;;;;;;;;;;;46471:47;;46639:14;46625:10;:28;46621:328;;46670:19;46692:12;:18;46705:4;46692:18;;;;;;;;;;;;;;;:34;46711:14;46692:34;;;;;;;;;;;;46670:56;;46776:11;46743:12;:18;46756:4;46743:18;;;;;;;;;;;;;;;:30;46762:10;46743:30;;;;;;;;;;;:44;;;;46893:10;46860:17;:30;46878:11;46860:30;;;;;;;;;;;:43;;;;46655:294;46621:328;47045:17;:26;47063:7;47045:26;;;;;;;;;;;47038:33;;;47089:12;:18;47102:4;47089:18;;;;;;;;;;;;;;;:34;47108:14;47089:34;;;;;;;;;;;47082:41;;;46224:907;;46129:1002;;:::o;47426:1079::-;47679:22;47724:1;47704:10;:17;;;;:21;;;;:::i;:::-;47679:46;;47736:18;47757:15;:24;47773:7;47757:24;;;;;;;;;;;;47736:45;;48108:19;48130:10;48141:14;48130:26;;;;;;;;:::i;:::-;;;;;;;;;;48108:48;;48194:11;48169:10;48180;48169:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;48305:10;48274:15;:28;48290:11;48274:28;;;;;;;;;;;:41;;;;48446:15;:24;48462:7;48446:24;;;;;;;;;;;48439:31;;;48481:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;47497:1008;;;47426:1079;:::o;44916:221::-;45001:14;45018:20;45035:2;45018:16;:20::i;:::-;45001:37;;45076:7;45049:12;:16;45062:2;45049:16;;;;;;;;;;;;;;;:24;45066:6;45049:24;;;;;;;;;;;:34;;;;45123:6;45094:17;:26;45112:7;45094:26;;;;;;;;;;;:35;;;;44990:147;44916:221;;:::o;36713:382::-;36807:1;36793:16;;:2;:16;;;;36785:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;36866:16;36874:7;36866;:16::i;:::-;36865:17;36857:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;36928:45;36957:1;36961:2;36965:7;36928:20;:45::i;:::-;37003:1;36986:9;:13;36996:2;36986:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37034:2;37015:7;:16;37023:7;37015:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37079:7;37075:2;37054:33;;37071:1;37054:33;;;;;;;;;;;;36713:382;;:::o;14828:326::-;14888:4;15145:1;15123:7;:19;;;:23;15116:30;;14828:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:116::-;5985:21;6000:5;5985:21;:::i;:::-;5978:5;5975:32;5965:60;;6021:1;6018;6011:12;5965:60;5915:116;:::o;6037:133::-;6080:5;6118:6;6105:20;6096:29;;6134:30;6158:5;6134:30;:::i;:::-;6037:133;;;;:::o;6176:323::-;6232:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:119;;;6287:79;;:::i;:::-;6249:119;6407:1;6432:50;6474:7;6465:6;6454:9;6450:22;6432:50;:::i;:::-;6422:60;;6378:114;6176:323;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:114::-;6907:6;6941:5;6935:12;6925:22;;6840:114;;;:::o;6960:184::-;7059:11;7093:6;7088:3;7081:19;7133:4;7128:3;7124:14;7109:29;;6960:184;;;;:::o;7150:132::-;7217:4;7240:3;7232:11;;7270:4;7265:3;7261:14;7253:22;;7150:132;;;:::o;7288:108::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7288:108;;:::o;7402:179::-;7471:10;7492:46;7534:3;7526:6;7492:46;:::i;:::-;7570:4;7565:3;7561:14;7547:28;;7402:179;;;;:::o;7587:113::-;7657:4;7689;7684:3;7680:14;7672:22;;7587:113;;;:::o;7736:732::-;7855:3;7884:54;7932:5;7884:54;:::i;:::-;7954:86;8033:6;8028:3;7954:86;:::i;:::-;7947:93;;8064:56;8114:5;8064:56;:::i;:::-;8143:7;8174:1;8159:284;8184:6;8181:1;8178:13;8159:284;;;8260:6;8254:13;8287:63;8346:3;8331:13;8287:63;:::i;:::-;8280:70;;8373:60;8426:6;8373:60;:::i;:::-;8363:70;;8219:224;8206:1;8203;8199:9;8194:14;;8159:284;;;8163:14;8459:3;8452:10;;7860:608;;;7736:732;;;;:::o;8474:373::-;8617:4;8655:2;8644:9;8640:18;8632:26;;8704:9;8698:4;8694:20;8690:1;8679:9;8675:17;8668:47;8732:108;8835:4;8826:6;8732:108;:::i;:::-;8724:116;;8474:373;;;;:::o;8853:117::-;8962:1;8959;8952:12;8976:117;9085:1;9082;9075:12;9099:180;9147:77;9144:1;9137:88;9244:4;9241:1;9234:15;9268:4;9265:1;9258:15;9285:281;9368:27;9390:4;9368:27;:::i;:::-;9360:6;9356:40;9498:6;9486:10;9483:22;9462:18;9450:10;9447:34;9444:62;9441:88;;;9509:18;;:::i;:::-;9441:88;9549:10;9545:2;9538:22;9328:238;9285:281;;:::o;9572:129::-;9606:6;9633:20;;:::i;:::-;9623:30;;9662:33;9690:4;9682:6;9662:33;:::i;:::-;9572:129;;;:::o;9707:308::-;9769:4;9859:18;9851:6;9848:30;9845:56;;;9881:18;;:::i;:::-;9845:56;9919:29;9941:6;9919:29;:::i;:::-;9911:37;;10003:4;9997;9993:15;9985:23;;9707:308;;;:::o;10021:154::-;10105:6;10100:3;10095;10082:30;10167:1;10158:6;10153:3;10149:16;10142:27;10021:154;;;:::o;10181:412::-;10259:5;10284:66;10300:49;10342:6;10300:49;:::i;:::-;10284:66;:::i;:::-;10275:75;;10373:6;10366:5;10359:21;10411:4;10404:5;10400:16;10449:3;10440:6;10435:3;10431:16;10428:25;10425:112;;;10456:79;;:::i;:::-;10425:112;10546:41;10580:6;10575:3;10570;10546:41;:::i;:::-;10265:328;10181:412;;;;;:::o;10613:340::-;10669:5;10718:3;10711:4;10703:6;10699:17;10695:27;10685:122;;10726:79;;:::i;:::-;10685:122;10843:6;10830:20;10868:79;10943:3;10935:6;10928:4;10920:6;10916:17;10868:79;:::i;:::-;10859:88;;10675:278;10613:340;;;;:::o;10959:509::-;11028:6;11077:2;11065:9;11056:7;11052:23;11048:32;11045:119;;;11083:79;;:::i;:::-;11045:119;11231:1;11220:9;11216:17;11203:31;11261:18;11253:6;11250:30;11247:117;;;11283:79;;:::i;:::-;11247:117;11388:63;11443:7;11434:6;11423:9;11419:22;11388:63;:::i;:::-;11378:73;;11174:287;10959:509;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:117::-;14572:1;14569;14562:12;14586:117;14695:1;14692;14685:12;14726:568;14799:8;14809:6;14859:3;14852:4;14844:6;14840:17;14836:27;14826:122;;14867:79;;:::i;:::-;14826:122;14980:6;14967:20;14957:30;;15010:18;15002:6;14999:30;14996:117;;;15032:79;;:::i;:::-;14996:117;15146:4;15138:6;15134:17;15122:29;;15200:3;15192:4;15184:6;15180:17;15170:8;15166:32;15163:41;15160:128;;;15207:79;;:::i;:::-;15160:128;14726:568;;;;;:::o;15300:559::-;15386:6;15394;15443:2;15431:9;15422:7;15418:23;15414:32;15411:119;;;15449:79;;:::i;:::-;15411:119;15597:1;15586:9;15582:17;15569:31;15627:18;15619:6;15616:30;15613:117;;;15649:79;;:::i;:::-;15613:117;15762:80;15834:7;15825:6;15814:9;15810:22;15762:80;:::i;:::-;15744:98;;;;15540:312;15300:559;;;;;:::o;15865:180::-;15913:77;15910:1;15903:88;16010:4;16007:1;16000:15;16034:4;16031:1;16024:15;16051:320;16095:6;16132:1;16126:4;16122:12;16112:22;;16179:1;16173:4;16169:12;16200:18;16190:81;;16256:4;16248:6;16244:17;16234:27;;16190:81;16318:2;16310:6;16307:14;16287:18;16284:38;16281:84;;;16337:18;;:::i;:::-;16281:84;16102:269;16051:320;;;:::o;16377:231::-;16517:34;16513:1;16505:6;16501:14;16494:58;16586:14;16581:2;16573:6;16569:15;16562:39;16377:231;:::o;16614:366::-;16756:3;16777:67;16841:2;16836:3;16777:67;:::i;:::-;16770:74;;16853:93;16942:3;16853:93;:::i;:::-;16971:2;16966:3;16962:12;16955:19;;16614:366;;;:::o;16986:419::-;17152:4;17190:2;17179:9;17175:18;17167:26;;17239:9;17233:4;17229:20;17225:1;17214:9;17210:17;17203:47;17267:131;17393:4;17267:131;:::i;:::-;17259:139;;16986:419;;;:::o;17411:220::-;17551:34;17547:1;17539:6;17535:14;17528:58;17620:3;17615:2;17607:6;17603:15;17596:28;17411:220;:::o;17637:366::-;17779:3;17800:67;17864:2;17859:3;17800:67;:::i;:::-;17793:74;;17876:93;17965:3;17876:93;:::i;:::-;17994:2;17989:3;17985:12;17978:19;;17637:366;;;:::o;18009:419::-;18175:4;18213:2;18202:9;18198:18;18190:26;;18262:9;18256:4;18252:20;18248:1;18237:9;18233:17;18226:47;18290:131;18416:4;18290:131;:::i;:::-;18282:139;;18009:419;;;:::o;18434:243::-;18574:34;18570:1;18562:6;18558:14;18551:58;18643:26;18638:2;18630:6;18626:15;18619:51;18434:243;:::o;18683:366::-;18825:3;18846:67;18910:2;18905:3;18846:67;:::i;:::-;18839:74;;18922:93;19011:3;18922:93;:::i;:::-;19040:2;19035:3;19031:12;19024:19;;18683:366;;;:::o;19055:419::-;19221:4;19259:2;19248:9;19244:18;19236:26;;19308:9;19302:4;19298:20;19294:1;19283:9;19279:17;19272:47;19336:131;19462:4;19336:131;:::i;:::-;19328:139;;19055:419;;;:::o;19480:236::-;19620:34;19616:1;19608:6;19604:14;19597:58;19689:19;19684:2;19676:6;19672:15;19665:44;19480:236;:::o;19722:366::-;19864:3;19885:67;19949:2;19944:3;19885:67;:::i;:::-;19878:74;;19961:93;20050:3;19961:93;:::i;:::-;20079:2;20074:3;20070:12;20063:19;;19722:366;;;:::o;20094:419::-;20260:4;20298:2;20287:9;20283:18;20275:26;;20347:9;20341:4;20337:20;20333:1;20322:9;20318:17;20311:47;20375:131;20501:4;20375:131;:::i;:::-;20367:139;;20094:419;;;:::o;20519:182::-;20659:34;20655:1;20647:6;20643:14;20636:58;20519:182;:::o;20707:366::-;20849:3;20870:67;20934:2;20929:3;20870:67;:::i;:::-;20863:74;;20946:93;21035:3;20946:93;:::i;:::-;21064:2;21059:3;21055:12;21048:19;;20707:366;;;:::o;21079:419::-;21245:4;21283:2;21272:9;21268:18;21260:26;;21332:9;21326:4;21322:20;21318:1;21307:9;21303:17;21296:47;21360:131;21486:4;21360:131;:::i;:::-;21352:139;;21079:419;;;:::o;21504:230::-;21644:34;21640:1;21632:6;21628:14;21621:58;21713:13;21708:2;21700:6;21696:15;21689:38;21504:230;:::o;21740:366::-;21882:3;21903:67;21967:2;21962:3;21903:67;:::i;:::-;21896:74;;21979:93;22068:3;21979:93;:::i;:::-;22097:2;22092:3;22088:12;22081:19;;21740:366;;;:::o;22112:419::-;22278:4;22316:2;22305:9;22301:18;22293:26;;22365:9;22359:4;22355:20;22351:1;22340:9;22336:17;22329:47;22393:131;22519:4;22393:131;:::i;:::-;22385:139;;22112:419;;;:::o;22537:180::-;22585:77;22582:1;22575:88;22682:4;22679:1;22672:15;22706:4;22703:1;22696:15;22723:180;22771:77;22768:1;22761:88;22868:4;22865:1;22858:15;22892:4;22889:1;22882:15;22909:233;22948:3;22971:24;22989:5;22971:24;:::i;:::-;22962:33;;23017:66;23010:5;23007:77;23004:103;;;23087:18;;:::i;:::-;23004:103;23134:1;23127:5;23123:13;23116:20;;22909:233;;;:::o;23148:147::-;23249:11;23286:3;23271:18;;23148:147;;;;:::o;23301:114::-;;:::o;23421:398::-;23580:3;23601:83;23682:1;23677:3;23601:83;:::i;:::-;23594:90;;23693:93;23782:3;23693:93;:::i;:::-;23811:1;23806:3;23802:11;23795:18;;23421:398;;;:::o;23825:379::-;24009:3;24031:147;24174:3;24031:147;:::i;:::-;24024:154;;24195:3;24188:10;;23825:379;;;:::o;24210:231::-;24350:34;24346:1;24338:6;24334:14;24327:58;24419:14;24414:2;24406:6;24402:15;24395:39;24210:231;:::o;24447:366::-;24589:3;24610:67;24674:2;24669:3;24610:67;:::i;:::-;24603:74;;24686:93;24775:3;24686:93;:::i;:::-;24804:2;24799:3;24795:12;24788:19;;24447:366;;;:::o;24819:419::-;24985:4;25023:2;25012:9;25008:18;25000:26;;25072:9;25066:4;25062:20;25058:1;25047:9;25043:17;25036:47;25100:131;25226:4;25100:131;:::i;:::-;25092:139;;24819:419;;;:::o;25244:228::-;25384:34;25380:1;25372:6;25368:14;25361:58;25453:11;25448:2;25440:6;25436:15;25429:36;25244:228;:::o;25478:366::-;25620:3;25641:67;25705:2;25700:3;25641:67;:::i;:::-;25634:74;;25717:93;25806:3;25717:93;:::i;:::-;25835:2;25830:3;25826:12;25819:19;;25478:366;;;:::o;25850:419::-;26016:4;26054:2;26043:9;26039:18;26031:26;;26103:9;26097:4;26093:20;26089:1;26078:9;26074:17;26067:47;26131:131;26257:4;26131:131;:::i;:::-;26123:139;;25850:419;;;:::o;26275:229::-;26415:34;26411:1;26403:6;26399:14;26392:58;26484:12;26479:2;26471:6;26467:15;26460:37;26275:229;:::o;26510:366::-;26652:3;26673:67;26737:2;26732:3;26673:67;:::i;:::-;26666:74;;26749:93;26838:3;26749:93;:::i;:::-;26867:2;26862:3;26858:12;26851:19;;26510:366;;;:::o;26882:419::-;27048:4;27086:2;27075:9;27071:18;27063:26;;27135:9;27129:4;27125:20;27121:1;27110:9;27106:17;27099:47;27163:131;27289:4;27163:131;:::i;:::-;27155:139;;26882:419;;;:::o;27307:156::-;27447:8;27443:1;27435:6;27431:14;27424:32;27307:156;:::o;27469:365::-;27611:3;27632:66;27696:1;27691:3;27632:66;:::i;:::-;27625:73;;27707:93;27796:3;27707:93;:::i;:::-;27825:2;27820:3;27816:12;27809:19;;27469:365;;;:::o;27840:419::-;28006:4;28044:2;28033:9;28029:18;28021:26;;28093:9;28087:4;28083:20;28079:1;28068:9;28064:17;28057:47;28121:131;28247:4;28121:131;:::i;:::-;28113:139;;27840:419;;;:::o;28265:305::-;28305:3;28324:20;28342:1;28324:20;:::i;:::-;28319:25;;28358:20;28376:1;28358:20;:::i;:::-;28353:25;;28512:1;28444:66;28440:74;28437:1;28434:81;28431:107;;;28518:18;;:::i;:::-;28431:107;28562:1;28559;28555:9;28548:16;;28265:305;;;;:::o;28576:173::-;28716:25;28712:1;28704:6;28700:14;28693:49;28576:173;:::o;28755:366::-;28897:3;28918:67;28982:2;28977:3;28918:67;:::i;:::-;28911:74;;28994:93;29083:3;28994:93;:::i;:::-;29112:2;29107:3;29103:12;29096:19;;28755:366;;;:::o;29127:419::-;29293:4;29331:2;29320:9;29316:18;29308:26;;29380:9;29374:4;29370:20;29366:1;29355:9;29351:17;29344:47;29408:131;29534:4;29408:131;:::i;:::-;29400:139;;29127:419;;;:::o;29552:173::-;29692:25;29688:1;29680:6;29676:14;29669:49;29552:173;:::o;29731:366::-;29873:3;29894:67;29958:2;29953:3;29894:67;:::i;:::-;29887:74;;29970:93;30059:3;29970:93;:::i;:::-;30088:2;30083:3;30079:12;30072:19;;29731:366;;;:::o;30103:419::-;30269:4;30307:2;30296:9;30292:18;30284:26;;30356:9;30350:4;30346:20;30342:1;30331:9;30327:17;30320:47;30384:131;30510:4;30384:131;:::i;:::-;30376:139;;30103:419;;;:::o;30528:348::-;30568:7;30591:20;30609:1;30591:20;:::i;:::-;30586:25;;30625:20;30643:1;30625:20;:::i;:::-;30620:25;;30813:1;30745:66;30741:74;30738:1;30735:81;30730:1;30723:9;30716:17;30712:105;30709:131;;;30820:18;;:::i;:::-;30709:131;30868:1;30865;30861:9;30850:20;;30528:348;;;;:::o;30882:175::-;31022:27;31018:1;31010:6;31006:14;30999:51;30882:175;:::o;31063:366::-;31205:3;31226:67;31290:2;31285:3;31226:67;:::i;:::-;31219:74;;31302:93;31391:3;31302:93;:::i;:::-;31420:2;31415:3;31411:12;31404:19;;31063:366;;;:::o;31435:419::-;31601:4;31639:2;31628:9;31624:18;31616:26;;31688:9;31682:4;31678:20;31674:1;31663:9;31659:17;31652:47;31716:131;31842:4;31716:131;:::i;:::-;31708:139;;31435:419;;;:::o;31860:191::-;31900:4;31920:20;31938:1;31920:20;:::i;:::-;31915:25;;31954:20;31972:1;31954:20;:::i;:::-;31949:25;;31993:1;31990;31987:8;31984:34;;;31998:18;;:::i;:::-;31984:34;32043:1;32040;32036:9;32028:17;;31860:191;;;;:::o;32057:234::-;32197:34;32193:1;32185:6;32181:14;32174:58;32266:17;32261:2;32253:6;32249:15;32242:42;32057:234;:::o;32297:366::-;32439:3;32460:67;32524:2;32519:3;32460:67;:::i;:::-;32453:74;;32536:93;32625:3;32536:93;:::i;:::-;32654:2;32649:3;32645:12;32638:19;;32297:366;;;:::o;32669:419::-;32835:4;32873:2;32862:9;32858:18;32850:26;;32922:9;32916:4;32912:20;32908:1;32897:9;32893:17;32886:47;32950:131;33076:4;32950:131;:::i;:::-;32942:139;;32669:419;;;:::o;33094:148::-;33196:11;33233:3;33218:18;;33094:148;;;;:::o;33248:377::-;33354:3;33382:39;33415:5;33382:39;:::i;:::-;33437:89;33519:6;33514:3;33437:89;:::i;:::-;33430:96;;33535:52;33580:6;33575:3;33568:4;33561:5;33557:16;33535:52;:::i;:::-;33612:6;33607:3;33603:16;33596:23;;33358:267;33248:377;;;;:::o;33631:141::-;33680:4;33703:3;33695:11;;33726:3;33723:1;33716:14;33760:4;33757:1;33747:18;33739:26;;33631:141;;;:::o;33802:845::-;33905:3;33942:5;33936:12;33971:36;33997:9;33971:36;:::i;:::-;34023:89;34105:6;34100:3;34023:89;:::i;:::-;34016:96;;34143:1;34132:9;34128:17;34159:1;34154:137;;;;34305:1;34300:341;;;;34121:520;;34154:137;34238:4;34234:9;34223;34219:25;34214:3;34207:38;34274:6;34269:3;34265:16;34258:23;;34154:137;;34300:341;34367:38;34399:5;34367:38;:::i;:::-;34427:1;34441:154;34455:6;34452:1;34449:13;34441:154;;;34529:7;34523:14;34519:1;34514:3;34510:11;34503:35;34579:1;34570:7;34566:15;34555:26;;34477:4;34474:1;34470:12;34465:17;;34441:154;;;34624:6;34619:3;34615:16;34608:23;;34307:334;;34121:520;;33909:738;;33802:845;;;;:::o;34653:589::-;34878:3;34900:95;34991:3;34982:6;34900:95;:::i;:::-;34893:102;;35012:95;35103:3;35094:6;35012:95;:::i;:::-;35005:102;;35124:92;35212:3;35203:6;35124:92;:::i;:::-;35117:99;;35233:3;35226:10;;34653:589;;;;;;:::o;35248:225::-;35388:34;35384:1;35376:6;35372:14;35365:58;35457:8;35452:2;35444:6;35440:15;35433:33;35248:225;:::o;35479:366::-;35621:3;35642:67;35706:2;35701:3;35642:67;:::i;:::-;35635:74;;35718:93;35807:3;35718:93;:::i;:::-;35836:2;35831:3;35827:12;35820:19;;35479:366;;;:::o;35851:419::-;36017:4;36055:2;36044:9;36040:18;36032:26;;36104:9;36098:4;36094:20;36090:1;36079:9;36075:17;36068:47;36132:131;36258:4;36132:131;:::i;:::-;36124:139;;35851:419;;;:::o;36276:231::-;36416:34;36412:1;36404:6;36400:14;36393:58;36485:14;36480:2;36472:6;36468:15;36461:39;36276:231;:::o;36513:366::-;36655:3;36676:67;36740:2;36735:3;36676:67;:::i;:::-;36669:74;;36752:93;36841:3;36752:93;:::i;:::-;36870:2;36865:3;36861:12;36854:19;;36513:366;;;:::o;36885:419::-;37051:4;37089:2;37078:9;37074:18;37066:26;;37138:9;37132:4;37128:20;37124:1;37113:9;37109:17;37102:47;37166:131;37292:4;37166:131;:::i;:::-;37158:139;;36885:419;;;:::o;37310:228::-;37450:34;37446:1;37438:6;37434:14;37427:58;37519:11;37514:2;37506:6;37502:15;37495:36;37310:228;:::o;37544:366::-;37686:3;37707:67;37771:2;37766:3;37707:67;:::i;:::-;37700:74;;37783:93;37872:3;37783:93;:::i;:::-;37901:2;37896:3;37892:12;37885:19;;37544:366;;;:::o;37916:419::-;38082:4;38120:2;38109:9;38105:18;38097:26;;38169:9;38163:4;38159:20;38155:1;38144:9;38140:17;38133:47;38197:131;38323:4;38197:131;:::i;:::-;38189:139;;37916:419;;;:::o;38341:223::-;38481:34;38477:1;38469:6;38465:14;38458:58;38550:6;38545:2;38537:6;38533:15;38526:31;38341:223;:::o;38570:366::-;38712:3;38733:67;38797:2;38792:3;38733:67;:::i;:::-;38726:74;;38809:93;38898:3;38809:93;:::i;:::-;38927:2;38922:3;38918:12;38911:19;;38570:366;;;:::o;38942:419::-;39108:4;39146:2;39135:9;39131:18;39123:26;;39195:9;39189:4;39185:20;39181:1;39170:9;39166:17;39159:47;39223:131;39349:4;39223:131;:::i;:::-;39215:139;;38942:419;;;:::o;39367:237::-;39507:34;39503:1;39495:6;39491:14;39484:58;39576:20;39571:2;39563:6;39559:15;39552:45;39367:237;:::o;39610:366::-;39752:3;39773:67;39837:2;39832:3;39773:67;:::i;:::-;39766:74;;39849:93;39938:3;39849:93;:::i;:::-;39967:2;39962:3;39958:12;39951:19;;39610:366;;;:::o;39982:419::-;40148:4;40186:2;40175:9;40171:18;40163:26;;40235:9;40229:4;40225:20;40221:1;40210:9;40206:17;40199:47;40263:131;40389:4;40263:131;:::i;:::-;40255:139;;39982:419;;;:::o;40407:180::-;40455:77;40452:1;40445:88;40552:4;40549:1;40542:15;40576:4;40573:1;40566:15;40593:185;40633:1;40650:20;40668:1;40650:20;:::i;:::-;40645:25;;40684:20;40702:1;40684:20;:::i;:::-;40679:25;;40723:1;40713:35;;40728:18;;:::i;:::-;40713:35;40770:1;40767;40763:9;40758:14;;40593:185;;;;:::o;40784:176::-;40816:1;40833:20;40851:1;40833:20;:::i;:::-;40828:25;;40867:20;40885:1;40867:20;:::i;:::-;40862:25;;40906:1;40896:35;;40911:18;;:::i;:::-;40896:35;40952:1;40949;40945:9;40940:14;;40784:176;;;;:::o;40966:98::-;41017:6;41051:5;41045:12;41035:22;;40966:98;;;:::o;41070:168::-;41153:11;41187:6;41182:3;41175:19;41227:4;41222:3;41218:14;41203:29;;41070:168;;;;:::o;41244:360::-;41330:3;41358:38;41390:5;41358:38;:::i;:::-;41412:70;41475:6;41470:3;41412:70;:::i;:::-;41405:77;;41491:52;41536:6;41531:3;41524:4;41517:5;41513:16;41491:52;:::i;:::-;41568:29;41590:6;41568:29;:::i;:::-;41563:3;41559:39;41552:46;;41334:270;41244:360;;;;:::o;41610:640::-;41805:4;41843:3;41832:9;41828:19;41820:27;;41857:71;41925:1;41914:9;41910:17;41901:6;41857:71;:::i;:::-;41938:72;42006:2;41995:9;41991:18;41982:6;41938:72;:::i;:::-;42020;42088:2;42077:9;42073:18;42064:6;42020:72;:::i;:::-;42139:9;42133:4;42129:20;42124:2;42113:9;42109:18;42102:48;42167:76;42238:4;42229:6;42167:76;:::i;:::-;42159:84;;41610:640;;;;;;;:::o;42256:141::-;42312:5;42343:6;42337:13;42328:22;;42359:32;42385:5;42359:32;:::i;:::-;42256:141;;;;:::o;42403:349::-;42472:6;42521:2;42509:9;42500:7;42496:23;42492:32;42489:119;;;42527:79;;:::i;:::-;42489:119;42647:1;42672:63;42727:7;42718:6;42707:9;42703:22;42672:63;:::i;:::-;42662:73;;42618:127;42403:349;;;;:::o;42758:180::-;42806:77;42803:1;42796:88;42903:4;42900:1;42893:15;42927:4;42924:1;42917:15;42944:182;43084:34;43080:1;43072:6;43068:14;43061:58;42944:182;:::o;43132:366::-;43274:3;43295:67;43359:2;43354:3;43295:67;:::i;:::-;43288:74;;43371:93;43460:3;43371:93;:::i;:::-;43489:2;43484:3;43480:12;43473:19;;43132:366;;;:::o;43504:419::-;43670:4;43708:2;43697:9;43693:18;43685:26;;43757:9;43751:4;43747:20;43743:1;43732:9;43728:17;43721:47;43785:131;43911:4;43785:131;:::i;:::-;43777:139;;43504:419;;;:::o;43929:178::-;44069:30;44065:1;44057:6;44053:14;44046:54;43929:178;:::o;44113:366::-;44255:3;44276:67;44340:2;44335:3;44276:67;:::i;:::-;44269:74;;44352:93;44441:3;44352:93;:::i;:::-;44470:2;44465:3;44461:12;44454:19;;44113:366;;;:::o;44485:419::-;44651:4;44689:2;44678:9;44674:18;44666:26;;44738:9;44732:4;44728:20;44724:1;44713:9;44709:17;44702:47;44766:131;44892:4;44766:131;:::i;:::-;44758:139;;44485:419;;;:::o

Swarm Source

ipfs://a3dcaf07016410c57e87d5418ddbc490e7714821093af4fbe31cd2a4492c3ba2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.