ETH Price: $3,665.26 (+1.45%)
 

Overview

Max Total Supply

78 FWD

Holders

57

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 FWD
0x932e2b8917fb77016ac85b473269f4a21bd3d544
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:
ForwardScouts

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-14
*/

// SPDX-License-Identifier: MIT

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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (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 Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

// File: @openzeppelin/contracts/utils/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: @openzeppelin/contracts/token/ERC721/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: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (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: @openzeppelin/contracts/token/ERC721/extensions/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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 {}
}

contract ForwardScouts is ERC721A, Ownable {
    
    uint256 public cost = 0.001 ether;
    uint32 public immutable maxSupply = 3333;
    uint256 public maxTxMint = 10;
    string  public BaseURI = "https://forwardscouts.club/fwd";
    mapping(address => bool) public freeMinted;
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor() 
        ERC721A ("ForwardScouts", "FWD") {
    }
    
    function publicMint(uint32 amount) public payable callerIsUser{
        require(totalSupply() + amount <= maxSupply,"sold out");
        require(amount <= maxTxMint,"exceed max amount");
        if(freeMinted[msg.sender])
        {
            require(msg.value >= amount * cost,"insufficient funds");
        }
        else 
        {
            freeMinted[msg.sender] = true;
            require(msg.value >= (amount-1) * cost,"insufficient");
        }
        _safeMint(msg.sender, amount);
    }


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

    function setBaseURI(string memory uri) public onlyOwner {
        BaseURI = uri;
    }

    function _startTokenId() internal view virtual override(ERC721A) returns (uint256) {
        return 0;
    }

    function gotMintedFree() public view returns (bool){
        return freeMinted[msg.sender];
    }

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

    function setMaxTxMint(uint256 _value) public onlyOwner() {
        maxTxMint = _value;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","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":"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"BaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gotMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint32","name":"amount","type":"uint32"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMaxTxMint","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

66038d7ea4c68000600955610d0560e01b608052600a805560e0604052601e60a08190527f68747470733a2f2f666f727761726473636f7574732e636c75622f667764000060c09081526200005891600b919062000137565b503480156200006657600080fd5b50604080518082018252600d81526c466f727761726453636f75747360981b6020808301918252835180850190945260038452621195d160ea1b908401528151919291620000b79160029162000137565b508051620000cd90600390602084019062000137565b50506000805550620000df33620000e5565b6200021a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014590620001dd565b90600052602060002090601f016020900481019282620001695760008555620001b4565b82601f106200018457805160ff1916838001178555620001b4565b82800160010185558215620001b4579182015b82811115620001b457825182559160200191906001019062000197565b50620001c2929150620001c6565b5090565b5b80821115620001c25760008155600101620001c7565b600181811c90821680620001f257607f821691505b602082108114156200021457634e487b7160e01b600052602260045260246000fd5b50919050565b60805160e01c611abd620002406000396000818161048701526109f60152611abd6000f3fe60806040526004361061019c5760003560e01c806368822bb9116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146104be578063f151d79114610507578063f2fde38b1461051a578063ffcc43c41461053a57600080fd5b8063c87b56dd14610435578063cd680ba914610455578063d5abeb011461047557600080fd5b806395d89b41116100c657806395d89b41146103bb578063a22cb465146103d0578063b88d4fde146103f0578063c28c52a81461041057600080fd5b806368822bb91461036757806370a082311461037d5780638da5cb5b1461039d57600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102e757806344a0d68a1461030757806355f804b3146103275780636352211e1461034757600080fd5b806323b872dd1461028f578063389fcf06146102af5780633ccfd60b146102df57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806313faede61461025257806318160ddd14610276575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461178f565b61054f565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105a1565b6040516101cd91906118e9565b34801561020457600080fd5b50610218610213366004611812565b610633565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611765565b610677565b005b34801561025e57600080fd5b5061026860095481565b6040519081526020016101cd565b34801561028257600080fd5b5060015460005403610268565b34801561029b57600080fd5b506102506102aa366004611671565b610705565b3480156102bb57600080fd5b506101c16102ca366004611623565b600c6020526000908152604090205460ff1681565b610250610710565b3480156102f357600080fd5b50610250610302366004611671565b610770565b34801561031357600080fd5b50610250610322366004611812565b61078b565b34801561033357600080fd5b506102506103423660046117c9565b610798565b34801561035357600080fd5b50610218610362366004611812565b6107b7565b34801561037357600080fd5b50610268600a5481565b34801561038957600080fd5b50610268610398366004611623565b6107c9565b3480156103a957600080fd5b506008546001600160a01b0316610218565b3480156103c757600080fd5b506101eb610818565b3480156103dc57600080fd5b506102506103eb366004611729565b610827565b3480156103fc57600080fd5b5061025061040b3660046116ad565b6108bd565b34801561041c57600080fd5b50336000908152600c602052604090205460ff166101c1565b34801561044157600080fd5b506101eb610450366004611812565b61090e565b34801561046157600080fd5b50610250610470366004611812565b610993565b34801561048157600080fd5b506104a97f000000000000000000000000000000000000000000000000000000000000000081565b60405163ffffffff90911681526020016101cd565b3480156104ca57600080fd5b506101c16104d936600461163e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025061051536600461182b565b6109a0565b34801561052657600080fd5b50610250610535366004611623565b610bbb565b34801561054657600080fd5b506101eb610c31565b60006001600160e01b031982166380ac58cd60e01b148061058057506001600160e01b03198216635b5e139f60e01b145b8061059b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105b0906119af565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc906119af565b80156106295780601f106105fe57610100808354040283529160200191610629565b820191906000526020600020905b81548152906001019060200180831161060c57829003601f168201915b5050505050905090565b600061063e82610cbf565b61065b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610682826107b7565b9050806001600160a01b0316836001600160a01b031614156106b75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106d757506106d581336104d9565b155b156106f5576040516367d9dca160e11b815260040160405180910390fd5b610700838383610cea565b505050565b610700838383610d46565b610718610f5c565b604051600090339047908381818185875af1925050503d806000811461075a576040519150601f19603f3d011682016040523d82523d6000602084013e61075f565b606091505b505090508061076d57600080fd5b50565b610700838383604051806020016040528060008152506108bd565b610793610f5c565b600955565b6107a0610f5c565b80516107b390600b9060208401906114f8565b5050565b60006107c282610fb8565b5192915050565b60006001600160a01b0382166107f2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546105b0906119af565b6001600160a01b0382163314156108515760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108c8848484610d46565b6001600160a01b0383163b151580156108ea57506108e8848484846110d4565b155b15610908576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061091982610cbf565b61093657604051630a14c4b560e41b815260040160405180910390fd5b60006109406111cc565b9050805160001415610961576040518060200160405280600081525061098c565b8061096b846111db565b60405160200161097c92919061187d565b6040516020818303038152906040525b9392505050565b61099b610f5c565b600a55565b3233146109f45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168163ffffffff16610a2f6001546000540390565b610a3991906118fc565b1115610a725760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016109eb565b600a548163ffffffff161115610abe5760405162461bcd60e51b8152602060048201526011602482015270195e18d95959081b585e08185b5bdd5b9d607a1b60448201526064016109eb565b336000908152600c602052604090205460ff1615610b3257600954610ae99063ffffffff8316611928565b341015610b2d5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016109eb565b610bab565b336000908152600c60205260409020805460ff1916600190811790915560095490610b5d908361195e565b63ffffffff16610b6d9190611928565b341015610bab5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016109eb565b61076d338263ffffffff166112d9565b610bc3610f5c565b6001600160a01b038116610c285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109eb565b61076d816112f3565b600b8054610c3e906119af565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6a906119af565b8015610cb75780601f10610c8c57610100808354040283529160200191610cb7565b820191906000526020600020905b815481529060010190602001808311610c9a57829003601f168201915b505050505081565b600080548210801561059b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d5182610fb8565b80519091506000906001600160a01b0316336001600160a01b03161480610d7f57508151610d7f90336104d9565b80610d9a575033610d8f84610633565b6001600160a01b0316145b905080610dba57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610def5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e1657604051633a954ecd60e21b815260040160405180910390fd5b610e266000848460000151610cea565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f1257600054811015610f12578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b03163314610fb65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109eb565b565b6040805160608101825260008082526020820181905291810191909152816000548110156110bb57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110b95780516001600160a01b03161561104f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156110b4579392505050565b61104f565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111099033908990889088906004016118ac565b602060405180830381600087803b15801561112357600080fd5b505af1925050508015611153575060408051601f3d908101601f19168201909252611150918101906117ac565b60015b6111ae573d808015611181576040519150601f19603f3d011682016040523d82523d6000602084013e611186565b606091505b5080516111a6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546105b0906119af565b6060816111ff5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112295780611213816119ea565b91506112229050600a83611914565b9150611203565b60008167ffffffffffffffff81111561124457611244611a5b565b6040519080825280601f01601f19166020018201604052801561126e576020820181803683370190505b5090505b84156111c457611283600183611947565b9150611290600a86611a05565b61129b9060306118fc565b60f81b8183815181106112b0576112b0611a45565b60200101906001600160f81b031916908160001a9053506112d2600a86611914565b9450611272565b6107b3828260405180602001604052806000815250611345565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61070083838360016000548361136e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561142057506001600160a01b0387163b15155b156114a9575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461147160008884806001019550886110d4565b61148e576040516368d2bf6b60e11b815260040160405180910390fd5b808214156114265782600054146114a457600080fd5b6114ef565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156114aa575b50600055610f55565b828054611504906119af565b90600052602060002090601f016020900481019282611526576000855561156c565b82601f1061153f57805160ff191683800117855561156c565b8280016001018555821561156c579182015b8281111561156c578251825591602001919060010190611551565b5061157892915061157c565b5090565b5b80821115611578576000815560010161157d565b600067ffffffffffffffff808411156115ac576115ac611a5b565b604051601f8501601f19908116603f011681019082821181831017156115d4576115d4611a5b565b816040528093508581528686860111156115ed57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461161e57600080fd5b919050565b60006020828403121561163557600080fd5b61098c82611607565b6000806040838503121561165157600080fd5b61165a83611607565b915061166860208401611607565b90509250929050565b60008060006060848603121561168657600080fd5b61168f84611607565b925061169d60208501611607565b9150604084013590509250925092565b600080600080608085870312156116c357600080fd5b6116cc85611607565b93506116da60208601611607565b925060408501359150606085013567ffffffffffffffff8111156116fd57600080fd5b8501601f8101871361170e57600080fd5b61171d87823560208401611591565b91505092959194509250565b6000806040838503121561173c57600080fd5b61174583611607565b91506020830135801515811461175a57600080fd5b809150509250929050565b6000806040838503121561177857600080fd5b61178183611607565b946020939093013593505050565b6000602082840312156117a157600080fd5b813561098c81611a71565b6000602082840312156117be57600080fd5b815161098c81611a71565b6000602082840312156117db57600080fd5b813567ffffffffffffffff8111156117f257600080fd5b8201601f8101841361180357600080fd5b6111c484823560208401611591565b60006020828403121561182457600080fd5b5035919050565b60006020828403121561183d57600080fd5b813563ffffffff8116811461098c57600080fd5b60008151808452611869816020860160208601611983565b601f01601f19169290920160200192915050565b6000835161188f818460208801611983565b8351908301906118a3818360208801611983565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118df90830184611851565b9695505050505050565b60208152600061098c6020830184611851565b6000821982111561190f5761190f611a19565b500190565b60008261192357611923611a2f565b500490565b600081600019048311821515161561194257611942611a19565b500290565b60008282101561195957611959611a19565b500390565b600063ffffffff8381169083168181101561197b5761197b611a19565b039392505050565b60005b8381101561199e578181015183820152602001611986565b838111156109085750506000910152565b600181811c908216806119c357607f821691505b602082108114156119e457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119fe576119fe611a19565b5060010190565b600082611a1457611a14611a2f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461076d57600080fdfea26469706673582212209775ae2700d86d277a037430616ba28854d1560c883a363be25e23d770e299b764736f6c63430008070033

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806368822bb9116100ec578063c87b56dd1161008a578063e985e9c511610064578063e985e9c5146104be578063f151d79114610507578063f2fde38b1461051a578063ffcc43c41461053a57600080fd5b8063c87b56dd14610435578063cd680ba914610455578063d5abeb011461047557600080fd5b806395d89b41116100c657806395d89b41146103bb578063a22cb465146103d0578063b88d4fde146103f0578063c28c52a81461041057600080fd5b806368822bb91461036757806370a082311461037d5780638da5cb5b1461039d57600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146102e757806344a0d68a1461030757806355f804b3146103275780636352211e1461034757600080fd5b806323b872dd1461028f578063389fcf06146102af5780633ccfd60b146102df57600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806313faede61461025257806318160ddd14610276575b600080fd5b3480156101ad57600080fd5b506101c16101bc36600461178f565b61054f565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb6105a1565b6040516101cd91906118e9565b34801561020457600080fd5b50610218610213366004611812565b610633565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611765565b610677565b005b34801561025e57600080fd5b5061026860095481565b6040519081526020016101cd565b34801561028257600080fd5b5060015460005403610268565b34801561029b57600080fd5b506102506102aa366004611671565b610705565b3480156102bb57600080fd5b506101c16102ca366004611623565b600c6020526000908152604090205460ff1681565b610250610710565b3480156102f357600080fd5b50610250610302366004611671565b610770565b34801561031357600080fd5b50610250610322366004611812565b61078b565b34801561033357600080fd5b506102506103423660046117c9565b610798565b34801561035357600080fd5b50610218610362366004611812565b6107b7565b34801561037357600080fd5b50610268600a5481565b34801561038957600080fd5b50610268610398366004611623565b6107c9565b3480156103a957600080fd5b506008546001600160a01b0316610218565b3480156103c757600080fd5b506101eb610818565b3480156103dc57600080fd5b506102506103eb366004611729565b610827565b3480156103fc57600080fd5b5061025061040b3660046116ad565b6108bd565b34801561041c57600080fd5b50336000908152600c602052604090205460ff166101c1565b34801561044157600080fd5b506101eb610450366004611812565b61090e565b34801561046157600080fd5b50610250610470366004611812565b610993565b34801561048157600080fd5b506104a97f0000000000000000000000000000000000000000000000000000000000000d0581565b60405163ffffffff90911681526020016101cd565b3480156104ca57600080fd5b506101c16104d936600461163e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025061051536600461182b565b6109a0565b34801561052657600080fd5b50610250610535366004611623565b610bbb565b34801561054657600080fd5b506101eb610c31565b60006001600160e01b031982166380ac58cd60e01b148061058057506001600160e01b03198216635b5e139f60e01b145b8061059b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105b0906119af565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc906119af565b80156106295780601f106105fe57610100808354040283529160200191610629565b820191906000526020600020905b81548152906001019060200180831161060c57829003601f168201915b5050505050905090565b600061063e82610cbf565b61065b576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610682826107b7565b9050806001600160a01b0316836001600160a01b031614156106b75760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106d757506106d581336104d9565b155b156106f5576040516367d9dca160e11b815260040160405180910390fd5b610700838383610cea565b505050565b610700838383610d46565b610718610f5c565b604051600090339047908381818185875af1925050503d806000811461075a576040519150601f19603f3d011682016040523d82523d6000602084013e61075f565b606091505b505090508061076d57600080fd5b50565b610700838383604051806020016040528060008152506108bd565b610793610f5c565b600955565b6107a0610f5c565b80516107b390600b9060208401906114f8565b5050565b60006107c282610fb8565b5192915050565b60006001600160a01b0382166107f2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546105b0906119af565b6001600160a01b0382163314156108515760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108c8848484610d46565b6001600160a01b0383163b151580156108ea57506108e8848484846110d4565b155b15610908576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061091982610cbf565b61093657604051630a14c4b560e41b815260040160405180910390fd5b60006109406111cc565b9050805160001415610961576040518060200160405280600081525061098c565b8061096b846111db565b60405160200161097c92919061187d565b6040516020818303038152906040525b9392505050565b61099b610f5c565b600a55565b3233146109f45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000d0563ffffffff168163ffffffff16610a2f6001546000540390565b610a3991906118fc565b1115610a725760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b60448201526064016109eb565b600a548163ffffffff161115610abe5760405162461bcd60e51b8152602060048201526011602482015270195e18d95959081b585e08185b5bdd5b9d607a1b60448201526064016109eb565b336000908152600c602052604090205460ff1615610b3257600954610ae99063ffffffff8316611928565b341015610b2d5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b60448201526064016109eb565b610bab565b336000908152600c60205260409020805460ff1916600190811790915560095490610b5d908361195e565b63ffffffff16610b6d9190611928565b341015610bab5760405162461bcd60e51b815260206004820152600c60248201526b1a5b9cdd59999a58da595b9d60a21b60448201526064016109eb565b61076d338263ffffffff166112d9565b610bc3610f5c565b6001600160a01b038116610c285760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109eb565b61076d816112f3565b600b8054610c3e906119af565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6a906119af565b8015610cb75780601f10610c8c57610100808354040283529160200191610cb7565b820191906000526020600020905b815481529060010190602001808311610c9a57829003601f168201915b505050505081565b600080548210801561059b575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d5182610fb8565b80519091506000906001600160a01b0316336001600160a01b03161480610d7f57508151610d7f90336104d9565b80610d9a575033610d8f84610633565b6001600160a01b0316145b905080610dba57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610def5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e1657604051633a954ecd60e21b815260040160405180910390fd5b610e266000848460000151610cea565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f1257600054811015610f12578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b03163314610fb65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109eb565b565b6040805160608101825260008082526020820181905291810191909152816000548110156110bb57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110b95780516001600160a01b03161561104f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156110b4579392505050565b61104f565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111099033908990889088906004016118ac565b602060405180830381600087803b15801561112357600080fd5b505af1925050508015611153575060408051601f3d908101601f19168201909252611150918101906117ac565b60015b6111ae573d808015611181576040519150601f19603f3d011682016040523d82523d6000602084013e611186565b606091505b5080516111a6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546105b0906119af565b6060816111ff5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112295780611213816119ea565b91506112229050600a83611914565b9150611203565b60008167ffffffffffffffff81111561124457611244611a5b565b6040519080825280601f01601f19166020018201604052801561126e576020820181803683370190505b5090505b84156111c457611283600183611947565b9150611290600a86611a05565b61129b9060306118fc565b60f81b8183815181106112b0576112b0611a45565b60200101906001600160f81b031916908160001a9053506112d2600a86611914565b9450611272565b6107b3828260405180602001604052806000815250611345565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61070083838360016000548361136e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561142057506001600160a01b0387163b15155b156114a9575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461147160008884806001019550886110d4565b61148e576040516368d2bf6b60e11b815260040160405180910390fd5b808214156114265782600054146114a457600080fd5b6114ef565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156114aa575b50600055610f55565b828054611504906119af565b90600052602060002090601f016020900481019282611526576000855561156c565b82601f1061153f57805160ff191683800117855561156c565b8280016001018555821561156c579182015b8281111561156c578251825591602001919060010190611551565b5061157892915061157c565b5090565b5b80821115611578576000815560010161157d565b600067ffffffffffffffff808411156115ac576115ac611a5b565b604051601f8501601f19908116603f011681019082821181831017156115d4576115d4611a5b565b816040528093508581528686860111156115ed57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461161e57600080fd5b919050565b60006020828403121561163557600080fd5b61098c82611607565b6000806040838503121561165157600080fd5b61165a83611607565b915061166860208401611607565b90509250929050565b60008060006060848603121561168657600080fd5b61168f84611607565b925061169d60208501611607565b9150604084013590509250925092565b600080600080608085870312156116c357600080fd5b6116cc85611607565b93506116da60208601611607565b925060408501359150606085013567ffffffffffffffff8111156116fd57600080fd5b8501601f8101871361170e57600080fd5b61171d87823560208401611591565b91505092959194509250565b6000806040838503121561173c57600080fd5b61174583611607565b91506020830135801515811461175a57600080fd5b809150509250929050565b6000806040838503121561177857600080fd5b61178183611607565b946020939093013593505050565b6000602082840312156117a157600080fd5b813561098c81611a71565b6000602082840312156117be57600080fd5b815161098c81611a71565b6000602082840312156117db57600080fd5b813567ffffffffffffffff8111156117f257600080fd5b8201601f8101841361180357600080fd5b6111c484823560208401611591565b60006020828403121561182457600080fd5b5035919050565b60006020828403121561183d57600080fd5b813563ffffffff8116811461098c57600080fd5b60008151808452611869816020860160208601611983565b601f01601f19169290920160200192915050565b6000835161188f818460208801611983565b8351908301906118a3818360208801611983565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118df90830184611851565b9695505050505050565b60208152600061098c6020830184611851565b6000821982111561190f5761190f611a19565b500190565b60008261192357611923611a2f565b500490565b600081600019048311821515161561194257611942611a19565b500290565b60008282101561195957611959611a19565b500390565b600063ffffffff8381169083168181101561197b5761197b611a19565b039392505050565b60005b8381101561199e578181015183820152602001611986565b838111156109085750506000910152565b600181811c908216806119c357607f821691505b602082108114156119e457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119fe576119fe611a19565b5060010190565b600082611a1457611a14611a2f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461076d57600080fdfea26469706673582212209775ae2700d86d277a037430616ba28854d1560c883a363be25e23d770e299b764736f6c63430008070033

Deployed Bytecode Sourcemap

45812:1829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28346:305;;;;;;;;;;-1:-1:-1;28346:305:0;;;;;:::i;:::-;;:::i;:::-;;;6137:14:1;;6130:22;6112:41;;6100:2;6085:18;28346:305:0;;;;;;;;31731:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33234:204::-;;;;;;;;;;-1:-1:-1;33234:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5435:32:1;;;5417:51;;5405:2;5390:18;33234:204:0;5271:203:1;32797:371:0;;;;;;;;;;-1:-1:-1;32797:371:0;;;;;:::i;:::-;;:::i;:::-;;45868:33;;;;;;;;;;;;;;;;;;;9031:25:1;;;9019:2;9004:18;45868:33:0;8885:177:1;27595:303:0;;;;;;;;;;-1:-1:-1;27849:12:0;;27639:7;27833:13;:28;27595:303;;34091:170;;;;;;;;;;-1:-1:-1;34091:170:0;;;;;:::i;:::-;;:::i;46055:42::-;;;;;;;;;;-1:-1:-1;46055:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47470:168;;;:::i;34332:185::-;;;;;;;;;;-1:-1:-1;34332:185:0;;;;;:::i;:::-;;:::i;47272:88::-;;;;;;;;;;-1:-1:-1;47272:88:0;;;;;:::i;:::-;;:::i;46951:::-;;;;;;;;;;-1:-1:-1;46951:88:0;;;;;:::i;:::-;;:::i;31540:124::-;;;;;;;;;;-1:-1:-1;31540:124:0;;;;;:::i;:::-;;:::i;45955:29::-;;;;;;;;;;;;;;;;28715:206;;;;;;;;;;-1:-1:-1;28715:206:0;;;;;:::i;:::-;;:::i;4533:87::-;;;;;;;;;;-1:-1:-1;4606:6:0;;-1:-1:-1;;;;;4606:6:0;4533:87;;31900:104;;;;;;;;;;;;;:::i;33510:279::-;;;;;;;;;;-1:-1:-1;33510:279:0;;;;;:::i;:::-;;:::i;34588:369::-;;;;;;;;;;-1:-1:-1;34588:369:0;;;;;:::i;:::-;;:::i;47165:99::-;;;;;;;;;;-1:-1:-1;47245:10:0;47211:4;47234:22;;;:10;:22;;;;;;;;47165:99;;32075:318;;;;;;;;;;-1:-1:-1;32075:318:0;;;;;:::i;:::-;;:::i;47368:94::-;;;;;;;;;;-1:-1:-1;47368:94:0;;;;;:::i;:::-;;:::i;45908:40::-;;;;;;;;;;;;;;;;;;9241:10:1;9229:23;;;9211:42;;9199:2;9184:18;45908:40:0;9067:192:1;33860:164:0;;;;;;;;;;-1:-1:-1;33860:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33981:25:0;;;33957:4;33981:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33860:164;46310:514;;;;;;:::i;:::-;;:::i;4985:201::-;;;;;;;;;;-1:-1:-1;4985:201:0;;;;;:::i;:::-;;:::i;45991:57::-;;;;;;;;;;;;;:::i;28346:305::-;28448:4;-1:-1:-1;;;;;;28485:40:0;;-1:-1:-1;;;28485:40:0;;:105;;-1:-1:-1;;;;;;;28542:48:0;;-1:-1:-1;;;28542:48:0;28485:105;:158;;;-1:-1:-1;;;;;;;;;;17042:40:0;;;28607:36;28465:178;28346:305;-1:-1:-1;;28346:305:0:o;31731:100::-;31785:13;31818:5;31811:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31731:100;:::o;33234:204::-;33302:7;33327:16;33335:7;33327;:16::i;:::-;33322:64;;33352:34;;-1:-1:-1;;;33352:34:0;;;;;;;;;;;33322:64;-1:-1:-1;33406:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33406:24:0;;33234:204::o;32797:371::-;32870:13;32886:24;32902:7;32886:15;:24::i;:::-;32870:40;;32931:5;-1:-1:-1;;;;;32925:11:0;:2;-1:-1:-1;;;;;32925:11:0;;32921:48;;;32945:24;;-1:-1:-1;;;32945:24:0;;;;;;;;;;;32921:48;3164:10;-1:-1:-1;;;;;32986:21:0;;;;;;:63;;-1:-1:-1;33012:37:0;33029:5;3164:10;33860:164;:::i;33012:37::-;33011:38;32986:63;32982:138;;;33073:35;;-1:-1:-1;;;33073:35:0;;;;;;;;;;;32982:138;33132:28;33141:2;33145:7;33154:5;33132:8;:28::i;:::-;32859:309;32797:371;;:::o;34091:170::-;34225:28;34235:4;34241:2;34245:7;34225:9;:28::i;47470:168::-;4419:13;:11;:13::i;:::-;47545:58:::1;::::0;47527:12:::1;::::0;47553:10:::1;::::0;47577:21:::1;::::0;47527:12;47545:58;47527:12;47545:58;47577:21;47553:10;47545:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47526:77;;;47622:7;47614:16;;;::::0;::::1;;47515:123;47470:168::o:0;34332:185::-;34470:39;34487:4;34493:2;34497:7;34470:39;;;;;;;;;;;;:16;:39::i;47272:88::-;4419:13;:11;:13::i;:::-;47337:4:::1;:15:::0;47272:88::o;46951:::-;4419:13;:11;:13::i;:::-;47018;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46951:88:::0;:::o;31540:124::-;31604:7;31631:20;31643:7;31631:11;:20::i;:::-;:25;;31540:124;-1:-1:-1;;31540:124:0:o;28715:206::-;28779:7;-1:-1:-1;;;;;28803:19:0;;28799:60;;28831:28;;-1:-1:-1;;;28831:28:0;;;;;;;;;;;28799:60;-1:-1:-1;;;;;;28885:19:0;;;;;:12;:19;;;;;:27;;;;28715:206::o;31900:104::-;31956:13;31989:7;31982:14;;;;;:::i;33510:279::-;-1:-1:-1;;;;;33601:24:0;;3164:10;33601:24;33597:54;;;33634:17;;-1:-1:-1;;;33634:17:0;;;;;;;;;;;33597:54;3164:10;33664:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33664:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33664:53:0;;;;;;;;;;33733:48;;6112:41:1;;;33664:42:0;;3164:10;33733:48;;6085:18:1;33733:48:0;;;;;;;33510:279;;:::o;34588:369::-;34755:28;34765:4;34771:2;34775:7;34755:9;:28::i;:::-;-1:-1:-1;;;;;34798:13:0;;7072:19;:23;;34798:76;;;;;34818:56;34849:4;34855:2;34859:7;34868:5;34818:30;:56::i;:::-;34817:57;34798:76;34794:156;;;34898:40;;-1:-1:-1;;;34898:40:0;;;;;;;;;;;34794:156;34588:369;;;;:::o;32075:318::-;32148:13;32179:16;32187:7;32179;:16::i;:::-;32174:59;;32204:29;;-1:-1:-1;;;32204:29:0;;;;;;;;;;;32174:59;32246:21;32270:10;:8;:10::i;:::-;32246:34;;32304:7;32298:21;32323:1;32298:26;;:87;;;;;;;;;;;;;;;;;32351:7;32360:18;:7;:16;:18::i;:::-;32334:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32298:87;32291:94;32075:318;-1:-1:-1;;;32075:318:0:o;47368:94::-;4419:13;:11;:13::i;:::-;47436:9:::1;:18:::0;47368:94::o;46310:514::-;46147:9;46160:10;46147:23;46139:66;;;;-1:-1:-1;;;46139:66:0;;7674:2:1;46139:66:0;;;7656:21:1;7713:2;7693:18;;;7686:30;7752:32;7732:18;;;7725:60;7802:18;;46139:66:0;;;;;;;;;46417:9:::1;46391:35;;46407:6;46391:22;;:13;27849:12:::0;;27639:7;27833:13;:28;;27595:303;46391:13:::1;:22;;;;:::i;:::-;:35;;46383:55;;;::::0;-1:-1:-1;;;46383:55:0;;7338:2:1;46383:55:0::1;::::0;::::1;7320:21:1::0;7377:1;7357:18;;;7350:29;-1:-1:-1;;;7395:18:1;;;7388:38;7443:18;;46383:55:0::1;7136:331:1::0;46383:55:0::1;46467:9;;46457:6;:19;;;;46449:48;;;::::0;-1:-1:-1;;;46449:48:0;;8741:2:1;46449:48:0::1;::::0;::::1;8723:21:1::0;8780:2;8760:18;;;8753:30;-1:-1:-1;;;8799:18:1;;;8792:47;8856:18;;46449:48:0::1;8539:341:1::0;46449:48:0::1;46522:10;46511:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;46508:269;;;46589:4;::::0;46580:13:::1;::::0;::::1;::::0;::::1;;:::i;:::-;46567:9;:26;;46559:56;;;::::0;-1:-1:-1;;;46559:56:0;;8394:2:1;46559:56:0::1;::::0;::::1;8376:21:1::0;8433:2;8413:18;;;8406:30;-1:-1:-1;;;8452:18:1;;;8445:48;8510:18;;46559:56:0::1;8192:342:1::0;46559:56:0::1;46508:269;;;46678:10;46667:22;::::0;;;:10:::1;:22;::::0;;;;:29;;-1:-1:-1;;46667:29:0::1;46692:4;46667:29:::0;;::::1;::::0;;;46745:4:::1;::::0;;46733:8:::1;::::0;:6;:8:::1;:::i;:::-;46732:17;;;;;;:::i;:::-;46719:9;:30;;46711:54;;;::::0;-1:-1:-1;;;46711:54:0;;6590:2:1;46711:54:0::1;::::0;::::1;6572:21:1::0;6629:2;6609:18;;;6602:30;-1:-1:-1;;;6648:18:1;;;6641:42;6700:18;;46711:54:0::1;6388:336:1::0;46711:54:0::1;46787:29;46797:10;46809:6;46787:29;;:9;:29::i;4985:201::-:0;4419:13;:11;:13::i;:::-;-1:-1:-1;;;;;5074:22:0;::::1;5066:73;;;::::0;-1:-1:-1;;;5066:73:0;;6931:2:1;5066:73:0::1;::::0;::::1;6913:21:1::0;6970:2;6950:18;;;6943:30;7009:34;6989:18;;;6982:62;-1:-1:-1;;;7060:18:1;;;7053:36;7106:19;;5066:73:0::1;6729:402:1::0;5066:73:0::1;5150:28;5169:8;5150:18;:28::i;45991:57::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35212:187::-;35269:4;35333:13;;35323:7;:23;35293:98;;;;-1:-1:-1;;35364:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35364:27:0;;;;35363:28;;35212:187::o;42826:196::-;42941:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42941:29:0;-1:-1:-1;;;;;42941:29:0;;;;;;;;;42986:28;;42941:24;;42986:28;;;;;;;42826:196;;;:::o;38328:2112::-;38443:35;38481:20;38493:7;38481:11;:20::i;:::-;38556:18;;38443:58;;-1:-1:-1;38514:22:0;;-1:-1:-1;;;;;38540:34:0;3164:10;-1:-1:-1;;;;;38540:34:0;;:101;;;-1:-1:-1;38608:18:0;;38591:50;;3164:10;33860:164;:::i;38591:50::-;38540:154;;;-1:-1:-1;3164:10:0;38658:20;38670:7;38658:11;:20::i;:::-;-1:-1:-1;;;;;38658:36:0;;38540:154;38514:181;;38713:17;38708:66;;38739:35;;-1:-1:-1;;;38739:35:0;;;;;;;;;;;38708:66;38811:4;-1:-1:-1;;;;;38789:26:0;:13;:18;;;-1:-1:-1;;;;;38789:26:0;;38785:67;;38824:28;;-1:-1:-1;;;38824:28:0;;;;;;;;;;;38785:67;-1:-1:-1;;;;;38867:16:0;;38863:52;;38892:23;;-1:-1:-1;;;38892:23:0;;;;;;;;;;;38863:52;39036:49;39053:1;39057:7;39066:13;:18;;;39036:8;:49::i;:::-;-1:-1:-1;;;;;39381:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39381:31:0;;;;;;;-1:-1:-1;;39381:31:0;;;;;;;39427:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39427:29:0;;;;;;;;;;;39473:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39518:61:0;;;;-1:-1:-1;;;39563:15:0;39518:61;;;;;;;;;;;39853:11;;;39883:24;;;;;:29;39853:11;;39883:29;39879:445;;40108:13;;40094:11;:27;40090:219;;;40178:18;;;40146:24;;;:11;:24;;;;;;;;:50;;40261:28;;;;40219:70;;-1:-1:-1;;;40219:70:0;-1:-1:-1;;;;;;40219:70:0;;;-1:-1:-1;;;;;40146:50:0;;;40219:70;;;;;;;40090:219;39356:979;40371:7;40367:2;-1:-1:-1;;;;;40352:27:0;40361:4;-1:-1:-1;;;;;40352:27:0;;;;;;;;;;;40390:42;38432:2008;;38328:2112;;;:::o;4698:132::-;4606:6;;-1:-1:-1;;;;;4606:6:0;3164:10;4762:23;4754:68;;;;-1:-1:-1;;;4754:68:0;;8033:2:1;4754:68:0;;;8015:21:1;;;8052:18;;;8045:30;8111:34;8091:18;;;8084:62;8163:18;;4754:68:0;7831:356:1;4754:68:0;4698:132::o;30370:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30480:7:0;30563:13;;30556:4;:20;30525:886;;;30597:31;30631:17;;;:11;:17;;;;;;;;;30597:51;;;;;;;;;-1:-1:-1;;;;;30597:51:0;;;;-1:-1:-1;;;30597:51:0;;;;;;;;;;;-1:-1:-1;;;30597:51:0;;;;;;;;;;;;;;30667:729;;30717:14;;-1:-1:-1;;;;;30717:28:0;;30713:101;;30781:9;30370:1108;-1:-1:-1;;;30370:1108:0:o;30713:101::-;-1:-1:-1;;;31156:6:0;31201:17;;;;:11;:17;;;;;;;;;31189:29;;;;;;;;;-1:-1:-1;;;;;31189:29:0;;;;;-1:-1:-1;;;31189:29:0;;;;;;;;;;;-1:-1:-1;;;31189:29:0;;;;;;;;;;;;;31249:28;31245:109;;31317:9;30370:1108;-1:-1:-1;;;30370:1108:0:o;31245:109::-;31116:261;;;30578:833;30525:886;31439:31;;-1:-1:-1;;;31439:31:0;;;;;;;;;;;43514:667;43698:72;;-1:-1:-1;;;43698:72:0;;43677:4;;-1:-1:-1;;;;;43698:36:0;;;;;:72;;3164:10;;43749:4;;43755:7;;43764:5;;43698:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43698:72:0;;;;;;;;-1:-1:-1;;43698:72:0;;;;;;;;;;;;:::i;:::-;;;43694:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43932:13:0;;43928:235;;43978:40;;-1:-1:-1;;;43978:40:0;;;;;;;;;;;43928:235;44121:6;44115:13;44106:6;44102:2;44098:15;44091:38;43694:480;-1:-1:-1;;;;;;43817:55:0;-1:-1:-1;;;43817:55:0;;-1:-1:-1;43694:480:0;43514:667;;;;;;:::o;46834:109::-;46895:13;46928:7;46921:14;;;;;:::i;338:723::-;394:13;615:10;611:53;;-1:-1:-1;;642:10:0;;;;;;;;;;;;-1:-1:-1;;;642:10:0;;;;;338:723::o;611:53::-;689:5;674:12;730:78;737:9;;730:78;;763:8;;;;:::i;:::-;;-1:-1:-1;786:10:0;;-1:-1:-1;794:2:0;786:10;;:::i;:::-;;;730:78;;;818:19;850:6;840:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;840:17:0;;818:39;;868:154;875:10;;868:154;;902:11;912:1;902:11;;:::i;:::-;;-1:-1:-1;971:10:0;979:2;971:5;:10;:::i;:::-;958:24;;:2;:24;:::i;:::-;945:39;;928:6;935;928:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;928:56:0;;;;;;;;-1:-1:-1;999:11:0;1008:2;999:11;;:::i;:::-;;;868:154;;35407:104;35476:27;35486:2;35490:8;35476:27;;;;;;;;;;;;:9;:27::i;5346:191::-;5439:6;;;-1:-1:-1;;;;;5456:17:0;;;-1:-1:-1;;;;;;5456:17:0;;;;;;;5489:40;;5439:6;;;5456:17;5439:6;;5489:40;;5420:16;;5489:40;5409:128;5346:191;:::o;35874:163::-;35997:32;36003:2;36007:8;36017:5;36024:4;36435:20;36458:13;36548;36544:44;;36570:18;;-1:-1:-1;;;36570:18:0;;;;;;;;;;;36544:44;-1:-1:-1;;;;;36939:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36998:49:0;;36939:44;;;;;;;;36998:49;;;;-1:-1:-1;;36939:44:0;;;;;;36998:49;;;;;;;;;;;;;;;;37064:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37114:66:0;;;;-1:-1:-1;;;37164:15:0;37114:66;;;;;;;;;;37064:25;37261:23;;;37305:4;:23;;;;-1:-1:-1;;;;;;37313:13:0;;7072:19;:23;;37313:15;37301:641;;;37349:314;37380:38;;37405:12;;-1:-1:-1;;;;;37380:38:0;;;37397:1;;37380:38;;37397:1;;37380:38;37446:69;37485:1;37489:2;37493:14;;;;;;37509:5;37446:30;:69::i;:::-;37441:174;;37551:40;;-1:-1:-1;;;37551:40:0;;;;;;;;;;;37441:174;37658:3;37642:12;:19;;37349:314;;37744:12;37727:13;;:29;37723:43;;37758:8;;;37723:43;37301:641;;;37807:120;37838:40;;37863:14;;;;;-1:-1:-1;;;;;37838:40:0;;;37855:1;;37838:40;;37855:1;;37838:40;37922:3;37906:12;:19;;37807:120;;37301:641;-1:-1:-1;37956:13:0;:28;38006:60;34588:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:276::-;4101:6;4154:2;4142:9;4133:7;4129:23;4125:32;4122:52;;;4170:1;4167;4160:12;4122:52;4209:9;4196:23;4259:10;4252:5;4248:22;4241:5;4238:33;4228:61;;4285:1;4282;4275:12;4324:257;4365:3;4403:5;4397:12;4430:6;4425:3;4418:19;4446:63;4502:6;4495:4;4490:3;4486:14;4479:4;4472:5;4468:16;4446:63;:::i;:::-;4563:2;4542:15;-1:-1:-1;;4538:29:1;4529:39;;;;4570:4;4525:50;;4324:257;-1:-1:-1;;4324:257:1:o;4586:470::-;4765:3;4803:6;4797:13;4819:53;4865:6;4860:3;4853:4;4845:6;4841:17;4819:53;:::i;:::-;4935:13;;4894:16;;;;4957:57;4935:13;4894:16;4991:4;4979:17;;4957:57;:::i;:::-;5030:20;;4586:470;-1:-1:-1;;;;4586:470:1:o;5479:488::-;-1:-1:-1;;;;;5748:15:1;;;5730:34;;5800:15;;5795:2;5780:18;;5773:43;5847:2;5832:18;;5825:34;;;5895:3;5890:2;5875:18;;5868:31;;;5673:4;;5916:45;;5941:19;;5933:6;5916:45;:::i;:::-;5908:53;5479:488;-1:-1:-1;;;;;;5479:488:1:o;6164:219::-;6313:2;6302:9;6295:21;6276:4;6333:44;6373:2;6362:9;6358:18;6350:6;6333:44;:::i;9264:128::-;9304:3;9335:1;9331:6;9328:1;9325:13;9322:39;;;9341:18;;:::i;:::-;-1:-1:-1;9377:9:1;;9264:128::o;9397:120::-;9437:1;9463;9453:35;;9468:18;;:::i;:::-;-1:-1:-1;9502:9:1;;9397:120::o;9522:168::-;9562:7;9628:1;9624;9620:6;9616:14;9613:1;9610:21;9605:1;9598:9;9591:17;9587:45;9584:71;;;9635:18;;:::i;:::-;-1:-1:-1;9675:9:1;;9522:168::o;9695:125::-;9735:4;9763:1;9760;9757:8;9754:34;;;9768:18;;:::i;:::-;-1:-1:-1;9805:9:1;;9695:125::o;9825:221::-;9864:4;9893:10;9953;;;;9923;;9975:12;;;9972:38;;;9990:18;;:::i;:::-;10027:13;;9825:221;-1:-1:-1;;;9825:221:1:o;10051:258::-;10123:1;10133:113;10147:6;10144:1;10141:13;10133:113;;;10223:11;;;10217:18;10204:11;;;10197:39;10169:2;10162:10;10133:113;;;10264:6;10261:1;10258:13;10255:48;;;-1:-1:-1;;10299:1:1;10281:16;;10274:27;10051:258::o;10314:380::-;10393:1;10389:12;;;;10436;;;10457:61;;10511:4;10503:6;10499:17;10489:27;;10457:61;10564:2;10556:6;10553:14;10533:18;10530:38;10527:161;;;10610:10;10605:3;10601:20;10598:1;10591:31;10645:4;10642:1;10635:15;10673:4;10670:1;10663:15;10527:161;;10314:380;;;:::o;10699:135::-;10738:3;-1:-1:-1;;10759:17:1;;10756:43;;;10779:18;;:::i;:::-;-1:-1:-1;10826:1:1;10815:13;;10699:135::o;10839:112::-;10871:1;10897;10887:35;;10902:18;;:::i;:::-;-1:-1:-1;10936:9:1;;10839:112::o;10956:127::-;11017:10;11012:3;11008:20;11005:1;10998:31;11048:4;11045:1;11038:15;11072:4;11069:1;11062:15;11088:127;11149:10;11144:3;11140:20;11137:1;11130:31;11180:4;11177:1;11170:15;11204:4;11201:1;11194:15;11220:127;11281:10;11276:3;11272:20;11269:1;11262:31;11312:4;11309:1;11302:15;11336:4;11333:1;11326:15;11352:127;11413:10;11408:3;11404:20;11401:1;11394:31;11444:4;11441:1;11434:15;11468:4;11465:1;11458:15;11484:131;-1:-1:-1;;;;;;11558:32:1;;11548:43;;11538:71;;11605:1;11602;11595:12

Swarm Source

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