ETH Price: $2,361.32 (+1.34%)

Token

GoodLife (GDLF)
 

Overview

Max Total Supply

6,666 GDLF

Holders

947

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GDLF
0x81Ea9DB63e4A750F092885b23014bC61a1D3f976
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:
GoodLife

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: goodlife contract/Strings.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: goodlife contract/Address.sol


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: goodlife contract/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: goodlife contract/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: goodlife contract/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: goodlife contract/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.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 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: goodlife contract/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: goodlife contract/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: goodlife contract/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: goodlife contract/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (
            to.isContract() &&
            !_checkContractOnERC721Received(from, to, tokenId, _data)
        ) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try
            IERC721Receiver(to).onERC721Received(
                _msgSender(),
                from,
                tokenId,
                _data
            )
        returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

// File: goodlife contract/ERC721.sol


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

// File: goodlife contract/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: goodlife contract/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: goodlife contract/nft-sale.sol



pragma solidity ^0.8.0;




/**
 * @title NFT Sale with bulk mint discount & burning
 * @author OATTTTTTTTTTT
 * @notice NFT, Sale, ERC721, ERC721A, Limited
 * @custom:version 69
 * @custom:address 14
 * @custom:default-precision 0
 * @custom:simple-description GoodLife mintooooor 
 * @dev ERC721A NFT with the following features:
 *
 *  - Built-in sale with an adjustable price.
 *  - Wallets can only buy a limited number of NFTs during the sale.
 *  - Reserve function for the owner to mint free NFTs.
 *  - Fixed maximum supply.
 *  - Free and paid minting functions
 *  - Reduced Gas costs when minting many NFTs at the same time.
 */

