ETH Price: $3,104.98 (+0.76%)
Gas: 4 Gwei

Token

Bitcoin Rocks By Elena (BTCBYE)
 

Overview

Max Total Supply

999 BTCBYE

Holders

698

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 BTCBYE
0x14e496779eb59dc10d7619519ceebc3b1007c7be
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:
BitcoinRocksByElena

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-21
*/

// 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;




/**
 * @author OATTTTTTTTTTT
 */

contract BitcoinRocksByElena 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); 
        }
    }

    /**
     * number of nfts to mint 
     */
    function paidMint(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 freeMint(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(amount <= 1, "Exceeds free mint 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;
    }

    /**
     * @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 tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        // 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 "";
        }

        // Return the base URI for all tokens
        return baseURI;
    }

}

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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","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"}]

60a06040526000600860146101000a81548160ff021916908315150217905550604051620045c4380380620045c4833981810160405281019062000044919062000976565b8585816002908162000057919062000cb0565b50806003908162000069919062000cb0565b506200007a6200010d60201b60201c565b6000819055505050620000a2620000966200011260201b60201c565b6200011a60201b60201c565b8360099081620000b3919062000cb0565b5081600a8190555082600b81905550806080818152505060005b60058110156200010057620000ea336001620001e060201b60201c565b8080620000f79062000dc6565b915050620000cd565b5050505050505062000fa9565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002028282604051806020016040528060008152506200020660201b60201c565b5050565b6200021b83838360016200022060201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036200028d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403620002c8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002dd60008683876200061860201b60201c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015620004b55750620004b48773ffffffffffffffffffffffffffffffffffffffff166200061e60201b620014f71760201c565b5b1562000587575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200053360008884806001019550886200064160201b60201c565b6200056a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203620004bc5782600054146200058157600080fd5b620005f3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820362000588575b816000819055505050620006116000868387620007a260201b60201c565b5050505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200066f6200011260201b60201c565b8786866040518563ffffffff1660e01b815260040162000693949392919062000ec6565b6020604051808303816000875af1925050508015620006d257506040513d601f19601f82011682018060405250810190620006cf919062000f77565b60015b6200074f573d806000811462000705576040519150601f19603f3d011682016040523d82523d6000602084013e6200070a565b606091505b50600081510362000747576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200081182620007c6565b810181811067ffffffffffffffff82111715620008335762000832620007d7565b5b80604052505050565b600062000848620007a8565b905062000856828262000806565b919050565b600067ffffffffffffffff821115620008795762000878620007d7565b5b6200088482620007c6565b9050602081019050919050565b60005b83811015620008b157808201518184015260208101905062000894565b60008484015250505050565b6000620008d4620008ce846200085b565b6200083c565b905082815260208101848484011115620008f357620008f2620007c1565b5b6200090084828562000891565b509392505050565b600082601f83011262000920576200091f620007bc565b5b815162000932848260208601620008bd565b91505092915050565b6000819050919050565b62000950816200093b565b81146200095c57600080fd5b50565b600081519050620009708162000945565b92915050565b60008060008060008060c08789031215620009965762000995620007b2565b5b600087015167ffffffffffffffff811115620009b757620009b6620007b7565b5b620009c589828a0162000908565b965050602087015167ffffffffffffffff811115620009e957620009e8620007b7565b5b620009f789828a0162000908565b955050604087015167ffffffffffffffff81111562000a1b5762000a1a620007b7565b5b62000a2989828a0162000908565b945050606062000a3c89828a016200095f565b935050608062000a4f89828a016200095f565b92505060a062000a6289828a016200095f565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ac257607f821691505b60208210810362000ad85762000ad762000a7a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b427fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b03565b62000b4e868362000b03565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000b9162000b8b62000b85846200093b565b62000b66565b6200093b565b9050919050565b6000819050919050565b62000bad8362000b70565b62000bc562000bbc8262000b98565b84845462000b10565b825550505050565b600090565b62000bdc62000bcd565b62000be981848462000ba2565b505050565b5b8181101562000c115762000c0560008262000bd2565b60018101905062000bef565b5050565b601f82111562000c605762000c2a8162000ade565b62000c358462000af3565b8101602085101562000c45578190505b62000c5d62000c548562000af3565b83018262000bee565b50505b505050565b600082821c905092915050565b600062000c856000198460080262000c65565b1980831691505092915050565b600062000ca0838362000c72565b9150826002028217905092915050565b62000cbb8262000a6f565b67ffffffffffffffff81111562000cd75762000cd6620007d7565b5b62000ce3825462000aa9565b62000cf082828562000c15565b600060209050601f83116001811462000d28576000841562000d13578287015190505b62000d1f858262000c92565b86555062000d8f565b601f19841662000d388662000ade565b60005b8281101562000d625784890151825560018201915060208501945060208101905062000d3b565b8683101562000d82578489015162000d7e601f89168262000c72565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000dd3826200093b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000e085762000e0762000d97565b5b600182019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e408262000e13565b9050919050565b62000e528162000e33565b82525050565b62000e63816200093b565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000e928262000e69565b62000e9e818562000e74565b935062000eb081856020860162000891565b62000ebb81620007c6565b840191505092915050565b600060808201905062000edd600083018762000e47565b62000eec602083018662000e47565b62000efb604083018562000e58565b818103606083015262000f0f818462000e85565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000f518162000f1a565b811462000f5d57600080fd5b50565b60008151905062000f718162000f46565b92915050565b60006020828403121562000f905762000f8f620007b2565b5b600062000fa08482850162000f60565b91505092915050565b6080516135ea62000fda60003960008181610a6501528181610bef01528181610f34015261134001526135ea6000f3fe6080604052600436106101cd5760003560e01c80636d41d4fb116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c514610651578063eb8d24441461068e578063f1d5f517146106b9578063f2fde38b146106e2576101cd565b8063a22cb46514610599578063b88d4fde146105c2578063c87b56dd146105eb578063cc47a40b14610628576101cd565b80637c928fe9116100d15780637c928fe9146104ef5780638da5cb5b1461051857806395d89b41146105435780639d1b464a1461056e576101cd565b80636d41d4fb1461045e57806370a082311461049b578063715018a6146104d8576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103b357806355f804b3146103dc5780636352211e1461040557806365cde73314610442576101cd565b806323b872dd1461031d57806332cb6b0c146103465780633c8463a1146103715780633ccfd60b1461039c576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806318b20071146102f4576101cd565b806301ffc9a7146101d257806302c889891461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612619565b61070b565b6040516102069190612661565b60405180910390f35b34801561021b57600080fd5b50610236600480360381019061023191906126a8565b6107ed565b005b34801561024457600080fd5b5061024d610812565b60405161025a9190612765565b60405180910390f35b34801561026f57600080fd5b5061028a600480360381019061028591906127bd565b6108a4565b604051610297919061282b565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612872565b610920565b005b3480156102d557600080fd5b506102de610a2a565b6040516102eb91906128c1565b60405180910390f35b34801561030057600080fd5b5061031b600480360381019061031691906127bd565b610a41565b005b34801561032957600080fd5b50610344600480360381019061033f91906128dc565b610a53565b005b34801561035257600080fd5b5061035b610a63565b60405161036891906128c1565b60405180910390f35b34801561037d57600080fd5b50610386610a87565b60405161039391906128c1565b60405180910390f35b3480156103a857600080fd5b506103b1610a8d565b005b3480156103bf57600080fd5b506103da60048036038101906103d591906128dc565b610ae4565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190612a64565b610b04565b005b34801561041157600080fd5b5061042c600480360381019061042791906127bd565b610b1f565b604051610439919061282b565b60405180910390f35b61045c600480360381019061045791906127bd565b610b35565b005b34801561046a57600080fd5b5061048560048036038101906104809190612aad565b610cb9565b60405161049291906128c1565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190612aad565b610cd1565b6040516104cf91906128c1565b60405180910390f35b3480156104e457600080fd5b506104ed610da0565b005b3480156104fb57600080fd5b50610516600480360381019061051191906127bd565b610db4565b005b34801561052457600080fd5b5061052d610ff4565b60405161053a919061282b565b60405180910390f35b34801561054f57600080fd5b5061055861101e565b6040516105659190612765565b60405180910390f35b34801561057a57600080fd5b506105836110b0565b60405161059091906128c1565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612ada565b6110b6565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612bbb565b61122d565b005b3480156105f757600080fd5b50610612600480360381019061060d91906127bd565b6112a9565b60405161061f9190612765565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190612872565b61132a565b005b34801561065d57600080fd5b5061067860048036038101906106739190612c3e565b6113bb565b6040516106859190612661565b60405180910390f35b34801561069a57600080fd5b506106a361144f565b6040516106b09190612661565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db91906127bd565b611462565b005b3480156106ee57600080fd5b5061070960048036038101906107049190612aad565b611474565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e657506107e58261151a565b5b9050919050565b6107f5611584565b80600860146101000a81548160ff02191690831515021790555050565b60606002805461082190612cad565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612cad565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b60006108af82611602565b6108e5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092b82610b1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610992576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b1611650565b73ffffffffffffffffffffffffffffffffffffffff16141580156109e357506109e1816109dc611650565b6113bb565b155b15610a1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a25838383611658565b505050565b6000610a3461170a565b6001546000540303905090565b610a49611584565b80600a8190555050565b610a5e83838361170f565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b610a95611584565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ae0573d6000803e3d6000fd5b5050565b610aff8383836040518060200160405280600081525061122d565b505050565b610b0c611584565b8060099081610b1b9190612e8a565b5050565b6000610b2a82611bc3565b600001519050919050565b6000610b3f610a2a565b90506000610b4c33611e52565b9050600860149054906101000a900460ff16610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9490612fce565b60405180910390fd5b600b548184610bac919061301d565b1115610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be49061309d565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008383610c1a919061301d565b1115610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290613109565b60405180910390fd5b3483600a54610c6a9190613129565b14610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906131b7565b60405180910390fd5b610cb43384611ebc565b505050565b600c6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d38576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610da8611584565b610db26000611eda565b565b6000610dbe610a2a565b90506000610dcb33611e52565b9050600860149054906101000a900460ff16610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390613249565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e95906132b5565b60405180910390fd5b600b548184610ead919061301d565b1115610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee59061309d565b60405180910390fd5b6001831115610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613321565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008383610f5f919061301d565b1115610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790613109565b60405180910390fd5b610faa3384611ebc565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461102d90612cad565b80601f016020809104026020016040519081016040528092919081815260200182805461105990612cad565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b5050505050905090565b600a5481565b6110be611650565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611122576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061112f611650565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111dc611650565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112219190612661565b60405180910390a35050565b61123884848461170f565b6112578373ffffffffffffffffffffffffffffffffffffffff166114f7565b801561126c575061126a84848484611fa0565b155b156112a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606112b482611602565b6112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea906133b3565b60405180910390fd5b60006112fd6120f0565b905060008151036113205760405180602001604052806000815250915050611325565b809150505b919050565b611332611584565b600061133c610a2a565b90507f0000000000000000000000000000000000000000000000000000000000000000828261136b919061301d565b11156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390613109565b60405180910390fd5b6113b68383611ebc565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860149054906101000a900460ff1681565b61146a611584565b80600b8190555050565b61147c611584565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613445565b60405180910390fd5b6114f481611eda565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61158c611650565b73ffffffffffffffffffffffffffffffffffffffff166115aa610ff4565b73ffffffffffffffffffffffffffffffffffffffff1614611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f7906134b1565b60405180910390fd5b565b60008161160d61170a565b1115801561161c575060005482105b8015611649575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061171a82611bc3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611785576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117a6611650565b73ffffffffffffffffffffffffffffffffffffffff1614806117d557506117d4856117cf611650565b6113bb565b5b8061181a57506117e3611650565b73ffffffffffffffffffffffffffffffffffffffff16611802846108a4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611853576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118b9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118c68585856001612182565b6118d260008487611658565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b51576000548214611b5057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bbc8585856001612188565b5050505050565b611bcb61256a565b600082905080611bd961170a565b11158015611be8575060005481105b15611e1b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e1957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cfd578092505050611e4d565b5b600115611e1857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e13578092505050611e4d565b611cfe565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ed682826040518060200160405280600081525061218e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc6611650565b8786866040518563ffffffff1660e01b8152600401611fe89493929190613526565b6020604051808303816000875af192505050801561202457506040513d601f19601f820116820180604052508101906120219190613587565b60015b61209d573d8060008114612054576040519150601f19603f3d011682016040523d82523d6000602084013e612059565b606091505b506000815103612095576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546120ff90612cad565b80601f016020809104026020016040519081016040528092919081815260200182805461212b90612cad565b80156121785780601f1061214d57610100808354040283529160200191612178565b820191906000526020600020905b81548152906001019060200180831161215b57829003601f168201915b5050505050905090565b50505050565b50505050565b61219b83838360016121a0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361220c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612246576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122536000868387612182565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561241d575061241c8773ffffffffffffffffffffffffffffffffffffffff166114f7565b5b156124e2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124926000888480600101955088611fa0565b6124c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036124235782600054146124dd57600080fd5b61254d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036124e3575b8160008190555050506125636000868387612188565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125f6816125c1565b811461260157600080fd5b50565b600081359050612613816125ed565b92915050565b60006020828403121561262f5761262e6125b7565b5b600061263d84828501612604565b91505092915050565b60008115159050919050565b61265b81612646565b82525050565b60006020820190506126766000830184612652565b92915050565b61268581612646565b811461269057600080fd5b50565b6000813590506126a28161267c565b92915050565b6000602082840312156126be576126bd6125b7565b5b60006126cc84828501612693565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561270f5780820151818401526020810190506126f4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612737826126d5565b61274181856126e0565b93506127518185602086016126f1565b61275a8161271b565b840191505092915050565b6000602082019050818103600083015261277f818461272c565b905092915050565b6000819050919050565b61279a81612787565b81146127a557600080fd5b50565b6000813590506127b781612791565b92915050565b6000602082840312156127d3576127d26125b7565b5b60006127e1848285016127a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612815826127ea565b9050919050565b6128258161280a565b82525050565b6000602082019050612840600083018461281c565b92915050565b61284f8161280a565b811461285a57600080fd5b50565b60008135905061286c81612846565b92915050565b60008060408385031215612889576128886125b7565b5b60006128978582860161285d565b92505060206128a8858286016127a8565b9150509250929050565b6128bb81612787565b82525050565b60006020820190506128d660008301846128b2565b92915050565b6000806000606084860312156128f5576128f46125b7565b5b60006129038682870161285d565b93505060206129148682870161285d565b9250506040612925868287016127a8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129718261271b565b810181811067ffffffffffffffff821117156129905761298f612939565b5b80604052505050565b60006129a36125ad565b90506129af8282612968565b919050565b600067ffffffffffffffff8211156129cf576129ce612939565b5b6129d88261271b565b9050602081019050919050565b82818337600083830152505050565b6000612a07612a02846129b4565b612999565b905082815260208101848484011115612a2357612a22612934565b5b612a2e8482856129e5565b509392505050565b600082601f830112612a4b57612a4a61292f565b5b8135612a5b8482602086016129f4565b91505092915050565b600060208284031215612a7a57612a796125b7565b5b600082013567ffffffffffffffff811115612a9857612a976125bc565b5b612aa484828501612a36565b91505092915050565b600060208284031215612ac357612ac26125b7565b5b6000612ad18482850161285d565b91505092915050565b60008060408385031215612af157612af06125b7565b5b6000612aff8582860161285d565b9250506020612b1085828601612693565b9150509250929050565b600067ffffffffffffffff821115612b3557612b34612939565b5b612b3e8261271b565b9050602081019050919050565b6000612b5e612b5984612b1a565b612999565b905082815260208101848484011115612b7a57612b79612934565b5b612b858482856129e5565b509392505050565b600082601f830112612ba257612ba161292f565b5b8135612bb2848260208601612b4b565b91505092915050565b60008060008060808587031215612bd557612bd46125b7565b5b6000612be38782880161285d565b9450506020612bf48782880161285d565b9350506040612c05878288016127a8565b925050606085013567ffffffffffffffff811115612c2657612c256125bc565b5b612c3287828801612b8d565b91505092959194509250565b60008060408385031215612c5557612c546125b7565b5b6000612c638582860161285d565b9250506020612c748582860161285d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cc557607f821691505b602082108103612cd857612cd7612c7e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d03565b612d4a8683612d03565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d87612d82612d7d84612787565b612d62565b612787565b9050919050565b6000819050919050565b612da183612d6c565b612db5612dad82612d8e565b848454612d10565b825550505050565b600090565b612dca612dbd565b612dd5818484612d98565b505050565b5b81811015612df957612dee600082612dc2565b600181019050612ddb565b5050565b601f821115612e3e57612e0f81612cde565b612e1884612cf3565b81016020851015612e27578190505b612e3b612e3385612cf3565b830182612dda565b50505b505050565b600082821c905092915050565b6000612e6160001984600802612e43565b1980831691505092915050565b6000612e7a8383612e50565b9150826002028217905092915050565b612e93826126d5565b67ffffffffffffffff811115612eac57612eab612939565b5b612eb68254612cad565b612ec1828285612dfd565b600060209050601f831160018114612ef45760008415612ee2578287015190505b612eec8582612e6e565b865550612f54565b601f198416612f0286612cde565b60005b82811015612f2a57848901518255600182019150602085019450602081019050612f05565b86831015612f475784890151612f43601f891682612e50565b8355505b6001600288020188555050505b505050505050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fb86022836126e0565b9150612fc382612f5c565b604082019050919050565b60006020820190508181036000830152612fe781612fab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061302882612787565b915061303383612787565b925082820190508082111561304b5761304a612fee565b5b92915050565b7f457863656564732077616c6c6574206c696d6974000000000000000000000000600082015250565b60006130876014836126e0565b915061309282613051565b602082019050919050565b600060208201905081810360008301526130b68161307a565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b60006130f36020836126e0565b91506130fe826130bd565b602082019050919050565b60006020820190508181036000830152613122816130e6565b9050919050565b600061313482612787565b915061313f83612787565b925082820261314d81612787565b9150828204841483151761316457613163612fee565b5b5092915050565b7f56616c75652073656e74206973206e6f7420636f727265637400000000000000600082015250565b60006131a16019836126e0565b91506131ac8261316b565b602082019050919050565b600060208201905081810360008301526131d081613194565b9050919050565b7f53616c65206d7573742062652061637469766520746f20636c61696d2066726560008201527f65206d696e740000000000000000000000000000000000000000000000000000602082015250565b60006132336026836126e0565b915061323e826131d7565b604082019050919050565b6000602082019050818103600083015261326281613226565b9050919050565b7f46726565206d696e7420616c726561647920636c61696d656400000000000000600082015250565b600061329f6019836126e0565b91506132aa82613269565b602082019050919050565b600060208201905081810360008301526132ce81613292565b9050919050565b7f457863656564732066726565206d696e74206c696d6974000000000000000000600082015250565b600061330b6017836126e0565b9150613316826132d5565b602082019050919050565b6000602082019050818103600083015261333a816132fe565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061339d602f836126e0565b91506133a882613341565b604082019050919050565b600060208201905081810360008301526133cc81613390565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061342f6026836126e0565b915061343a826133d3565b604082019050919050565b6000602082019050818103600083015261345e81613422565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061349b6020836126e0565b91506134a682613465565b602082019050919050565b600060208201905081810360008301526134ca8161348e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134f8826134d1565b61350281856134dc565b93506135128185602086016126f1565b61351b8161271b565b840191505092915050565b600060808201905061353b600083018761281c565b613548602083018661281c565b61355560408301856128b2565b818103606083015261356781846134ed565b905095945050505050565b600081519050613581816125ed565b92915050565b60006020828403121561359d5761359c6125b7565b5b60006135ab84828501613572565b9150509291505056fea2646970667358221220bdeb178add89724b69f76d0d6143d82f2599efc8bf4a6cd64379ce1727472e1164736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000005543df729c00000000000000000000000000000000000000000000000000000000000000003e70000000000000000000000000000000000000000000000000000000000000016426974636f696e20526f636b7320427920456c656e6100000000000000000000000000000000000000000000000000000000000000000000000000000000000642544342594500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569637a32716c726274366e753636786b776261356b616266717568623236746d7a6f797664363333756f736163656c6b756f327a61000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636d41d4fb116100f7578063a22cb46511610095578063e985e9c511610064578063e985e9c514610651578063eb8d24441461068e578063f1d5f517146106b9578063f2fde38b146106e2576101cd565b8063a22cb46514610599578063b88d4fde146105c2578063c87b56dd146105eb578063cc47a40b14610628576101cd565b80637c928fe9116100d15780637c928fe9146104ef5780638da5cb5b1461051857806395d89b41146105435780639d1b464a1461056e576101cd565b80636d41d4fb1461045e57806370a082311461049b578063715018a6146104d8576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103b357806355f804b3146103dc5780636352211e1461040557806365cde73314610442576101cd565b806323b872dd1461031d57806332cb6b0c146103465780633c8463a1146103715780633ccfd60b1461039c576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806318b20071146102f4576101cd565b806301ffc9a7146101d257806302c889891461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612619565b61070b565b6040516102069190612661565b60405180910390f35b34801561021b57600080fd5b50610236600480360381019061023191906126a8565b6107ed565b005b34801561024457600080fd5b5061024d610812565b60405161025a9190612765565b60405180910390f35b34801561026f57600080fd5b5061028a600480360381019061028591906127bd565b6108a4565b604051610297919061282b565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612872565b610920565b005b3480156102d557600080fd5b506102de610a2a565b6040516102eb91906128c1565b60405180910390f35b34801561030057600080fd5b5061031b600480360381019061031691906127bd565b610a41565b005b34801561032957600080fd5b50610344600480360381019061033f91906128dc565b610a53565b005b34801561035257600080fd5b5061035b610a63565b60405161036891906128c1565b60405180910390f35b34801561037d57600080fd5b50610386610a87565b60405161039391906128c1565b60405180910390f35b3480156103a857600080fd5b506103b1610a8d565b005b3480156103bf57600080fd5b506103da60048036038101906103d591906128dc565b610ae4565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190612a64565b610b04565b005b34801561041157600080fd5b5061042c600480360381019061042791906127bd565b610b1f565b604051610439919061282b565b60405180910390f35b61045c600480360381019061045791906127bd565b610b35565b005b34801561046a57600080fd5b5061048560048036038101906104809190612aad565b610cb9565b60405161049291906128c1565b60405180910390f35b3480156104a757600080fd5b506104c260048036038101906104bd9190612aad565b610cd1565b6040516104cf91906128c1565b60405180910390f35b3480156104e457600080fd5b506104ed610da0565b005b3480156104fb57600080fd5b50610516600480360381019061051191906127bd565b610db4565b005b34801561052457600080fd5b5061052d610ff4565b60405161053a919061282b565b60405180910390f35b34801561054f57600080fd5b5061055861101e565b6040516105659190612765565b60405180910390f35b34801561057a57600080fd5b506105836110b0565b60405161059091906128c1565b60405180910390f35b3480156105a557600080fd5b506105c060048036038101906105bb9190612ada565b6110b6565b005b3480156105ce57600080fd5b506105e960048036038101906105e49190612bbb565b61122d565b005b3480156105f757600080fd5b50610612600480360381019061060d91906127bd565b6112a9565b60405161061f9190612765565b60405180910390f35b34801561063457600080fd5b5061064f600480360381019061064a9190612872565b61132a565b005b34801561065d57600080fd5b5061067860048036038101906106739190612c3e565b6113bb565b6040516106859190612661565b60405180910390f35b34801561069a57600080fd5b506106a361144f565b6040516106b09190612661565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db91906127bd565b611462565b005b3480156106ee57600080fd5b5061070960048036038101906107049190612aad565b611474565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107d657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107e657506107e58261151a565b5b9050919050565b6107f5611584565b80600860146101000a81548160ff02191690831515021790555050565b60606002805461082190612cad565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612cad565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b60006108af82611602565b6108e5576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092b82610b1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610992576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b1611650565b73ffffffffffffffffffffffffffffffffffffffff16141580156109e357506109e1816109dc611650565b6113bb565b155b15610a1a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a25838383611658565b505050565b6000610a3461170a565b6001546000540303905090565b610a49611584565b80600a8190555050565b610a5e83838361170f565b505050565b7f00000000000000000000000000000000000000000000000000000000000003e781565b600b5481565b610a95611584565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ae0573d6000803e3d6000fd5b5050565b610aff8383836040518060200160405280600081525061122d565b505050565b610b0c611584565b8060099081610b1b9190612e8a565b5050565b6000610b2a82611bc3565b600001519050919050565b6000610b3f610a2a565b90506000610b4c33611e52565b9050600860149054906101000a900460ff16610b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9490612fce565b60405180910390fd5b600b548184610bac919061301d565b1115610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be49061309d565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e78383610c1a919061301d565b1115610c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5290613109565b60405180910390fd5b3483600a54610c6a9190613129565b14610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca1906131b7565b60405180910390fd5b610cb43384611ebc565b505050565b600c6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d38576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610da8611584565b610db26000611eda565b565b6000610dbe610a2a565b90506000610dcb33611e52565b9050600860149054906101000a900460ff16610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390613249565b60405180910390fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e95906132b5565b60405180910390fd5b600b548184610ead919061301d565b1115610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee59061309d565b60405180910390fd5b6001831115610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990613321565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e78383610f5f919061301d565b1115610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790613109565b60405180910390fd5b610faa3384611ebc565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461102d90612cad565b80601f016020809104026020016040519081016040528092919081815260200182805461105990612cad565b80156110a65780601f1061107b576101008083540402835291602001916110a6565b820191906000526020600020905b81548152906001019060200180831161108957829003601f168201915b5050505050905090565b600a5481565b6110be611650565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611122576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061112f611650565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111dc611650565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112219190612661565b60405180910390a35050565b61123884848461170f565b6112578373ffffffffffffffffffffffffffffffffffffffff166114f7565b801561126c575061126a84848484611fa0565b155b156112a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606112b482611602565b6112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea906133b3565b60405180910390fd5b60006112fd6120f0565b905060008151036113205760405180602001604052806000815250915050611325565b809150505b919050565b611332611584565b600061133c610a2a565b90507f00000000000000000000000000000000000000000000000000000000000003e7828261136b919061301d565b11156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390613109565b60405180910390fd5b6113b68383611ebc565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860149054906101000a900460ff1681565b61146a611584565b80600b8190555050565b61147c611584565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613445565b60405180910390fd5b6114f481611eda565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61158c611650565b73ffffffffffffffffffffffffffffffffffffffff166115aa610ff4565b73ffffffffffffffffffffffffffffffffffffffff1614611600576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f7906134b1565b60405180910390fd5b565b60008161160d61170a565b1115801561161c575060005482105b8015611649575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061171a82611bc3565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611785576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117a6611650565b73ffffffffffffffffffffffffffffffffffffffff1614806117d557506117d4856117cf611650565b6113bb565b5b8061181a57506117e3611650565b73ffffffffffffffffffffffffffffffffffffffff16611802846108a4565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611853576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118b9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118c68585856001612182565b6118d260008487611658565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611b51576000548214611b5057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bbc8585856001612188565b5050505050565b611bcb61256a565b600082905080611bd961170a565b11158015611be8575060005481105b15611e1b576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e1957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611cfd578092505050611e4d565b5b600115611e1857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611e13578092505050611e4d565b611cfe565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611ed682826040518060200160405280600081525061218e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc6611650565b8786866040518563ffffffff1660e01b8152600401611fe89493929190613526565b6020604051808303816000875af192505050801561202457506040513d601f19601f820116820180604052508101906120219190613587565b60015b61209d573d8060008114612054576040519150601f19603f3d011682016040523d82523d6000602084013e612059565b606091505b506000815103612095576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546120ff90612cad565b80601f016020809104026020016040519081016040528092919081815260200182805461212b90612cad565b80156121785780601f1061214d57610100808354040283529160200191612178565b820191906000526020600020905b81548152906001019060200180831161215b57829003601f168201915b5050505050905090565b50505050565b50505050565b61219b83838360016121a0565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361220c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612246576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122536000868387612182565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561241d575061241c8773ffffffffffffffffffffffffffffffffffffffff166114f7565b5b156124e2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124926000888480600101955088611fa0565b6124c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036124235782600054146124dd57600080fd5b61254d565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036124e3575b8160008190555050506125636000868387612188565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6125f6816125c1565b811461260157600080fd5b50565b600081359050612613816125ed565b92915050565b60006020828403121561262f5761262e6125b7565b5b600061263d84828501612604565b91505092915050565b60008115159050919050565b61265b81612646565b82525050565b60006020820190506126766000830184612652565b92915050565b61268581612646565b811461269057600080fd5b50565b6000813590506126a28161267c565b92915050565b6000602082840312156126be576126bd6125b7565b5b60006126cc84828501612693565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561270f5780820151818401526020810190506126f4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612737826126d5565b61274181856126e0565b93506127518185602086016126f1565b61275a8161271b565b840191505092915050565b6000602082019050818103600083015261277f818461272c565b905092915050565b6000819050919050565b61279a81612787565b81146127a557600080fd5b50565b6000813590506127b781612791565b92915050565b6000602082840312156127d3576127d26125b7565b5b60006127e1848285016127a8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612815826127ea565b9050919050565b6128258161280a565b82525050565b6000602082019050612840600083018461281c565b92915050565b61284f8161280a565b811461285a57600080fd5b50565b60008135905061286c81612846565b92915050565b60008060408385031215612889576128886125b7565b5b60006128978582860161285d565b92505060206128a8858286016127a8565b9150509250929050565b6128bb81612787565b82525050565b60006020820190506128d660008301846128b2565b92915050565b6000806000606084860312156128f5576128f46125b7565b5b60006129038682870161285d565b93505060206129148682870161285d565b9250506040612925868287016127a8565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129718261271b565b810181811067ffffffffffffffff821117156129905761298f612939565b5b80604052505050565b60006129a36125ad565b90506129af8282612968565b919050565b600067ffffffffffffffff8211156129cf576129ce612939565b5b6129d88261271b565b9050602081019050919050565b82818337600083830152505050565b6000612a07612a02846129b4565b612999565b905082815260208101848484011115612a2357612a22612934565b5b612a2e8482856129e5565b509392505050565b600082601f830112612a4b57612a4a61292f565b5b8135612a5b8482602086016129f4565b91505092915050565b600060208284031215612a7a57612a796125b7565b5b600082013567ffffffffffffffff811115612a9857612a976125bc565b5b612aa484828501612a36565b91505092915050565b600060208284031215612ac357612ac26125b7565b5b6000612ad18482850161285d565b91505092915050565b60008060408385031215612af157612af06125b7565b5b6000612aff8582860161285d565b9250506020612b1085828601612693565b9150509250929050565b600067ffffffffffffffff821115612b3557612b34612939565b5b612b3e8261271b565b9050602081019050919050565b6000612b5e612b5984612b1a565b612999565b905082815260208101848484011115612b7a57612b79612934565b5b612b858482856129e5565b509392505050565b600082601f830112612ba257612ba161292f565b5b8135612bb2848260208601612b4b565b91505092915050565b60008060008060808587031215612bd557612bd46125b7565b5b6000612be38782880161285d565b9450506020612bf48782880161285d565b9350506040612c05878288016127a8565b925050606085013567ffffffffffffffff811115612c2657612c256125bc565b5b612c3287828801612b8d565b91505092959194509250565b60008060408385031215612c5557612c546125b7565b5b6000612c638582860161285d565b9250506020612c748582860161285d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cc557607f821691505b602082108103612cd857612cd7612c7e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612d03565b612d4a8683612d03565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d87612d82612d7d84612787565b612d62565b612787565b9050919050565b6000819050919050565b612da183612d6c565b612db5612dad82612d8e565b848454612d10565b825550505050565b600090565b612dca612dbd565b612dd5818484612d98565b505050565b5b81811015612df957612dee600082612dc2565b600181019050612ddb565b5050565b601f821115612e3e57612e0f81612cde565b612e1884612cf3565b81016020851015612e27578190505b612e3b612e3385612cf3565b830182612dda565b50505b505050565b600082821c905092915050565b6000612e6160001984600802612e43565b1980831691505092915050565b6000612e7a8383612e50565b9150826002028217905092915050565b612e93826126d5565b67ffffffffffffffff811115612eac57612eab612939565b5b612eb68254612cad565b612ec1828285612dfd565b600060209050601f831160018114612ef45760008415612ee2578287015190505b612eec8582612e6e565b865550612f54565b601f198416612f0286612cde565b60005b82811015612f2a57848901518255600182019150602085019450602081019050612f05565b86831015612f475784890151612f43601f891682612e50565b8355505b6001600288020188555050505b505050505050565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b6000612fb86022836126e0565b9150612fc382612f5c565b604082019050919050565b60006020820190508181036000830152612fe781612fab565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061302882612787565b915061303383612787565b925082820190508082111561304b5761304a612fee565b5b92915050565b7f457863656564732077616c6c6574206c696d6974000000000000000000000000600082015250565b60006130876014836126e0565b915061309282613051565b602082019050919050565b600060208201905081810360008301526130b68161307a565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b60006130f36020836126e0565b91506130fe826130bd565b602082019050919050565b60006020820190508181036000830152613122816130e6565b9050919050565b600061313482612787565b915061313f83612787565b925082820261314d81612787565b9150828204841483151761316457613163612fee565b5b5092915050565b7f56616c75652073656e74206973206e6f7420636f727265637400000000000000600082015250565b60006131a16019836126e0565b91506131ac8261316b565b602082019050919050565b600060208201905081810360008301526131d081613194565b9050919050565b7f53616c65206d7573742062652061637469766520746f20636c61696d2066726560008201527f65206d696e740000000000000000000000000000000000000000000000000000602082015250565b60006132336026836126e0565b915061323e826131d7565b604082019050919050565b6000602082019050818103600083015261326281613226565b9050919050565b7f46726565206d696e7420616c726561647920636c61696d656400000000000000600082015250565b600061329f6019836126e0565b91506132aa82613269565b602082019050919050565b600060208201905081810360008301526132ce81613292565b9050919050565b7f457863656564732066726565206d696e74206c696d6974000000000000000000600082015250565b600061330b6017836126e0565b9150613316826132d5565b602082019050919050565b6000602082019050818103600083015261333a816132fe565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061339d602f836126e0565b91506133a882613341565b604082019050919050565b600060208201905081810360008301526133cc81613390565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061342f6026836126e0565b915061343a826133d3565b604082019050919050565b6000602082019050818103600083015261345e81613422565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061349b6020836126e0565b91506134a682613465565b602082019050919050565b600060208201905081810360008301526134ca8161348e565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006134f8826134d1565b61350281856134dc565b93506135128185602086016126f1565b61351b8161271b565b840191505092915050565b600060808201905061353b600083018761281c565b613548602083018661281c565b61355560408301856128b2565b818103606083015261356781846134ed565b905095945050505050565b600081519050613581816125ed565b92915050565b60006020828403121561359d5761359c6125b7565b5b60006135ab84828501613572565b9150509291505056fea2646970667358221220bdeb178add89724b69f76d0d6143d82f2599efc8bf4a6cd64379ce1727472e1164736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000005543df729c00000000000000000000000000000000000000000000000000000000000000003e70000000000000000000000000000000000000000000000000000000000000016426974636f696e20526f636b7320427920456c656e6100000000000000000000000000000000000000000000000000000000000000000000000000000000000642544342594500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569637a32716c726274366e753636786b776261356b616266717568623236746d7a6f797664363333756f736163656c6b756f327a61000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Bitcoin Rocks By Elena
Arg [1] : _symbol (string): BTCBYE
Arg [2] : _uri (string): ipfs://bafkreicz2qlrbt6nu66xkwba5kabfquhb26tmzoyvd633uosacelkuo2za
Arg [3] : limit (uint256): 10
Arg [4] : price (uint256): 1500000000000000
Arg [5] : maxSupply (uint256): 999

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 0000000000000000000000000000000000000000000000000005543df729c000
Arg [5] : 00000000000000000000000000000000000000000000000000000000000003e7
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [7] : 426974636f696e20526f636b7320427920456c656e6100000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [9] : 4254434259450000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [11] : 697066733a2f2f6261666b726569637a32716c726274366e753636786b776261
Arg [12] : 356b616266717568623236746d7a6f797664363333756f736163656c6b756f32
Arg [13] : 7a61000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68752:4618:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25829:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71849:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29024:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30624:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30187:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25078:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72123:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31612:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68885:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68991:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71557:145;;;;;;;;;;;;;:::i;:::-;;31853:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72655:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28832:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69884:501;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69024:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26248:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67817:103;;;;;;;;;;;;;:::i;:::-;;70393:583;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67169:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29193:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68957:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30941:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32109:406;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72889:476;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71236:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31331:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68808:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72408: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;71849:101::-;67055:13;:11;:13::i;:::-;71934:8:::1;71919:12;;:23;;;;;;;;;;;;;;;;;;71849: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;72123:98::-;67055:13;:11;:13::i;:::-;72208:5:::1;72193:12;:20;;;;72123:98:::0;:::o;31612:170::-;31746:28;31756:4;31762:2;31766:7;31746:9;:28::i;:::-;31612:170;;;:::o;68885:35::-;;;:::o;68991:26::-;;;;:::o;71557:145::-;67055:13;:11;:13::i;:::-;71607:15:::1;71625:21;71607:39;;71665:10;71657:28;;:37;71686:7;71657:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71596:106;71557:145::o:0;31853:185::-;31991:39;32008:4;32014:2;32018:7;31991:39;;;;;;;;;;;;:16;:39::i;:::-;31853:185;;;:::o;72655:109::-;67055:13;:11;:13::i;:::-;72748:8:::1;72729:16;:27;;;;;;:::i;:::-;;72655:109:::0;:::o;28832:125::-;28896:7;28923:21;28936:7;28923:12;:21::i;:::-;:26;;;28916:33;;28832:125;;;:::o;69884:501::-;69946:10;69959:13;:11;:13::i;:::-;69946:26;;69983:14;70000:25;70014:10;70000:13;:25::i;:::-;69983:42;;70046:12;;;;;;;;;;;70038:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;70135:11;;70125:6;70116;:15;;;;:::i;:::-;:30;;70108:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70205:10;70195:6;70190:2;:11;;;;:::i;:::-;:25;;70182:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;70296:9;70286:6;70271:12;;:21;;;;:::i;:::-;:34;70263:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;70348:29;70358:10;70370:6;70348:9;:29::i;:::-;69935:450;;69884:501;:::o;69024: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;70393:583::-;70447:10;70460:13;:11;:13::i;:::-;70447:26;;70484:14;70501:25;70515:10;70501:13;:25::i;:::-;70484:42;;70547:12;;;;;;;;;;;70539:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70646:1;70621:9;:21;70631:10;70621:21;;;;;;;;;;;;;;;;:26;70613:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;70715:11;;70705:6;70696;:15;;;;:::i;:::-;:30;;70688:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;70780:1;70770:6;:11;;70762:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;70843:10;70833:6;70828:2;:11;;;;:::i;:::-;:25;;70820:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;70903:29;70913:10;70925:6;70903:9;:29::i;:::-;70967:1;70943:9;:21;70953:10;70943:21;;;;;;;;;;;;;;;:25;;;;70436:540;;70393:583;:::o;67169:87::-;67215:7;67242:6;;;;;;;;;;;67235:13;;67169:87;:::o;29193:104::-;29249:13;29282:7;29275:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29193:104;:::o;68957: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;72889:476::-;72962:13;72996:16;73004:7;72996;:16::i;:::-;72988:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;73106:21;73130:10;:8;:10::i;:::-;73106:34;;73245:1;73226:7;73220:21;:26;73216:68;;73263:9;;;;;;;;;;;;;;;;;73216:68;73350:7;73343:14;;;72889:476;;;;:::o;71236:222::-;67055:13;:11;:13::i;:::-;71311:10:::1;71324:13;:11;:13::i;:::-;71311:26;;71371:10;71361:6;71356:2;:11;;;;:::i;:::-;:25;;71348:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;71429:21;71439:2;71443:6;71429:9;:21::i;:::-;71300:158;71236:222:::0;;:::o;31331:214::-;31473:4;31502:18;:25;31521:5;31502:25;;;;;;;;;;;;;;;:35;31528:8;31502:35;;;;;;;;;;;;;;;;;;;;;;;;;31495:42;;31331:214;;;;:::o;68808:32::-;;;;;;;;;;;;;:::o;72408:96::-;67055:13;:11;:13::i;:::-;72491:5:::1;72477:11;:19;;;;72408: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;26536:137::-;26597:7;26632:12;:19;26645:5;26632:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;26624:41;;26617:48;;26536:137;;;:::o;32991:104::-;33060:27;33070:2;33074:8;33060:27;;;;;;;;;;;;:9;:27::i;:::-;32991:104;;:::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;72772:109::-;72824:13;72857:16;72850:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72772:109;:::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:221::-;17413:34;17409:1;17401:6;17397:14;17390:58;17482:4;17477:2;17469:6;17465:15;17458:29;17273:221;:::o;17500:366::-;17642:3;17663:67;17727:2;17722:3;17663:67;:::i;:::-;17656:74;;17739:93;17828:3;17739:93;:::i;:::-;17857:2;17852:3;17848:12;17841:19;;17500:366;;;:::o;17872:419::-;18038:4;18076:2;18065:9;18061:18;18053:26;;18125:9;18119:4;18115:20;18111:1;18100:9;18096:17;18089:47;18153:131;18279:4;18153:131;:::i;:::-;18145:139;;17872:419;;;:::o;18297:180::-;18345:77;18342:1;18335:88;18442:4;18439:1;18432:15;18466:4;18463:1;18456:15;18483:191;18523:3;18542:20;18560:1;18542:20;:::i;:::-;18537:25;;18576:20;18594:1;18576:20;:::i;:::-;18571:25;;18619:1;18616;18612:9;18605:16;;18640:3;18637:1;18634:10;18631:36;;;18647:18;;:::i;:::-;18631:36;18483:191;;;;:::o;18680:170::-;18820:22;18816:1;18808:6;18804:14;18797:46;18680:170;:::o;18856:366::-;18998:3;19019:67;19083:2;19078:3;19019:67;:::i;:::-;19012:74;;19095:93;19184:3;19095:93;:::i;:::-;19213:2;19208:3;19204:12;19197:19;;18856:366;;;:::o;19228:419::-;19394:4;19432:2;19421:9;19417:18;19409:26;;19481:9;19475:4;19471:20;19467:1;19456:9;19452:17;19445:47;19509:131;19635:4;19509:131;:::i;:::-;19501:139;;19228:419;;;:::o;19653:182::-;19793:34;19789:1;19781:6;19777:14;19770:58;19653:182;:::o;19841:366::-;19983:3;20004:67;20068:2;20063:3;20004:67;:::i;:::-;19997:74;;20080:93;20169:3;20080:93;:::i;:::-;20198:2;20193:3;20189:12;20182:19;;19841:366;;;:::o;20213:419::-;20379:4;20417:2;20406:9;20402:18;20394:26;;20466:9;20460:4;20456:20;20452:1;20441:9;20437:17;20430:47;20494:131;20620:4;20494:131;:::i;:::-;20486:139;;20213:419;;;:::o;20638:410::-;20678:7;20701:20;20719:1;20701:20;:::i;:::-;20696:25;;20735:20;20753:1;20735:20;:::i;:::-;20730:25;;20790:1;20787;20783:9;20812:30;20830:11;20812:30;:::i;:::-;20801:41;;20991:1;20982:7;20978:15;20975:1;20972:22;20952:1;20945:9;20925:83;20902:139;;21021:18;;:::i;:::-;20902:139;20686:362;20638:410;;;;:::o;21054:175::-;21194:27;21190:1;21182:6;21178:14;21171:51;21054:175;:::o;21235:366::-;21377:3;21398:67;21462:2;21457:3;21398:67;:::i;:::-;21391:74;;21474:93;21563:3;21474:93;:::i;:::-;21592:2;21587:3;21583:12;21576:19;;21235:366;;;:::o;21607:419::-;21773:4;21811:2;21800:9;21796:18;21788:26;;21860:9;21854:4;21850:20;21846:1;21835:9;21831:17;21824:47;21888:131;22014:4;21888:131;:::i;:::-;21880:139;;21607:419;;;:::o;22032:225::-;22172:34;22168:1;22160:6;22156:14;22149:58;22241:8;22236:2;22228:6;22224:15;22217:33;22032:225;:::o;22263:366::-;22405:3;22426:67;22490:2;22485:3;22426:67;:::i;:::-;22419:74;;22502:93;22591:3;22502:93;:::i;:::-;22620:2;22615:3;22611:12;22604:19;;22263:366;;;:::o;22635:419::-;22801:4;22839:2;22828:9;22824:18;22816:26;;22888:9;22882:4;22878:20;22874:1;22863:9;22859:17;22852:47;22916:131;23042:4;22916:131;:::i;:::-;22908:139;;22635:419;;;:::o;23060:175::-;23200:27;23196:1;23188:6;23184:14;23177:51;23060:175;:::o;23241:366::-;23383:3;23404:67;23468:2;23463:3;23404:67;:::i;:::-;23397:74;;23480:93;23569:3;23480:93;:::i;:::-;23598:2;23593:3;23589:12;23582:19;;23241:366;;;:::o;23613:419::-;23779:4;23817:2;23806:9;23802:18;23794:26;;23866:9;23860:4;23856:20;23852:1;23841:9;23837:17;23830:47;23894:131;24020:4;23894:131;:::i;:::-;23886:139;;23613:419;;;:::o;24038:173::-;24178:25;24174:1;24166:6;24162:14;24155:49;24038:173;:::o;24217:366::-;24359:3;24380:67;24444:2;24439:3;24380:67;:::i;:::-;24373:74;;24456:93;24545:3;24456:93;:::i;:::-;24574:2;24569:3;24565:12;24558:19;;24217:366;;;:::o;24589:419::-;24755:4;24793:2;24782:9;24778:18;24770:26;;24842:9;24836:4;24832:20;24828:1;24817:9;24813:17;24806:47;24870:131;24996:4;24870:131;:::i;:::-;24862:139;;24589:419;;;:::o;25014:234::-;25154:34;25150:1;25142:6;25138:14;25131:58;25223:17;25218:2;25210:6;25206:15;25199:42;25014:234;:::o;25254:366::-;25396:3;25417:67;25481:2;25476:3;25417:67;:::i;:::-;25410:74;;25493:93;25582:3;25493:93;:::i;:::-;25611:2;25606:3;25602:12;25595:19;;25254:366;;;:::o;25626:419::-;25792:4;25830:2;25819:9;25815:18;25807:26;;25879:9;25873:4;25869:20;25865:1;25854:9;25850:17;25843:47;25907:131;26033:4;25907:131;:::i;:::-;25899:139;;25626:419;;;:::o;26051:225::-;26191:34;26187:1;26179:6;26175:14;26168:58;26260:8;26255:2;26247:6;26243:15;26236:33;26051:225;:::o;26282:366::-;26424:3;26445:67;26509:2;26504:3;26445:67;:::i;:::-;26438:74;;26521:93;26610:3;26521:93;:::i;:::-;26639:2;26634:3;26630:12;26623:19;;26282:366;;;:::o;26654:419::-;26820:4;26858:2;26847:9;26843:18;26835:26;;26907:9;26901:4;26897:20;26893:1;26882:9;26878:17;26871:47;26935:131;27061:4;26935:131;:::i;:::-;26927:139;;26654:419;;;:::o;27079:182::-;27219:34;27215:1;27207:6;27203:14;27196:58;27079:182;:::o;27267:366::-;27409:3;27430:67;27494:2;27489:3;27430:67;:::i;:::-;27423:74;;27506:93;27595:3;27506:93;:::i;:::-;27624:2;27619:3;27615:12;27608:19;;27267:366;;;:::o;27639:419::-;27805:4;27843:2;27832:9;27828:18;27820:26;;27892:9;27886:4;27882:20;27878:1;27867:9;27863:17;27856:47;27920:131;28046:4;27920:131;:::i;:::-;27912:139;;27639:419;;;:::o;28064:98::-;28115:6;28149:5;28143:12;28133:22;;28064:98;;;:::o;28168:168::-;28251:11;28285:6;28280:3;28273:19;28325:4;28320:3;28316:14;28301:29;;28168:168;;;;:::o;28342:373::-;28428:3;28456:38;28488:5;28456:38;:::i;:::-;28510:70;28573:6;28568:3;28510:70;:::i;:::-;28503:77;;28589:65;28647:6;28642:3;28635:4;28628:5;28624:16;28589:65;:::i;:::-;28679:29;28701:6;28679:29;:::i;:::-;28674:3;28670:39;28663:46;;28432:283;28342:373;;;;:::o;28721:640::-;28916:4;28954:3;28943:9;28939:19;28931:27;;28968:71;29036:1;29025:9;29021:17;29012:6;28968:71;:::i;:::-;29049:72;29117:2;29106:9;29102:18;29093:6;29049:72;:::i;:::-;29131;29199:2;29188:9;29184:18;29175:6;29131:72;:::i;:::-;29250:9;29244:4;29240:20;29235:2;29224:9;29220:18;29213:48;29278:76;29349:4;29340:6;29278:76;:::i;:::-;29270:84;;28721:640;;;;;;;:::o;29367:141::-;29423:5;29454:6;29448:13;29439:22;;29470:32;29496:5;29470:32;:::i;:::-;29367:141;;;;:::o;29514:349::-;29583:6;29632:2;29620:9;29611:7;29607:23;29603:32;29600:119;;;29638:79;;:::i;:::-;29600:119;29758:1;29783:63;29838:7;29829:6;29818:9;29814:22;29783:63;:::i;:::-;29773:73;;29729:127;29514:349;;;;:::o

Swarm Source

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