contract GoodLife is ERC721A, Ownable {
    bool public saleIsActive = false;
    string private _baseURIextended;
    uint256 public immutable MAX_SUPPLY;
    /// @custom:precision 18
    uint256 public currentPrice;
    uint256 public walletLimit;
    mapping(address => uint256) public freeMints;
    /**
     * @param _name NFT Name
     * @param _symbol NFT Symbol
     * @param _uri Token URI used for metadata
     * @param limit Wallet Limit
     * @param price Initial Price | precision:18
     * @param maxSupply Maximum # of NFTs
     */
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri,
        uint256 limit,
        uint256 price,
        uint256 maxSupply
    ) payable ERC721A(_name, _symbol) {
        _baseURIextended = _uri;
        currentPrice = price;
        walletLimit = limit;
        MAX_SUPPLY = maxSupply;

        // Mint 5 NFTs during deployment
        for (uint256 i = 0; i < 5; i++) {
            _safeMint(msg.sender, 1); // Use 1 as the quantity parameter for ERC721A
        }
    }

    /**
     * @dev An external method for users to purchase and mint NFTs. Requires that the sale
     * is active, that the minted NFTs will not exceed the `MAX_SUPPLY`, and that a
     * sufficient payable value is sent.
     * @param amount The number of NFTs to mint.
     */
    function RollAJoint(uint256 amount) external payable {
        uint256 ts = totalSupply();
        uint256 minted = _numberMinted(msg.sender);

        require(saleIsActive, "Sale must be active to mint tokens");
        require(amount + minted <= walletLimit, "Exceeds wallet limit");
        require(ts + amount <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(currentPrice * amount == msg.value, "Value sent is not correct");

        _safeMint(msg.sender, amount);
    }

    function StingeAHit(uint256 amount) external {
        uint256 ts = totalSupply();
        uint256 minted = _numberMinted(msg.sender);

        require(saleIsActive, "Sale must be active to claim free mint");
        require(freeMints[msg.sender] == 0, "Free mint already claimed");
        require(amount + minted <= walletLimit, "Exceeds wallet limit");
        require(ts + amount <= MAX_SUPPLY, "Purchase would exceed max tokens");

        _safeMint(msg.sender, amount);
        freeMints[msg.sender] = 1;
    }




    /**
     * @dev A way for the owner to reserve a specifc number of NFTs without having to
     * interact with the sale.
     * @param to The address to send reserved NFTs to.
     * @param amount The number of NFTs to reserve.
     */
    function reserve(address to, uint256 amount) external onlyOwner {
        uint256 ts = totalSupply();
        require(ts + amount <= MAX_SUPPLY, "Purchase would exceed max tokens");
        _safeMint(to, amount);
    }

    /**
     * @dev A way for the owner to withdraw all proceeds from the sale.
     */
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /**
     * @dev Sets whether or not the NFT sale is active.
     * @param isActive Whether or not the sale will be active.
     */
    function setSaleIsActive(bool isActive) external onlyOwner {
        saleIsActive = isActive;
    }

    /**
     * @dev Sets the price of each NFT during the initial sale.
     * @param price The price of each NFT during the initial sale | precision:18
     */
    function setCurrentPrice(uint256 price) external onlyOwner {
        currentPrice = price;
    }

    /**
     * @dev Sets the maximum number of NFTs that can be sold to a specific address.
     * @param limit The maximum number of NFTs that be bought by a wallet.
     */
    function setWalletLimit(uint256 limit) external onlyOwner {
        walletLimit = limit;
    }

    function LightAJoint(uint256 tokenId) public virtual {
        _burn(tokenId, true);
    }

    /**
     * @dev Updates the baseURI that will be used to retrieve NFT metadata.
     * @param baseURI_ The baseURI to be used.
     */
    function setBaseURI(string memory baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

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

    function uintToString(uint256 v) internal pure returns (string memory str) {
        if (v == 0) {
            return "0";
        }

        uint256 maxlength = 100;
        bytes memory reversed = new bytes(maxlength);
        uint256 i = 0;
        while (v != 0) {
            uint256 remainder = v % 10;
            v = v / 10;
            reversed[i++] = bytes1(uint8(48 + remainder));
        }
        bytes memory s = new bytes(i); // i is the length of the output string
        for (uint256 j = 0; j < i; j++) {
            s[j] = reversed[i - 1 - j]; // reverse
        }
        str = string(s);  // memory isn't implicitly convertible to storage
    }


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

        // Convert the tokenId to a string
        string memory tokenIdStr = uintToString(tokenId);

        // Get the base URI
        string memory baseURI = _baseURI();

        // If the base URI is not set, return an empty string
        if (bytes(baseURI).length == 0) {
            return "";
        }

        // Concatenate the base URI, tokenId, and .json extension
        return string(abi.encodePacked(baseURI, tokenIdStr, ".json"));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"LightAJoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RollAJoint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"StingeAHit","outputs":[],"stateMutability":"nonpayable","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":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMints","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":[{"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000600860146101000a81548160ff02191690831515021790555060405162004d8938038062004d89833981810160405281019062000044919062000976565b8585816002908162000057919062000cb0565b50806003908162000069919062000cb0565b506200007a6200010d60201b60201c565b6000819055505050620000a2620000966200011260201b60201c565b6200011a60201b60201c565b8360099081620000b3919062000cb0565b5081600a8190555082600b81905550806080818152505060005b60058110156200010057620000ea336001620001e060201b60201c565b8080620000f79062000dc6565b915050620000cd565b5050505050505062000fa9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002028282604051806020016040528060008152506200020660201b60201c565b5050565b6200021b83838360016200022060201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036200028d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403620002c8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002dd60008683876200061860201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620004b55750620004b48773ffffffffffffffffffffffffffffffffffffffff166200061e60201b620015251760201c565b5b1562000587575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200053360008884806001019550886200064160201b60201c565b6200056a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203620004bc5782600054146200058157600080fd5b620005f3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820362000588575b816000819055505050620006116000868387620007a260201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200066f6200011260201b60201c565b8786866040518563ffffffff1660e01b815260040162000693949392919062000ec6565b6020604051808303816000875af1925050508015620006d257506040513d601f19601f82011682018060405250810190620006cf919062000f77565b60015b6200074f573d806000811462000705576040519150601f19603f3d011682016040523d82523d6000602084013e6200070a565b606091505b50600081510362000747576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200081182620007c6565b810181811067ffffffffffffffff82111715620008335762000832620007d7565b5b80604052505050565b600062000848620007a8565b905062000856828262000806565b919050565b600067ffffffffffffffff821115620008795762000878620007d7565b5b6200088482620007c6565b9050602081019050919050565b60005b83811015620008b157808201518184015260208101905062000894565b60008484015250505050565b6000620008d4620008ce846200085b565b6200083c565b905082815260208101848484011115620008f357620008f2620007c1565b5b6200090084828562000891565b509392505050565b600082601f83011262000920576200091f620007bc565b5b815162000932848260208601620008bd565b91505092915050565b6000819050919050565b62000950816200093b565b81146200095c57600080fd5b50565b600081519050620009708162000945565b92915050565b60008060008060008060c08789031215620009965762000995620007b2565b5b600087015167ffffffffffffffff811115620009b757620009b6620007b7565b5b620009c589828a0162000908565b965050602087015167ffffffffffffffff811115620009e957620009e8620007b7565b5b620009f789828a0162000908565b955050604087015167ffffffffffffffff81111562000a1b5762000a1a620007b7565b5b62000a2989828a0162000908565b945050606062000a3c89828a016200095f565b935050608062000a4f89828a016200095f565b92505060a062000a6289828a016200095f565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ac257607f821691505b60208210810362000ad85762000ad762000a7a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b427fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b03565b62000b4e868362000b03565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b9162000b8b62000b85846200093b565b62000b66565b6200093b565b9050919050565b6000819050919050565b62000bad8362000b70565b62000bc562000bbc8262000b98565b84845462000b10565b825550505050565b600090565b62000bdc62000bcd565b62000be981848462000ba2565b505050565b5b8181101562000c115762000c0560008262000bd2565b60018101905062000bef565b5050565b601f82111562000c605762000c2a8162000ade565b62000c358462000af3565b8101602085101562000c45578190505b62000c5d62000c548562000af3565b83018262000bee565b50505b505050565b600082821c905092915050565b600062000c856000198460080262000c65565b1980831691505092915050565b600062000ca0838362000c72565b9150826002028217905092915050565b62000cbb8262000a6f565b67ffffffffffffffff81111562000cd75762000cd6620007d7565b5b62000ce3825462000aa9565b62000cf082828562000c15565b600060209050601f83116001811462000d28576000841562000d13578287015190505b62000d1f858262000c92565b86555062000d8f565b601f19841662000d388662000ade565b60005b8281101562000d625784890151825560018201915060208501945060208101905062000d3b565b8683101562000d82578489015162000d7e601f89168262000c72565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000dd3826200093b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000e085762000e0762000d97565b5b600182019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e408262000e13565b9050919050565b62000e528162000e33565b82525050565b62000e63816200093b565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000e928262000e69565b62000e9e818562000e74565b935062000eb081856020860162000891565b62000ebb81620007c6565b840191505092915050565b600060808201905062000edd600083018762000e47565b62000eec602083018662000e47565b62000efb604083018562000e58565b818103606083015262000f0f818462000e85565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000f518162000f1a565b811462000f5d57600080fd5b50565b60008151905062000f718162000f46565b92915050565b60006020828403121562000f905762000f8f620007b2565b5b600062000fa08482850162000f60565b91505092915050565b608051613daf62000fda60003960008181610a9901528181610fe001528181611115015261131b0152613daf6000f3fe6080604052600436106101d85760003560e01c806370a0823111610102578063cc47a40b11610095578063eb8d244411610064578063eb8d244414610699578063ec94d5c8146106c4578063f1d5f517146106ed578063f2fde38b14610716576101d8565b8063cc47a40b146105ee578063cd159d1c14610617578063e02efca014610633578063e985e9c51461065c576101d8565b80639d1b464a116100d15780639d1b464a14610534578063a22cb4651461055f578063b88d4fde14610588578063c87b56dd146105b1576101d8565b806370a082311461048a578063715018a6146104c75780638da5cb5b146104de57806395d89b4114610509576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103be57806355f804b3146103e75780636352211e146104105780636d41d4fb1461044d576101d8565b806323b872dd1461032857806332cb6b0c146103515780633c8463a11461037c5780633ccfd60b146103a7576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab57806318160ddd146102d457806318b20071146102ff576101d8565b806301ffc9a7146101dd57806302c889891461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612c57565b61073f565b6040516102119190612c9f565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612ce6565b610821565b005b34801561024f57600080fd5b50610258610846565b6040516102659190612da3565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612dfb565b6108d8565b6040516102a29190612e69565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612eb0565b610954565b005b3480156102e057600080fd5b506102e9610a5e565b6040516102f69190612eff565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612dfb565b610a75565b005b34801561033457600080fd5b5061034f600480360381019061034a9190612f1a565b610a87565b005b34801561035d57600080fd5b50610366610a97565b6040516103739190612eff565b60405180910390f35b34801561038857600080fd5b50610391610abb565b60405161039e9190612eff565b60405180910390f35b3480156103b357600080fd5b506103bc610ac1565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190612f1a565b610b18565b005b3480156103f357600080fd5b5061040e600480360381019061040991906130a2565b610b38565b005b34801561041c57600080fd5b5061043760048036038101906104329190612dfb565b610b53565b6040516104449190612e69565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f91906130eb565b610b69565b6040516104819190612eff565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac91906130eb565b610b81565b6040516104be9190612eff565b60405180910390f35b3480156104d357600080fd5b506104dc610c50565b005b3480156104ea57600080fd5b506104f3610c64565b6040516105009190612e69565b60405180910390f35b34801561051557600080fd5b5061051e610c8e565b60405161052b9190612da3565b60405180910390f35b34801561054057600080fd5b50610549610d20565b6040516105569190612eff565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190613118565b610d26565b005b34801561059457600080fd5b506105af60048036038101906105aa91906131f9565b610e9d565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190612dfb565b610f19565b6040516105e59190612da3565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190612eb0565b610fca565b005b610631600480360381019061062c9190612dfb565b61105b565b005b34801561063f57600080fd5b5061065a60048036038101906106559190612dfb565b6111df565b005b34801561066857600080fd5b50610683600480360381019061067e919061327c565b6113db565b6040516106909190612c9f565b60405180910390f35b3480156106a557600080fd5b506106ae61146f565b6040516106bb9190612c9f565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612dfb565b611482565b005b3480156106f957600080fd5b50610714600480360381019061070f9190612dfb565b611490565b005b34801561072257600080fd5b5061073d600480360381019061073891906130eb565b6114a2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081a575061081982611548565b5b9050919050565b6108296115b2565b80600860146101000a81548160ff02191690831515021790555050565b606060028054610855906132eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610881906132eb565b80156108ce5780601f106108a3576101008083540402835291602001916108ce565b820191906000526020600020905b8154815290600101906020018083116108b157829003601f168201915b5050505050905090565b60006108e382611630565b610919576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095f82610b53565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e561167e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a175750610a1581610a1061167e565b6113db565b155b15610a4e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a59838383611686565b505050565b6000610a68611738565b6001546000540303905090565b610a7d6115b2565b80600a8190555050565b610a9283838361173d565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b610ac96115b2565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b14573d6000803e3d6000fd5b5050565b610b3383838360405180602001604052806000815250610e9d565b505050565b610b406115b2565b8060099081610b4f91906134c8565b5050565b6000610b5e82611bf1565b600001519050919050565b600c6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c586115b2565b610c626000611e80565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c9d906132eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc9906132eb565b8015610d165780601f10610ceb57610100808354040283529160200191610d16565b820191906000526020600020905b815481529060010190602001808311610cf957829003601f168201915b5050505050905090565b600a5481565b610d2e61167e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d92576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d9f61167e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e4c61167e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e919190612c9f565b60405180910390a35050565b610ea884848461173d565b610ec78373ffffffffffffffffffffffffffffffffffffffff16611525565b8015610edc5750610eda84848484611f46565b155b15610f13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610f2482611630565b610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a9061360c565b60405180910390fd5b6000610f6e83612096565b90506000610f7a6122b7565b90506000815103610f9e576040518060200160405280600081525092505050610fc5565b8082604051602001610fb19291906136b4565b604051602081830303815290604052925050505b919050565b610fd26115b2565b6000610fdc610a5e565b90507f0000000000000000000000000000000000000000000000000000000000000000828261100b9190613712565b111561104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390613792565b60405180910390fd5b6110568383612349565b505050565b6000611065610a5e565b9050600061107233612367565b9050600860149054906101000a900460ff166110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613824565b60405180910390fd5b600b5481846110d29190613712565b1115611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90613890565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083836111409190613712565b1115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613792565b60405180910390fd5b3483600a5461119091906138b0565b146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c79061393e565b60405180910390fd5b6111da3384612349565b505050565b60006111e9610a5e565b905060006111f633612367565b9050600860149054906101000a900460ff16611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e906139d0565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090613a3c565b60405180910390fd5b600b5481846112d89190613712565b1115611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090613890565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083836113469190613712565b1115611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90613792565b60405180910390fd5b6113913384612349565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860149054906101000a900460ff1681565b61148d8160016123d1565b50565b6114986115b2565b80600b8190555050565b6114aa6115b2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613ace565b60405180910390fd5b61152281611e80565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6115ba61167e565b73ffffffffffffffffffffffffffffffffffffffff166115d8610c64565b73ffffffffffffffffffffffffffffffffffffffff161461162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590613b3a565b60405180910390fd5b565b60008161163b611738565b1115801561164a575060005482105b8015611677575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061174882611bf1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146117b3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117d461167e565b73ffffffffffffffffffffffffffffffffffffffff1614806118035750611802856117fd61167e565b6113db565b5b80611848575061181161167e565b73ffffffffffffffffffffffffffffffffffffffff16611830846108d8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611881576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118e7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118f485858560016127c0565b61190060008487611686565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b7f576000548214611b7e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bea85858560016127c6565b5050505050565b611bf9612ba8565b600082905080611c07611738565b11158015611c16575060005481105b15611e49576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e4757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d2b578092505050611e7b565b5b600115611e4657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e41578092505050611e7b565b611d2c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f6c61167e565b8786866040518563ffffffff1660e01b8152600401611f8e9493929190613baf565b6020604051808303816000875af1925050508015611fca57506040513d601f19601f82011682018060405250810190611fc79190613c10565b60015b612043573d8060008114611ffa576040519150601f19603f3d011682016040523d82523d6000602084013e611fff565b606091505b50600081510361203b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036120dd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122b2565b60006064905060008167ffffffffffffffff8111156120ff576120fe612f77565b5b6040519080825280601f01601f1916602001820160405280156121315781602001600182028036833780820191505090505b50905060005b600085146121c3576000600a8661214e9190613c6c565b9050600a8661215d9190613c9d565b955080603061216c9190613712565b60f81b83838061217b90613cce565b94508151811061218e5761218d613d16565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050612137565b60008167ffffffffffffffff8111156121df576121de612f77565b5b6040519080825280601f01601f1916602001820160405280156122115781602001600182028036833780820191505090505b50905060005b828110156122a957838160018561222e9190613d45565b6122389190613d45565b8151811061224957612248613d16565b5b602001015160f81c60f81b82828151811061226757612266613d16565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806122a190613cce565b915050612217565b50809450505050505b919050565b6060600980546122c6906132eb565b80601f01602080910402602001604051908101604052809291908181526020018280546122f2906132eb565b801561233f5780601f106123145761010080835404028352916020019161233f565b820191906000526020600020905b81548152906001019060200180831161232257829003601f168201915b5050505050905090565b6123638282604051806020016040528060008152506127cc565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006123dc83611bf1565b905060008160000151905082156124bd5760008173ffffffffffffffffffffffffffffffffffffffff1661240e61167e565b73ffffffffffffffffffffffffffffffffffffffff16148061243d575061243c8261243761167e565b6113db565b5b80612482575061244b61167e565b73ffffffffffffffffffffffffffffffffffffffff1661246a866108d8565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124bb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6124cb8160008660016127c0565b6124d760008583611686565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361273a57600054821461273957848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a88160008660016127c6565b60016000815480929190600101919050555050505050565b50505050565b50505050565b6127d983838360016127de565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361284a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612884576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61289160008683876127c0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a5b5750612a5a8773ffffffffffffffffffffffffffffffffffffffff16611525565b5b15612b20575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ad06000888480600101955088611f46565b612b06576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612a61578260005414612b1b57600080fd5b612b8b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612b21575b816000819055505050612ba160008683876127c6565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c3481612bff565b8114612c3f57600080fd5b50565b600081359050612c5181612c2b565b92915050565b600060208284031215612c6d57612c6c612bf5565b5b6000612c7b84828501612c42565b91505092915050565b60008115159050919050565b612c9981612c84565b82525050565b6000602082019050612cb46000830184612c90565b92915050565b612cc381612c84565b8114612cce57600080fd5b50565b600081359050612ce081612cba565b92915050565b600060208284031215612cfc57612cfb612bf5565b5b6000612d0a84828501612cd1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d4d578082015181840152602081019050612d32565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d7582612d13565b612d7f8185612d1e565b9350612d8f818560208601612d2f565b612d9881612d59565b840191505092915050565b60006020820190508181036000830152612dbd8184612d6a565b905092915050565b6000819050919050565b612dd881612dc5565b8114612de357600080fd5b50565b600081359050612df581612dcf565b92915050565b600060208284031215612e1157612e10612bf5565b5b6000612e1f84828501612de6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e5382612e28565b9050919050565b612e6381612e48565b82525050565b6000602082019050612e7e6000830184612e5a565b92915050565b612e8d81612e48565b8114612e9857600080fd5b50565b600081359050612eaa81612e84565b92915050565b60008060408385031215612ec757612ec6612bf5565b5b6000612ed585828601612e9b565b9250506020612ee685828601612de6565b9150509250929050565b612ef981612dc5565b82525050565b6000602082019050612f146000830184612ef0565b92915050565b600080600060608486031215612f3357612f32612bf5565b5b6000612f4186828701612e9b565b9350506020612f5286828701612e9b565b9250506040612f6386828701612de6565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612faf82612d59565b810181811067ffffffffffffffff82111715612fce57612fcd612f77565b5b80604052505050565b6000612fe1612beb565b9050612fed8282612fa6565b919050565b600067ffffffffffffffff82111561300d5761300c612f77565b5b61301682612d59565b9050602081019050919050565b82818337600083830152505050565b600061304561304084612ff2565b612fd7565b90508281526020810184848401111561306157613060612f72565b5b61306c848285613023565b509392505050565b600082601f83011261308957613088612f6d565b5b8135613099848260208601613032565b91505092915050565b6000602082840312156130b8576130b7612bf5565b5b600082013567ffffffffffffffff8111156130d6576130d5612bfa565b5b6130e284828501613074565b91505092915050565b60006020828403121561310157613100612bf5565b5b600061310f84828501612e9b565b91505092915050565b6000806040838503121561312f5761312e612bf5565b5b600061313d85828601612e9b565b925050602061314e85828601612cd1565b9150509250929050565b600067ffffffffffffffff82111561317357613172612f77565b5b61317c82612d59565b9050602081019050919050565b600061319c61319784613158565b612fd7565b9050828152602081018484840111156131b8576131b7612f72565b5b6131c3848285613023565b509392505050565b600082601f8301126131e0576131df612f6d565b5b81356131f0848260208601613189565b91505092915050565b6000806000806080858703121561321357613212612bf5565b5b600061322187828801612e9b565b945050602061323287828801612e9b565b935050604061324387828801612de6565b925050606085013567ffffffffffffffff81111561326457613263612bfa565b5b613270878288016131cb565b91505092959194509250565b6000806040838503121561329357613292612bf5565b5b60006132a185828601612e9b565b92505060206132b285828601612e9b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061330357607f821691505b602082108103613316576133156132bc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261337e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613341565b6133888683613341565b95508019841693508086168417925050509392505050565b6000819050919050565b60006133c56133c06133bb84612dc5565b6133a0565b612dc5565b9050919050565b6000819050919050565b6133df836133aa565b6133f36133eb826133cc565b84845461334e565b825550505050565b600090565b6134086133fb565b6134138184846133d6565b505050565b5b818110156134375761342c600082613400565b600181019050613419565b5050565b601f82111561347c5761344d8161331c565b61345684613331565b81016020851015613465578190505b61347961347185613331565b830182613418565b50505b505050565b600082821c905092915050565b600061349f60001984600802613481565b1980831691505092915050565b60006134b8838361348e565b9150826002028217905092915050565b6134d182612d13565b67ffffffffffffffff8111156134ea576134e9612f77565b5b6134f482546132eb565b6134ff82828561343b565b600060209050601f8311600181146135325760008415613520578287015190505b61352a85826134ac565b865550613592565b601f1984166135408661331c565b60005b8281101561356857848901518255600182019150602085019450602081019050613543565b868310156135855784890151613581601f89168261348e565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135f6602f83612d1e565b91506136018261359a565b604082019050919050565b60006020820190508181036000830152613625816135e9565b9050919050565b600081905092915050565b600061364282612d13565b61364c818561362c565b935061365c818560208601612d2f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061369e60058361362c565b91506136a982613668565b600582019050919050565b60006136c08285613637565b91506136cc8284613637565b91506136d782613691565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061371d82612dc5565b915061372883612dc5565b92508282019050808211156137405761373f6136e3565b5b92915050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b600061377c602083612d1e565b915061378782613746565b602082019050919050565b600060208201905081810360008301526137ab8161376f565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b600061380e602283612d1e565b9150613819826137b2565b604082019050919050565b6000602082019050818103600083015261383d81613801565b9050919050565b7f457863656564732077616c6c6574206c696d6974000000000000000000000000600082015250565b600061387a601483612d1e565b915061388582613844565b602082019050919050565b600060208201905081810360008301526138a98161386d565b9050919050565b60006138bb82612dc5565b91506138c683612dc5565b92508282026138d481612dc5565b915082820484148315176138eb576138ea6136e3565b5b5092915050565b7f56616c75652073656e74206973206e6f7420636f727265637400000000000000600082015250565b6000613928601983612d1e565b9150613933826138f2565b602082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f53616c65206d7573742062652061637469766520746f20636c61696d2066726560008201527f65206d696e740000000000000000000000000000000000000000000000000000602082015250565b60006139ba602683612d1e565b91506139c58261395e565b604082019050919050565b600060208201905081810360008301526139e9816139ad565b9050919050565b7f46726565206d696e7420616c726561647920636c61696d656400000000000000600082015250565b6000613a26601983612d1e565b9150613a31826139f0565b602082019050919050565b60006020820190508181036000830152613a5581613a19565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ab8602683612d1e565b9150613ac382613a5c565b604082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b24602083612d1e565b9150613b2f82613aee565b602082019050919050565b60006020820190508181036000830152613b5381613b17565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b8182613b5a565b613b8b8185613b65565b9350613b9b818560208601612d2f565b613ba481612d59565b840191505092915050565b6000608082019050613bc46000830187612e5a565b613bd16020830186612e5a565b613bde6040830185612ef0565b8181036060830152613bf08184613b76565b905095945050505050565b600081519050613c0a81612c2b565b92915050565b600060208284031215613c2657613c25612bf5565b5b6000613c3484828501613bfb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c7782612dc5565b9150613c8283612dc5565b925082613c9257613c91613c3d565b5b828206905092915050565b6000613ca882612dc5565b9150613cb383612dc5565b925082613cc357613cc2613c3d565b5b828204905092915050565b6000613cd982612dc5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d0b57613d0a6136e3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d5082612dc5565b9150613d5b83612dc5565b9250828203905081811115613d7357613d726136e3565b5b9291505056fea264697066735822122053b35801d21b9391e6369fc65ba747e59d11c4669c6e561c57f5000c1b68101d64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000071afd498d00000000000000000000000000000000000000000000000000000000000000001a0a0000000000000000000000000000000000000000000000000000000000000008476f6f644c696665000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447444c46000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569677a6a717372736d636c79746e736a7079716734676b6e37736b3370323475713773733570636b676a7233696f326d676f756f342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806370a0823111610102578063cc47a40b11610095578063eb8d244411610064578063eb8d244414610699578063ec94d5c8146106c4578063f1d5f517146106ed578063f2fde38b14610716576101d8565b8063cc47a40b146105ee578063cd159d1c14610617578063e02efca014610633578063e985e9c51461065c576101d8565b80639d1b464a116100d15780639d1b464a14610534578063a22cb4651461055f578063b88d4fde14610588578063c87b56dd146105b1576101d8565b806370a082311461048a578063715018a6146104c75780638da5cb5b146104de57806395d89b4114610509576101d8565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103be57806355f804b3146103e75780636352211e146104105780636d41d4fb1461044d576101d8565b806323b872dd1461032857806332cb6b0c146103515780633c8463a11461037c5780633ccfd60b146103a7576101d8565b8063081812fc116101b6578063081812fc1461026e578063095ea7b3146102ab57806318160ddd146102d457806318b20071146102ff576101d8565b806301ffc9a7146101dd57806302c889891461021a57806306fdde0314610243575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612c57565b61073f565b6040516102119190612c9f565b60405180910390f35b34801561022657600080fd5b50610241600480360381019061023c9190612ce6565b610821565b005b34801561024f57600080fd5b50610258610846565b6040516102659190612da3565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612dfb565b6108d8565b6040516102a29190612e69565b60405180910390f35b3480156102b757600080fd5b506102d260048036038101906102cd9190612eb0565b610954565b005b3480156102e057600080fd5b506102e9610a5e565b6040516102f69190612eff565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190612dfb565b610a75565b005b34801561033457600080fd5b5061034f600480360381019061034a9190612f1a565b610a87565b005b34801561035d57600080fd5b50610366610a97565b6040516103739190612eff565b60405180910390f35b34801561038857600080fd5b50610391610abb565b60405161039e9190612eff565b60405180910390f35b3480156103b357600080fd5b506103bc610ac1565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190612f1a565b610b18565b005b3480156103f357600080fd5b5061040e600480360381019061040991906130a2565b610b38565b005b34801561041c57600080fd5b5061043760048036038101906104329190612dfb565b610b53565b6040516104449190612e69565b60405180910390f35b34801561045957600080fd5b50610474600480360381019061046f91906130eb565b610b69565b6040516104819190612eff565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac91906130eb565b610b81565b6040516104be9190612eff565b60405180910390f35b3480156104d357600080fd5b506104dc610c50565b005b3480156104ea57600080fd5b506104f3610c64565b6040516105009190612e69565b60405180910390f35b34801561051557600080fd5b5061051e610c8e565b60405161052b9190612da3565b60405180910390f35b34801561054057600080fd5b50610549610d20565b6040516105569190612eff565b60405180910390f35b34801561056b57600080fd5b5061058660048036038101906105819190613118565b610d26565b005b34801561059457600080fd5b506105af60048036038101906105aa91906131f9565b610e9d565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190612dfb565b610f19565b6040516105e59190612da3565b60405180910390f35b3480156105fa57600080fd5b5061061560048036038101906106109190612eb0565b610fca565b005b610631600480360381019061062c9190612dfb565b61105b565b005b34801561063f57600080fd5b5061065a60048036038101906106559190612dfb565b6111df565b005b34801561066857600080fd5b50610683600480360381019061067e919061327c565b6113db565b6040516106909190612c9f565b60405180910390f35b3480156106a557600080fd5b506106ae61146f565b6040516106bb9190612c9f565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612dfb565b611482565b005b3480156106f957600080fd5b50610714600480360381019061070f9190612dfb565b611490565b005b34801561072257600080fd5b5061073d600480360381019061073891906130eb565b6114a2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081a575061081982611548565b5b9050919050565b6108296115b2565b80600860146101000a81548160ff02191690831515021790555050565b606060028054610855906132eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610881906132eb565b80156108ce5780601f106108a3576101008083540402835291602001916108ce565b820191906000526020600020905b8154815290600101906020018083116108b157829003601f168201915b5050505050905090565b60006108e382611630565b610919576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095f82610b53565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c6576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e561167e565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a175750610a1581610a1061167e565b6113db565b155b15610a4e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a59838383611686565b505050565b6000610a68611738565b6001546000540303905090565b610a7d6115b2565b80600a8190555050565b610a9283838361173d565b505050565b7f0000000000000000000000000000000000000000000000000000000000001a0a81565b600b5481565b610ac96115b2565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b14573d6000803e3d6000fd5b5050565b610b3383838360405180602001604052806000815250610e9d565b505050565b610b406115b2565b8060099081610b4f91906134c8565b5050565b6000610b5e82611bf1565b600001519050919050565b600c6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610be8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610c586115b2565b610c626000611e80565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c9d906132eb565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc9906132eb565b8015610d165780601f10610ceb57610100808354040283529160200191610d16565b820191906000526020600020905b815481529060010190602001808311610cf957829003601f168201915b5050505050905090565b600a5481565b610d2e61167e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d92576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d9f61167e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e4c61167e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e919190612c9f565b60405180910390a35050565b610ea884848461173d565b610ec78373ffffffffffffffffffffffffffffffffffffffff16611525565b8015610edc5750610eda84848484611f46565b155b15610f13576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610f2482611630565b610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a9061360c565b60405180910390fd5b6000610f6e83612096565b90506000610f7a6122b7565b90506000815103610f9e576040518060200160405280600081525092505050610fc5565b8082604051602001610fb19291906136b4565b604051602081830303815290604052925050505b919050565b610fd26115b2565b6000610fdc610a5e565b90507f0000000000000000000000000000000000000000000000000000000000001a0a828261100b9190613712565b111561104c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104390613792565b60405180910390fd5b6110568383612349565b505050565b6000611065610a5e565b9050600061107233612367565b9050600860149054906101000a900460ff166110c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ba90613824565b60405180910390fd5b600b5481846110d29190613712565b1115611113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110a90613890565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001a0a83836111409190613712565b1115611181576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117890613792565b60405180910390fd5b3483600a5461119091906138b0565b146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c79061393e565b60405180910390fd5b6111da3384612349565b505050565b60006111e9610a5e565b905060006111f633612367565b9050600860149054906101000a900460ff16611247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123e906139d0565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146112c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c090613a3c565b60405180910390fd5b600b5481846112d89190613712565b1115611319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131090613890565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001a0a83836113469190613712565b1115611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90613792565b60405180910390fd5b6113913384612349565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860149054906101000a900460ff1681565b61148d8160016123d1565b50565b6114986115b2565b80600b8190555050565b6114aa6115b2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151090613ace565b60405180910390fd5b61152281611e80565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6115ba61167e565b73ffffffffffffffffffffffffffffffffffffffff166115d8610c64565b73ffffffffffffffffffffffffffffffffffffffff161461162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590613b3a565b60405180910390fd5b565b60008161163b611738565b1115801561164a575060005482105b8015611677575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061174882611bf1565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146117b3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117d461167e565b73ffffffffffffffffffffffffffffffffffffffff1614806118035750611802856117fd61167e565b6113db565b5b80611848575061181161167e565b73ffffffffffffffffffffffffffffffffffffffff16611830846108d8565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611881576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118e7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118f485858560016127c0565b61190060008487611686565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b7f576000548214611b7e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bea85858560016127c6565b5050505050565b611bf9612ba8565b600082905080611c07611738565b11158015611c16575060005481105b15611e49576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e4757600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d2b578092505050611e7b565b5b600115611e4657818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e41578092505050611e7b565b611d2c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f6c61167e565b8786866040518563ffffffff1660e01b8152600401611f8e9493929190613baf565b6020604051808303816000875af1925050508015611fca57506040513d601f19601f82011682018060405250810190611fc79190613c10565b60015b612043573d8060008114611ffa576040519150601f19603f3d011682016040523d82523d6000602084013e611fff565b606091505b50600081510361203b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036120dd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122b2565b60006064905060008167ffffffffffffffff8111156120ff576120fe612f77565b5b6040519080825280601f01601f1916602001820160405280156121315781602001600182028036833780820191505090505b50905060005b600085146121c3576000600a8661214e9190613c6c565b9050600a8661215d9190613c9d565b955080603061216c9190613712565b60f81b83838061217b90613cce565b94508151811061218e5761218d613d16565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535050612137565b60008167ffffffffffffffff8111156121df576121de612f77565b5b6040519080825280601f01601f1916602001820160405280156122115781602001600182028036833780820191505090505b50905060005b828110156122a957838160018561222e9190613d45565b6122389190613d45565b8151811061224957612248613d16565b5b602001015160f81c60f81b82828151811061226757612266613d16565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806122a190613cce565b915050612217565b50809450505050505b919050565b6060600980546122c6906132eb565b80601f01602080910402602001604051908101604052809291908181526020018280546122f2906132eb565b801561233f5780601f106123145761010080835404028352916020019161233f565b820191906000526020600020905b81548152906001019060200180831161232257829003601f168201915b5050505050905090565b6123638282604051806020016040528060008152506127cc565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006123dc83611bf1565b905060008160000151905082156124bd5760008173ffffffffffffffffffffffffffffffffffffffff1661240e61167e565b73ffffffffffffffffffffffffffffffffffffffff16148061243d575061243c8261243761167e565b6113db565b5b80612482575061244b61167e565b73ffffffffffffffffffffffffffffffffffffffff1661246a866108d8565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124bb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6124cb8160008660016127c0565b6124d760008583611686565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361273a57600054821461273957848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a88160008660016127c6565b60016000815480929190600101919050555050505050565b50505050565b50505050565b6127d983838360016127de565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361284a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612884576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61289160008683876127c0565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612a5b5750612a5a8773ffffffffffffffffffffffffffffffffffffffff16611525565b5b15612b20575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ad06000888480600101955088611f46565b612b06576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612a61578260005414612b1b57600080fd5b612b8b565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612b21575b816000819055505050612ba160008683876127c6565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612c3481612bff565b8114612c3f57600080fd5b50565b600081359050612c5181612c2b565b92915050565b600060208284031215612c6d57612c6c612bf5565b5b6000612c7b84828501612c42565b91505092915050565b60008115159050919050565b612c9981612c84565b82525050565b6000602082019050612cb46000830184612c90565b92915050565b612cc381612c84565b8114612cce57600080fd5b50565b600081359050612ce081612cba565b92915050565b600060208284031215612cfc57612cfb612bf5565b5b6000612d0a84828501612cd1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d4d578082015181840152602081019050612d32565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d7582612d13565b612d7f8185612d1e565b9350612d8f818560208601612d2f565b612d9881612d59565b840191505092915050565b60006020820190508181036000830152612dbd8184612d6a565b905092915050565b6000819050919050565b612dd881612dc5565b8114612de357600080fd5b50565b600081359050612df581612dcf565b92915050565b600060208284031215612e1157612e10612bf5565b5b6000612e1f84828501612de6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612e5382612e28565b9050919050565b612e6381612e48565b82525050565b6000602082019050612e7e6000830184612e5a565b92915050565b612e8d81612e48565b8114612e9857600080fd5b50565b600081359050612eaa81612e84565b92915050565b60008060408385031215612ec757612ec6612bf5565b5b6000612ed585828601612e9b565b9250506020612ee685828601612de6565b9150509250929050565b612ef981612dc5565b82525050565b6000602082019050612f146000830184612ef0565b92915050565b600080600060608486031215612f3357612f32612bf5565b5b6000612f4186828701612e9b565b9350506020612f5286828701612e9b565b9250506040612f6386828701612de6565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612faf82612d59565b810181811067ffffffffffffffff82111715612fce57612fcd612f77565b5b80604052505050565b6000612fe1612beb565b9050612fed8282612fa6565b919050565b600067ffffffffffffffff82111561300d5761300c612f77565b5b61301682612d59565b9050602081019050919050565b82818337600083830152505050565b600061304561304084612ff2565b612fd7565b90508281526020810184848401111561306157613060612f72565b5b61306c848285613023565b509392505050565b600082601f83011261308957613088612f6d565b5b8135613099848260208601613032565b91505092915050565b6000602082840312156130b8576130b7612bf5565b5b600082013567ffffffffffffffff8111156130d6576130d5612bfa565b5b6130e284828501613074565b91505092915050565b60006020828403121561310157613100612bf5565b5b600061310f84828501612e9b565b91505092915050565b6000806040838503121561312f5761312e612bf5565b5b600061313d85828601612e9b565b925050602061314e85828601612cd1565b9150509250929050565b600067ffffffffffffffff82111561317357613172612f77565b5b61317c82612d59565b9050602081019050919050565b600061319c61319784613158565b612fd7565b9050828152602081018484840111156131b8576131b7612f72565b5b6131c3848285613023565b509392505050565b600082601f8301126131e0576131df612f6d565b5b81356131f0848260208601613189565b91505092915050565b6000806000806080858703121561321357613212612bf5565b5b600061322187828801612e9b565b945050602061323287828801612e9b565b935050604061324387828801612de6565b925050606085013567ffffffffffffffff81111561326457613263612bfa565b5b613270878288016131cb565b91505092959194509250565b6000806040838503121561329357613292612bf5565b5b60006132a185828601612e9b565b92505060206132b285828601612e9b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061330357607f821691505b602082108103613316576133156132bc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261337e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613341565b6133888683613341565b95508019841693508086168417925050509392505050565b6000819050919050565b60006133c56133c06133bb84612dc5565b6133a0565b612dc5565b9050919050565b6000819050919050565b6133df836133aa565b6133f36133eb826133cc565b84845461334e565b825550505050565b600090565b6134086133fb565b6134138184846133d6565b505050565b5b818110156134375761342c600082613400565b600181019050613419565b5050565b601f82111561347c5761344d8161331c565b61345684613331565b81016020851015613465578190505b61347961347185613331565b830182613418565b50505b505050565b600082821c905092915050565b600061349f60001984600802613481565b1980831691505092915050565b60006134b8838361348e565b9150826002028217905092915050565b6134d182612d13565b67ffffffffffffffff8111156134ea576134e9612f77565b5b6134f482546132eb565b6134ff82828561343b565b600060209050601f8311600181146135325760008415613520578287015190505b61352a85826134ac565b865550613592565b601f1984166135408661331c565b60005b8281101561356857848901518255600182019150602085019450602081019050613543565b868310156135855784890151613581601f89168261348e565b8355505b6001600288020188555050505b505050505050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006135f6602f83612d1e565b91506136018261359a565b604082019050919050565b60006020820190508181036000830152613625816135e9565b9050919050565b600081905092915050565b600061364282612d13565b61364c818561362c565b935061365c818560208601612d2f565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061369e60058361362c565b91506136a982613668565b600582019050919050565b60006136c08285613637565b91506136cc8284613637565b91506136d782613691565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061371d82612dc5565b915061372883612dc5565b92508282019050808211156137405761373f6136e3565b5b92915050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b600061377c602083612d1e565b915061378782613746565b602082019050919050565b600060208201905081810360008301526137ab8161376f565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b600061380e602283612d1e565b9150613819826137b2565b604082019050919050565b6000602082019050818103600083015261383d81613801565b9050919050565b7f457863656564732077616c6c6574206c696d6974000000000000000000000000600082015250565b600061387a601483612d1e565b915061388582613844565b602082019050919050565b600060208201905081810360008301526138a98161386d565b9050919050565b60006138bb82612dc5565b91506138c683612dc5565b92508282026138d481612dc5565b915082820484148315176138eb576138ea6136e3565b5b5092915050565b7f56616c75652073656e74206973206e6f7420636f727265637400000000000000600082015250565b6000613928601983612d1e565b9150613933826138f2565b602082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f53616c65206d7573742062652061637469766520746f20636c61696d2066726560008201527f65206d696e740000000000000000000000000000000000000000000000000000602082015250565b60006139ba602683612d1e565b91506139c58261395e565b604082019050919050565b600060208201905081810360008301526139e9816139ad565b9050919050565b7f46726565206d696e7420616c726561647920636c61696d656400000000000000600082015250565b6000613a26601983612d1e565b9150613a31826139f0565b602082019050919050565b60006020820190508181036000830152613a5581613a19565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613ab8602683612d1e565b9150613ac382613a5c565b604082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b24602083612d1e565b9150613b2f82613aee565b602082019050919050565b60006020820190508181036000830152613b5381613b17565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613b8182613b5a565b613b8b8185613b65565b9350613b9b818560208601612d2f565b613ba481612d59565b840191505092915050565b6000608082019050613bc46000830187612e5a565b613bd16020830186612e5a565b613bde6040830185612ef0565b8181036060830152613bf08184613b76565b905095945050505050565b600081519050613c0a81612c2b565b92915050565b600060208284031215613c2657613c25612bf5565b5b6000613c3484828501613bfb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c7782612dc5565b9150613c8283612dc5565b925082613c9257613c91613c3d565b5b828206905092915050565b6000613ca882612dc5565b9150613cb383612dc5565b925082613cc357613cc2613c3d565b5b828204905092915050565b6000613cd982612dc5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613d0b57613d0a6136e3565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613d5082612dc5565b9150613d5b83612dc5565b9250828203905081811115613d7357613d726136e3565b5b9291505056fea264697066735822122053b35801d21b9391e6369fc65ba747e59d11c4669c6e561c57f5000c1b68101d64736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000071afd498d00000000000000000000000000000000000000000000000000000000000000001a0a0000000000000000000000000000000000000000000000000000000000000008476f6f644c696665000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447444c46000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569677a6a717372736d636c79746e736a7079716734676b6e37736b3370323475713773733570636b676a7233696f326d676f756f342f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): GoodLife
Arg [1] : _symbol (string): GDLF
Arg [2] : _uri (string): ipfs://bafybeigzjqsrsmclytnsjpyqg4gkn7sk3p24uq7ss5pckgjr3io2mgouo4/
Arg [3] : limit (uint256): 10
Arg [4] : price (uint256): 2000000000000000
Arg [5] : maxSupply (uint256): 6666

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 00000000000000000000000000000000000000000000000000071afd498d0000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000001a0a
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 476f6f644c696665000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 47444c4600000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [11] : 697066733a2f2f62616679626569677a6a717372736d636c79746e736a707971
Arg [12] : 6734676b6e37736b3370323475713773733570636b676a7233696f326d676f75
Arg [13] : 6f342f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

69346:5797:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25829:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72659:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29024:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30624:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30187:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25078:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72933:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31612:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69468:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69574:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72367:145;;;;;;;;;;;;;:::i;:::-;;31853:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73565:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28832:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69607:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26248:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67817:103;;;;;;;;;;;;;:::i;:::-;;67169:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29193:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69540:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30941:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32109:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74492:648;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72046:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70748:503;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71259:527;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31331:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69391:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73322:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73218:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68075:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25829:355;25976:4;26033:25;26018:40;;;:11;:40;;;;:105;;;;26090:33;26075:48;;;:11;:48;;;;26018:105;:158;;;;26140:36;26164:11;26140:23;:36::i;:::-;26018:158;25998:178;;25829:355;;;:::o;72659:101::-;67055:13;:11;:13::i;:::-;72744:8:::1;72729:12;;:23;;;;;;;;;;;;;;;;;;72659:101:::0;:::o;29024:100::-;29078:13;29111:5;29104:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29024:100;:::o;30624:245::-;30728:7;30758:16;30766:7;30758;:16::i;:::-;30753:64;;30783:34;;;;;;;;;;;;;;30753:64;30837:15;:24;30853:7;30837:24;;;;;;;;;;;;;;;;;;;;;30830:31;;30624:245;;;:::o;30187:371::-;30260:13;30276:24;30292:7;30276:15;:24::i;:::-;30260:40;;30321:5;30315:11;;:2;:11;;;30311:48;;30335:24;;;;;;;;;;;;;;30311:48;30392:5;30376:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;30402:37;30419:5;30426:12;:10;:12::i;:::-;30402:16;:37::i;:::-;30401:38;30376:63;30372:138;;;30463:35;;;;;;;;;;;;;;30372:138;30522:28;30531:2;30535:7;30544:5;30522:8;:28::i;:::-;30249:309;30187:371;;:::o;25078:303::-;25122:7;25347:15;:13;:15::i;:::-;25332:12;;25316:13;;:28;:46;25309:53;;25078:303;:::o;72933:98::-;67055:13;:11;:13::i;:::-;73018:5:::1;73003:12;:20;;;;72933:98:::0;:::o;31612:170::-;31746:28;31756:4;31762:2;31766:7;31746:9;:28::i;:::-;31612:170;;;:::o;69468:35::-;;;:::o;69574:26::-;;;;:::o;72367:145::-;67055:13;:11;:13::i;:::-;72417:15:::1;72435:21;72417:39;;72475:10;72467:28;;:37;72496:7;72467:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;72406:106;72367:145::o:0;31853:185::-;31991:39;32008:4;32014:2;32018:7;31991:39;;;;;;;;;;;;:16;:39::i;:::-;31853:185;;;:::o;73565:109::-;67055:13;:11;:13::i;:::-;73658:8:::1;73639:16;:27;;;;;;:::i;:::-;;73565:109:::0;:::o;28832:125::-;28896:7;28923:21;28936:7;28923:12;:21::i;:::-;:26;;;28916:33;;28832:125;;;:::o;69607:44::-;;;;;;;;;;;;;;;;;:::o;26248:206::-;26312:7;26353:1;26336:19;;:5;:19;;;26332:60;;26364:28;;;;;;;;;;;;;;26332:60;26418:12;:19;26431:5;26418:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26410:36;;26403:43;;26248:206;;;:::o;67817:103::-;67055:13;:11;:13::i;:::-;67882:30:::1;67909:1;67882:18;:30::i;:::-;67817:103::o:0;67169:87::-;67215:7;67242:6;;;;;;;;;;;67235:13;;67169:87;:::o;29193:104::-;29249:13;29282:7;29275:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29193:104;:::o;69540:27::-;;;;:::o;30941:319::-;31084:12;:10;:12::i;:::-;31072:24;;:8;:24;;;31068:54;;31105:17;;;;;;;;;;;;;;31068:54;31180:8;31135:18;:32;31154:12;:10;:12::i;:::-;31135:32;;;;;;;;;;;;;;;:42;31168:8;31135:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31233:8;31204:48;;31219:12;:10;:12::i;:::-;31204:48;;;31243:8;31204:48;;;;;;:::i;:::-;;;;;;;;30941:319;;:::o;32109:406::-;32276:28;32286:4;32292:2;32296:7;32276:9;:28::i;:::-;32333:15;:2;:13;;;:15::i;:::-;:89;;;;;32366:56;32397:4;32403:2;32407:7;32416:5;32366:30;:56::i;:::-;32365:57;32333:89;32315:193;;;32456:40;;;;;;;;;;;;;;32315:193;32109:406;;;;:::o;74492:648::-;74565:13;74599:16;74607:7;74599;:16::i;:::-;74591:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;74724:24;74751:21;74764:7;74751:12;:21::i;:::-;74724:48;;74814:21;74838:10;:8;:10::i;:::-;74814:34;;74953:1;74934:7;74928:21;:26;74924:68;;74971:9;;;;;;;;;;;;;;;;;;74924:68;75102:7;75111:10;75085:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75071:61;;;;74492:648;;;;:::o;72046:222::-;67055:13;:11;:13::i;:::-;72121:10:::1;72134:13;:11;:13::i;:::-;72121:26;;72181:10;72171:6;72166:2;:11;;;;:::i;:::-;:25;;72158:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;72239:21;72249:2;72253:6;72239:9;:21::i;:::-;72110:158;72046:222:::0;;:::o;70748:503::-;70812:10;70825:13;:11;:13::i;:::-;70812:26;;70849:14;70866:25;70880:10;70866:13;:25::i;:::-;70849:42;;70912:12;;;;;;;;;;;70904:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;71001:11;;70991:6;70982;:15;;;;:::i;:::-;:30;;70974:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;71071:10;71061:6;71056:2;:11;;;;:::i;:::-;:25;;71048:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;71162:9;71152:6;71137:12;;:21;;;;:::i;:::-;:34;71129:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;71214:29;71224:10;71236:6;71214:9;:29::i;:::-;70801:450;;70748:503;:::o;71259:527::-;71315:10;71328:13;:11;:13::i;:::-;71315:26;;71352:14;71369:25;71383:10;71369:13;:25::i;:::-;71352:42;;71415:12;;;;;;;;;;;71407:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;71514:1;71489:9;:21;71499:10;71489:21;;;;;;;;;;;;;;;;:26;71481:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;71583:11;;71573:6;71564;:15;;;;:::i;:::-;:30;;71556:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;71653:10;71643:6;71638:2;:11;;;;:::i;:::-;:25;;71630:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;71713:29;71723:10;71735:6;71713:9;:29::i;:::-;71777:1;71753:9;:21;71763:10;71753:21;;;;;;;;;;;;;;;:25;;;;71304:482;;71259:527;:::o;31331:214::-;31473:4;31502:18;:25;31521:5;31502:25;;;;;;;;;;;;;;;:35;31528:8;31502:35;;;;;;;;;;;;;;;;;;;;;;;;;31495:42;;31331:214;;;;:::o;69391:32::-;;;;;;;;;;;;;:::o;73322:92::-;73386:20;73392:7;73401:4;73386:5;:20::i;:::-;73322:92;:::o;73218:96::-;67055:13;:11;:13::i;:::-;73301:5:::1;73287:11;:19;;;;73218:96:::0;:::o;68075:201::-;67055:13;:11;:13::i;:::-;68184:1:::1;68164:22;;:8;:22;;::::0;68156:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;68240:28;68259:8;68240:18;:28::i;:::-;68075:201:::0;:::o;3741:326::-;3801:4;4058:1;4036:7;:19;;;:23;4029:30;;3741:326;;;:::o;13826:157::-;13911:4;13950:25;13935:40;;;:11;:40;;;;13928:47;;13826:157;;;:::o;67334:132::-;67409:12;:10;:12::i;:::-;67398:23;;:7;:5;:7::i;:::-;:23;;;67390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67334:132::o;32770:213::-;32827:4;32883:7;32864:15;:13;:15::i;:::-;:26;;:66;;;;;32917:13;;32907:7;:23;32864:66;:111;;;;;32948:11;:20;32960:7;32948:20;;;;;;;;;;;:27;;;;;;;;;;;;32947:28;32864:111;32844:131;;32770:213;;;:::o;21345:98::-;21398:7;21425:10;21418:17;;21345:98;:::o;41157:196::-;41299:2;41272:15;:24;41288:7;41272:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41337:7;41333:2;41317:28;;41326:5;41317:28;;;;;;;;;;;;41157:196;;;:::o;24852:92::-;24908:7;24852:92;:::o;36100:2130::-;36215:35;36253:21;36266:7;36253:12;:21::i;:::-;36215:59;;36313:4;36291:26;;:13;:18;;;:26;;;36287:67;;36326:28;;;;;;;;;;;;;;36287:67;36367:22;36409:4;36393:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;36430:36;36447:4;36453:12;:10;:12::i;:::-;36430:16;:36::i;:::-;36393:73;:126;;;;36507:12;:10;:12::i;:::-;36483:36;;:20;36495:7;36483:11;:20::i;:::-;:36;;;36393:126;36367:153;;36538:17;36533:66;;36564:35;;;;;;;;;;;;;;36533:66;36628:1;36614:16;;:2;:16;;;36610:52;;36639:23;;;;;;;;;;;;;;36610:52;36675:43;36697:4;36703:2;36707:7;36716:1;36675:21;:43::i;:::-;36783:35;36800:1;36804:7;36813:4;36783:8;:35::i;:::-;37144:1;37114:12;:18;37127:4;37114:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37188:1;37160:12;:16;37173:2;37160:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37206:31;37240:11;:20;37252:7;37240:20;;;;;;;;;;;37206:54;;37291:2;37275:8;:13;;;:18;;;;;;;;;;;;;;;;;;37341:15;37308:8;:23;;;:49;;;;;;;;;;;;;;;;;;37609:19;37641:1;37631:7;:11;37609:33;;37657:31;37691:11;:24;37703:11;37691:24;;;;;;;;;;;37657:58;;37759:1;37734:27;;:8;:13;;;;;;;;;;;;:27;;;37730:384;;37944:13;;37929:11;:28;37925:174;;37998:4;37982:8;:13;;;:20;;;;;;;;;;;;;;;;;;38051:13;:28;;;38025:8;:23;;;:54;;;;;;;;;;;;;;;;;;37925:174;37730:384;37089:1036;;;38161:7;38157:2;38142:27;;38151:4;38142:27;;;;;;;;;;;;38180:42;38201:4;38207:2;38211:7;38220:1;38180:20;:42::i;:::-;36204:2026;;36100:2130;;;:::o;27629:1141::-;27718:21;;:::i;:::-;27757:12;27772:7;27757:22;;27840:4;27821:15;:13;:15::i;:::-;:23;;:47;;;;;27855:13;;27848:4;:20;27821:47;27817:886;;;27889:31;27923:11;:17;27935:4;27923:17;;;;;;;;;;;27889:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27964:9;:16;;;27959:729;;28035:1;28009:28;;:9;:14;;;:28;;;28005:101;;28073:9;28066:16;;;;;;28005:101;28408:261;28415:4;28408:261;;;28448:6;;;;;;;;28493:11;:17;28505:4;28493:17;;;;;;;;;;;28481:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28567:1;28541:28;;:9;:14;;;:28;;;28537:109;;28609:9;28602:16;;;;;;28537:109;28408:261;;;27959:729;27870:833;27817:886;28731:31;;;;;;;;;;;;;;27629:1141;;;;:::o;68436:191::-;68510:16;68529:6;;;;;;;;;;;68510:25;;68555:8;68546:6;;:17;;;;;;;;;;;;;;;;;;68610:8;68579:40;;68600:8;68579:40;;;;;;;;;;;;68499:128;68436:191;:::o;41845:772::-;42008:4;42058:2;42042:36;;;42097:12;:10;:12::i;:::-;42128:4;42151:7;42177:5;42042:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42025:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42385:1;42368:6;:13;:18;42364:235;;42414:40;;;;;;;;;;;;;;42364:235;42557:6;42551:13;42542:6;42538:2;42534:15;42527:38;42025:585;42263:45;;;42253:55;;;:6;:55;;;;42246:62;;;41845:772;;;;;;:::o;73799:683::-;73855:17;73894:1;73889;:6;73885:49;;73912:10;;;;;;;;;;;;;;;;;;;;;73885:49;73946:17;73966:3;73946:23;;73980:21;74014:9;74004:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73980:44;;74035:9;74059:153;74071:1;74066;:6;74059:153;;74089:17;74113:2;74109:1;:6;;;;:::i;:::-;74089:26;;74138:2;74134:1;:6;;;;:::i;:::-;74130:10;;74189:9;74184:2;:14;;;;:::i;:::-;74171:29;;74155:8;74164:3;;;;;:::i;:::-;;;74155:13;;;;;;;;:::i;:::-;;;;;:45;;;;;;;;;;;74074:138;74059:153;;;74222:14;74249:1;74239:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74222:29;;74307:9;74302:96;74326:1;74322;:5;74302:96;;;74356:8;74373:1;74369;74365;:5;;;;:::i;:::-;:9;;;;:::i;:::-;74356:19;;;;;;;;:::i;:::-;;;;;;;;;;74349:1;74351;74349:4;;;;;;;;:::i;:::-;;;;;:26;;;;;;;;;;;74329:3;;;;;:::i;:::-;;;;74302:96;;;;74421:1;74408:15;;73874:608;;;;73799:683;;;;:::o;73682:109::-;73734:13;73767:16;73760:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73682:109;:::o;32991:104::-;33060:27;33070:2;33074:8;33060:27;;;;;;;;;;;;:9;:27::i;:::-;32991:104;;:::o;26536:137::-;26597:7;26632:12;:19;26645:5;26632:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;26624:41;;26617:48;;26536:137;;;:::o;38631:2408::-;38711:35;38749:21;38762:7;38749:12;:21::i;:::-;38711:59;;38783:12;38798:13;:18;;;38783:33;;38833:13;38829:290;;;38863:22;38905:4;38889:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;38930:36;38947:4;38953:12;:10;:12::i;:::-;38930:16;:36::i;:::-;38889:77;:134;;;;39011:12;:10;:12::i;:::-;38987:36;;:20;38999:7;38987:11;:20::i;:::-;:36;;;38889:134;38863:161;;39046:17;39041:66;;39072:35;;;;;;;;;;;;;;39041:66;38848:271;38829:290;39131:51;39153:4;39167:1;39171:7;39180:1;39131:21;:51::i;:::-;39247:35;39264:1;39268:7;39277:4;39247:8;:35::i;:::-;39578:31;39612:12;:18;39625:4;39612:18;;;;;;;;;;;;;;;39578:52;;39668:1;39645:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39712:1;39684:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39812:31;39846:11;:20;39858:7;39846:20;;;;;;;;;;;39812:54;;39897:4;39881:8;:13;;;:20;;;;;;;;;;;;;;;;;;39949:15;39916:8;:23;;;:49;;;;;;;;;;;;;;;;;;39998:4;39980:8;:15;;;:22;;;;;;;;;;;;;;;;;;40250:19;40282:1;40272:7;:11;40250:33;;40298:31;40332:11;:24;40344:11;40332:24;;;;;;;;;;;40298:58;;40400:1;40375:27;;:8;:13;;;;;;;;;;;;:27;;;40371:384;;40585:13;;40570:11;:28;40566:174;;40639:4;40623:8;:13;;;:20;;;;;;;;;;;;;;;;;;40692:13;:28;;;40666:8;:23;;;:54;;;;;;;;;;;;;;;;;;40566:174;40371:384;39553:1213;;;;40810:7;40806:1;40783:35;;40792:4;40783:35;;;;;;;;;;;;40829:50;40850:4;40864:1;40868:7;40877:1;40829:20;:50::i;:::-;41006:12;;:14;;;;;;;;;;;;;38700:2339;;38631:2408;;:::o;43265:159::-;;;;;:::o;44083:158::-;;;;;:::o;33458:163::-;33581:32;33587:2;33591:8;33601:5;33608:4;33581:5;:32::i;:::-;33458:163;;;:::o;33880:1966::-;34019:20;34042:13;;34019:36;;34084:1;34070:16;;:2;:16;;;34066:48;;34095:19;;;;;;;;;;;;;;34066:48;34141:1;34129:8;:13;34125:44;;34151:18;;;;;;;;;;;;;;34125:44;34182:61;34212:1;34216:2;34220:12;34234:8;34182:21;:61::i;:::-;34555:8;34520:12;:16;34533:2;34520:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34619:8;34579:12;:16;34592:2;34579:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34678:2;34645:11;:25;34657:12;34645:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34745:15;34695:11;:25;34707:12;34695:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34778:20;34801:12;34778:35;;34828:11;34857:8;34842:12;:23;34828:37;;34886:4;:23;;;;;34894:15;:2;:13;;;:15::i;:::-;34886:23;34882:832;;;34930:505;34986:12;34982:2;34961:38;;34978:1;34961:38;;;;;;;;;;;;35053:212;35122:1;35155:2;35188:14;;;;;;35233:5;35053:30;:212::i;:::-;35022:365;;35323:40;;;;;;;;;;;;;;35022:365;35430:3;35414:12;:19;34930:505;;35516:12;35499:13;;:29;35495:43;;35530:8;;;35495:43;34882:832;;;35579:120;35635:14;;;;;;35631:2;35610:40;;35627:1;35610:40;;;;;;;;;;;;35694:3;35678:12;:19;35579:120;;34882:832;35744:12;35728:13;:28;;;;34495:1273;;35778:60;35807:1;35811:2;35815:12;35829:8;35778:20;:60::i;:::-;34008:1838;33880:1966;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:246::-;2469:1;2479:113;2493:6;2490:1;2487:13;2479:113;;;2578:1;2573:3;2569:11;2563:18;2559:1;2554:3;2550:11;2543:39;2515:2;2512:1;2508:10;2503:15;;2479:113;;;2626:1;2617:6;2612:3;2608:16;2601:27;2450:184;2388:246;;;:::o;2640:102::-;2681:6;2732:2;2728:7;2723:2;2716:5;2712:14;2708:28;2698:38;;2640:102;;;:::o;2748:377::-;2836:3;2864:39;2897:5;2864:39;:::i;:::-;2919:71;2983:6;2978:3;2919:71;:::i;:::-;2912:78;;2999:65;3057:6;3052:3;3045:4;3038:5;3034:16;2999:65;:::i;:::-;3089:29;3111:6;3089:29;:::i;:::-;3084:3;3080:39;3073:46;;2840:285;2748:377;;;;:::o;3131:313::-;3244:4;3282:2;3271:9;3267:18;3259:26;;3331:9;3325:4;3321:20;3317:1;3306:9;3302:17;3295:47;3359:78;3432:4;3423:6;3359:78;:::i;:::-;3351:86;;3131:313;;;;:::o;3450:77::-;3487:7;3516:5;3505:16;;3450:77;;;:::o;3533:122::-;3606:24;3624:5;3606:24;:::i;:::-;3599:5;3596:35;3586:63;;3645:1;3642;3635:12;3586:63;3533:122;:::o;3661:139::-;3707:5;3745:6;3732:20;3723:29;;3761:33;3788:5;3761:33;:::i;:::-;3661:139;;;;:::o;3806:329::-;3865:6;3914:2;3902:9;3893:7;3889:23;3885:32;3882:119;;;3920:79;;:::i;:::-;3882:119;4040:1;4065:53;4110:7;4101:6;4090:9;4086:22;4065:53;:::i;:::-;4055:63;;4011:117;3806:329;;;;:::o;4141:126::-;4178:7;4218:42;4211:5;4207:54;4196:65;;4141:126;;;:::o;4273:96::-;4310:7;4339:24;4357:5;4339:24;:::i;:::-;4328:35;;4273:96;;;:::o;4375:118::-;4462:24;4480:5;4462:24;:::i;:::-;4457:3;4450:37;4375:118;;:::o;4499:222::-;4592:4;4630:2;4619:9;4615:18;4607:26;;4643:71;4711:1;4700:9;4696:17;4687:6;4643:71;:::i;:::-;4499:222;;;;:::o;4727:122::-;4800:24;4818:5;4800:24;:::i;:::-;4793:5;4790:35;4780:63;;4839:1;4836;4829:12;4780:63;4727:122;:::o;4855:139::-;4901:5;4939:6;4926:20;4917:29;;4955:33;4982:5;4955:33;:::i;:::-;4855:139;;;;:::o;5000:474::-;5068:6;5076;5125:2;5113:9;5104:7;5100:23;5096:32;5093:119;;;5131:79;;:::i;:::-;5093:119;5251:1;5276:53;5321:7;5312:6;5301:9;5297:22;5276:53;:::i;:::-;5266:63;;5222:117;5378:2;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5349:118;5000:474;;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:141::-;12981:4;13004:3;12996:11;;13027:3;13024:1;13017:14;13061:4;13058:1;13048:18;13040:26;;12932:141;;;:::o;13079:93::-;13116:6;13163:2;13158;13151:5;13147:14;13143:23;13133:33;;13079:93;;;:::o;13178:107::-;13222:8;13272:5;13266:4;13262:16;13241:37;;13178:107;;;;:::o;13291:393::-;13360:6;13410:1;13398:10;13394:18;13433:97;13463:66;13452:9;13433:97;:::i;:::-;13551:39;13581:8;13570:9;13551:39;:::i;:::-;13539:51;;13623:4;13619:9;13612:5;13608:21;13599:30;;13672:4;13662:8;13658:19;13651:5;13648:30;13638:40;;13367:317;;13291:393;;;;;:::o;13690:60::-;13718:3;13739:5;13732:12;;13690:60;;;:::o;13756:142::-;13806:9;13839:53;13857:34;13866:24;13884:5;13866:24;:::i;:::-;13857:34;:::i;:::-;13839:53;:::i;:::-;13826:66;;13756:142;;;:::o;13904:75::-;13947:3;13968:5;13961:12;;13904:75;;;:::o;13985:269::-;14095:39;14126:7;14095:39;:::i;:::-;14156:91;14205:41;14229:16;14205:41;:::i;:::-;14197:6;14190:4;14184:11;14156:91;:::i;:::-;14150:4;14143:105;14061:193;13985:269;;;:::o;14260:73::-;14305:3;14260:73;:::o;14339:189::-;14416:32;;:::i;:::-;14457:65;14515:6;14507;14501:4;14457:65;:::i;:::-;14392:136;14339:189;;:::o;14534:186::-;14594:120;14611:3;14604:5;14601:14;14594:120;;;14665:39;14702:1;14695:5;14665:39;:::i;:::-;14638:1;14631:5;14627:13;14618:22;;14594:120;;;14534:186;;:::o;14726:543::-;14827:2;14822:3;14819:11;14816:446;;;14861:38;14893:5;14861:38;:::i;:::-;14945:29;14963:10;14945:29;:::i;:::-;14935:8;14931:44;15128:2;15116:10;15113:18;15110:49;;;15149:8;15134:23;;15110:49;15172:80;15228:22;15246:3;15228:22;:::i;:::-;15218:8;15214:37;15201:11;15172:80;:::i;:::-;14831:431;;14816:446;14726:543;;;:::o;15275:117::-;15329:8;15379:5;15373:4;15369:16;15348:37;;15275:117;;;;:::o;15398:169::-;15442:6;15475:51;15523:1;15519:6;15511:5;15508:1;15504:13;15475:51;:::i;:::-;15471:56;15556:4;15550;15546:15;15536:25;;15449:118;15398:169;;;;:::o;15572:295::-;15648:4;15794:29;15819:3;15813:4;15794:29;:::i;:::-;15786:37;;15856:3;15853:1;15849:11;15843:4;15840:21;15832:29;;15572:295;;;;:::o;15872:1395::-;15989:37;16022:3;15989:37;:::i;:::-;16091:18;16083:6;16080:30;16077:56;;;16113:18;;:::i;:::-;16077:56;16157:38;16189:4;16183:11;16157:38;:::i;:::-;16242:67;16302:6;16294;16288:4;16242:67;:::i;:::-;16336:1;16360:4;16347:17;;16392:2;16384:6;16381:14;16409:1;16404:618;;;;17066:1;17083:6;17080:77;;;17132:9;17127:3;17123:19;17117:26;17108:35;;17080:77;17183:67;17243:6;17236:5;17183:67;:::i;:::-;17177:4;17170:81;17039:222;16374:887;;16404:618;16456:4;16452:9;16444:6;16440:22;16490:37;16522:4;16490:37;:::i;:::-;16549:1;16563:208;16577:7;16574:1;16571:14;16563:208;;;16656:9;16651:3;16647:19;16641:26;16633:6;16626:42;16707:1;16699:6;16695:14;16685:24;;16754:2;16743:9;16739:18;16726:31;;16600:4;16597:1;16593:12;16588:17;;16563:208;;;16799:6;16790:7;16787:19;16784:179;;;16857:9;16852:3;16848:19;16842:26;16900:48;16942:4;16934:6;16930:17;16919:9;16900:48;:::i;:::-;16892:6;16885:64;16807:156;16784:179;17009:1;17005;16997:6;16993:14;16989:22;16983:4;16976:36;16411:611;;;16374:887;;15964:1303;;;15872:1395;;:::o;17273:234::-;17413:34;17409:1;17401:6;17397:14;17390:58;17482:17;17477:2;17469:6;17465:15;17458:42;17273:234;:::o;17513:366::-;17655:3;17676:67;17740:2;17735:3;17676:67;:::i;:::-;17669:74;;17752:93;17841:3;17752:93;:::i;:::-;17870:2;17865:3;17861:12;17854:19;;17513:366;;;:::o;17885:419::-;18051:4;18089:2;18078:9;18074:18;18066:26;;18138:9;18132:4;18128:20;18124:1;18113:9;18109:17;18102:47;18166:131;18292:4;18166:131;:::i;:::-;18158:139;;17885:419;;;:::o;18310:148::-;18412:11;18449:3;18434:18;;18310:148;;;;:::o;18464:390::-;18570:3;18598:39;18631:5;18598:39;:::i;:::-;18653:89;18735:6;18730:3;18653:89;:::i;:::-;18646:96;;18751:65;18809:6;18804:3;18797:4;18790:5;18786:16;18751:65;:::i;:::-;18841:6;18836:3;18832:16;18825:23;;18574:280;18464:390;;;;:::o;18860:155::-;19000:7;18996:1;18988:6;18984:14;18977:31;18860:155;:::o;19021:400::-;19181:3;19202:84;19284:1;19279:3;19202:84;:::i;:::-;19195:91;;19295:93;19384:3;19295:93;:::i;:::-;19413:1;19408:3;19404:11;19397:18;;19021:400;;;:::o;19427:701::-;19708:3;19730:95;19821:3;19812:6;19730:95;:::i;:::-;19723:102;;19842:95;19933:3;19924:6;19842:95;:::i;:::-;19835:102;;19954:148;20098:3;19954:148;:::i;:::-;19947:155;;20119:3;20112:10;;19427:701;;;;;:::o;20134:180::-;20182:77;20179:1;20172:88;20279:4;20276:1;20269:15;20303:4;20300:1;20293:15;20320:191;20360:3;20379:20;20397:1;20379:20;:::i;:::-;20374:25;;20413:20;20431:1;20413:20;:::i;:::-;20408:25;;20456:1;20453;20449:9;20442:16;;20477:3;20474:1;20471:10;20468:36;;;20484:18;;:::i;:::-;20468:36;20320:191;;;;:::o;20517:182::-;20657:34;20653:1;20645:6;20641:14;20634:58;20517:182;:::o;20705:366::-;20847:3;20868:67;20932:2;20927:3;20868:67;:::i;:::-;20861:74;;20944:93;21033:3;20944:93;:::i;:::-;21062:2;21057:3;21053:12;21046:19;;20705:366;;;:::o;21077:419::-;21243:4;21281:2;21270:9;21266:18;21258:26;;21330:9;21324:4;21320:20;21316:1;21305:9;21301:17;21294:47;21358:131;21484:4;21358:131;:::i;:::-;21350:139;;21077:419;;;:::o;21502:221::-;21642:34;21638:1;21630:6;21626:14;21619:58;21711:4;21706:2;21698:6;21694:15;21687:29;21502:221;:::o;21729:366::-;21871:3;21892:67;21956:2;21951:3;21892:67;:::i;:::-;21885:74;;21968:93;22057:3;21968:93;:::i;:::-;22086:2;22081:3;22077:12;22070:19;;21729:366;;;:::o;22101:419::-;22267:4;22305:2;22294:9;22290:18;22282:26;;22354:9;22348:4;22344:20;22340:1;22329:9;22325:17;22318:47;22382:131;22508:4;22382:131;:::i;:::-;22374:139;;22101:419;;;:::o;22526:170::-;22666:22;22662:1;22654:6;22650:14;22643:46;22526:170;:::o;22702:366::-;22844:3;22865:67;22929:2;22924:3;22865:67;:::i;:::-;22858:74;;22941:93;23030:3;22941:93;:::i;:::-;23059:2;23054:3;23050:12;23043:19;;22702:366;;;:::o;23074:419::-;23240:4;23278:2;23267:9;23263:18;23255:26;;23327:9;23321:4;23317:20;23313:1;23302:9;23298:17;23291:47;23355:131;23481:4;23355:131;:::i;:::-;23347:139;;23074:419;;;:::o;23499:410::-;23539:7;23562:20;23580:1;23562:20;:::i;:::-;23557:25;;23596:20;23614:1;23596:20;:::i;:::-;23591:25;;23651:1;23648;23644:9;23673:30;23691:11;23673:30;:::i;:::-;23662:41;;23852:1;23843:7;23839:15;23836:1;23833:22;23813:1;23806:9;23786:83;23763:139;;23882:18;;:::i;:::-;23763:139;23547:362;23499:410;;;;:::o;23915:175::-;24055:27;24051:1;24043:6;24039:14;24032:51;23915:175;:::o;24096:366::-;24238:3;24259:67;24323:2;24318:3;24259:67;:::i;:::-;24252:74;;24335:93;24424:3;24335:93;:::i;:::-;24453:2;24448:3;24444:12;24437:19;;24096:366;;;:::o;24468:419::-;24634:4;24672:2;24661:9;24657:18;24649:26;;24721:9;24715:4;24711:20;24707:1;24696:9;24692:17;24685:47;24749:131;24875:4;24749:131;:::i;:::-;24741:139;;24468:419;;;:::o;24893:225::-;25033:34;25029:1;25021:6;25017:14;25010:58;25102:8;25097:2;25089:6;25085:15;25078:33;24893:225;:::o;25124:366::-;25266:3;25287:67;25351:2;25346:3;25287:67;:::i;:::-;25280:74;;25363:93;25452:3;25363:93;:::i;:::-;25481:2;25476:3;25472:12;25465:19;;25124:366;;;:::o;25496:419::-;25662:4;25700:2;25689:9;25685:18;25677:26;;25749:9;25743:4;25739:20;25735:1;25724:9;25720:17;25713:47;25777:131;25903:4;25777:131;:::i;:::-;25769:139;;25496:419;;;:::o;25921:175::-;26061:27;26057:1;26049:6;26045:14;26038:51;25921:175;:::o;26102:366::-;26244:3;26265:67;26329:2;26324:3;26265:67;:::i;:::-;26258:74;;26341:93;26430:3;26341:93;:::i;:::-;26459:2;26454:3;26450:12;26443:19;;26102:366;;;:::o;26474:419::-;26640:4;26678:2;26667:9;26663:18;26655:26;;26727:9;26721:4;26717:20;26713:1;26702:9;26698:17;26691:47;26755:131;26881:4;26755:131;:::i;:::-;26747:139;;26474:419;;;:::o;26899:225::-;27039:34;27035:1;27027:6;27023:14;27016:58;27108:8;27103:2;27095:6;27091:15;27084:33;26899:225;:::o;27130:366::-;27272:3;27293:67;27357:2;27352:3;27293:67;:::i;:::-;27286:74;;27369:93;27458:3;27369:93;:::i;:::-;27487:2;27482:3;27478:12;27471:19;;27130:366;;;:::o;27502:419::-;27668:4;27706:2;27695:9;27691:18;27683:26;;27755:9;27749:4;27745:20;27741:1;27730:9;27726:17;27719:47;27783:131;27909:4;27783:131;:::i;:::-;27775:139;;27502:419;;;:::o;27927:182::-;28067:34;28063:1;28055:6;28051:14;28044:58;27927:182;:::o;28115:366::-;28257:3;28278:67;28342:2;28337:3;28278:67;:::i;:::-;28271:74;;28354:93;28443:3;28354:93;:::i;:::-;28472:2;28467:3;28463:12;28456:19;;28115:366;;;:::o;28487:419::-;28653:4;28691:2;28680:9;28676:18;28668:26;;28740:9;28734:4;28730:20;28726:1;28715:9;28711:17;28704:47;28768:131;28894:4;28768:131;:::i;:::-;28760:139;;28487:419;;;:::o;28912:98::-;28963:6;28997:5;28991:12;28981:22;;28912:98;;;:::o;29016:168::-;29099:11;29133:6;29128:3;29121:19;29173:4;29168:3;29164:14;29149:29;;29016:168;;;;:::o;29190:373::-;29276:3;29304:38;29336:5;29304:38;:::i;:::-;29358:70;29421:6;29416:3;29358:70;:::i;:::-;29351:77;;29437:65;29495:6;29490:3;29483:4;29476:5;29472:16;29437:65;:::i;:::-;29527:29;29549:6;29527:29;:::i;:::-;29522:3;29518:39;29511:46;;29280:283;29190:373;;;;:::o;29569:640::-;29764:4;29802:3;29791:9;29787:19;29779:27;;29816:71;29884:1;29873:9;29869:17;29860:6;29816:71;:::i;:::-;29897:72;29965:2;29954:9;29950:18;29941:6;29897:72;:::i;:::-;29979;30047:2;30036:9;30032:18;30023:6;29979:72;:::i;:::-;30098:9;30092:4;30088:20;30083:2;30072:9;30068:18;30061:48;30126:76;30197:4;30188:6;30126:76;:::i;:::-;30118:84;;29569:640;;;;;;;:::o;30215:141::-;30271:5;30302:6;30296:13;30287:22;;30318:32;30344:5;30318:32;:::i;:::-;30215:141;;;;:::o;30362:349::-;30431:6;30480:2;30468:9;30459:7;30455:23;30451:32;30448:119;;;30486:79;;:::i;:::-;30448:119;30606:1;30631:63;30686:7;30677:6;30666:9;30662:22;30631:63;:::i;:::-;30621:73;;30577:127;30362:349;;;;:::o;30717:180::-;30765:77;30762:1;30755:88;30862:4;30859:1;30852:15;30886:4;30883:1;30876:15;30903:176;30935:1;30952:20;30970:1;30952:20;:::i;:::-;30947:25;;30986:20;31004:1;30986:20;:::i;:::-;30981:25;;31025:1;31015:35;;31030:18;;:::i;:::-;31015:35;31071:1;31068;31064:9;31059:14;;30903:176;;;;:::o;31085:185::-;31125:1;31142:20;31160:1;31142:20;:::i;:::-;31137:25;;31176:20;31194:1;31176:20;:::i;:::-;31171:25;;31215:1;31205:35;;31220:18;;:::i;:::-;31205:35;31262:1;31259;31255:9;31250:14;;31085:185;;;;:::o;31276:233::-;31315:3;31338:24;31356:5;31338:24;:::i;:::-;31329:33;;31384:66;31377:5;31374:77;31371:103;;31454:18;;:::i;:::-;31371:103;31501:1;31494:5;31490:13;31483:20;;31276:233;;;:::o;31515:180::-;31563:77;31560:1;31553:88;31660:4;31657:1;31650:15;31684:4;31681:1;31674:15;31701:194;31741:4;31761:20;31779:1;31761:20;:::i;:::-;31756:25;;31795:20;31813:1;31795:20;:::i;:::-;31790:25;;31839:1;31836;31832:9;31824:17;;31863:1;31857:4;31854:11;31851:37;;;31868:18;;:::i;:::-;31851:37;31701:194;;;;:::o

Swarm Source

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